Conformance: processing time, waiting time, cycle time, showbox list done.

This commit is contained in:
chiayin
2023-08-22 12:48:58 +08:00
parent 66e09aa85c
commit bdbd506734
5 changed files with 247 additions and 43 deletions

View File

@@ -5,8 +5,8 @@
<p class="h2 pl-2 border-b mb-3">Sort</p>
<div class="flex flex-wrap justify-start content-start gap-4 px-2 overflow-y-auto scrollbar h-[calc(100%_-_52px)]">
<div class="flex items-center w-[166px]" v-for="(act, index) in data" :key="index">
<RadioButton v-model="selectedRadio" :inputId="index.toString()" :name="select" :value="act" @change="actRadioData" />
<label :for="index" class="ml-2 p-2 whitespace-nowrap break-keep text-ellipsis overflow-hidden">{{ act }}</label>
<RadioButton v-model="selectedRadio" :inputId="index + act" :name="select" :value="act" @change="actRadioData" />
<label :for="index + act" class="ml-2 p-2 whitespace-nowrap break-keep text-ellipsis overflow-hidden">{{ act }}</label>
</div>
</div>
</div>
@@ -26,6 +26,7 @@ export default {
category: this.category,
task: this.selectedRadio,
});
this.$emit('selected-task', this.selectedRadio);
}
},
created() {