update 称量动作(1称量 2卸料)

master
yinq 5 days ago
parent 7a4fa8498e
commit 6aba590198

@ -123,12 +123,7 @@
filterable
style="width: 100%"
>
<el-option
v-for="d in actCodeOptions"
:key="d.dataDetailCode"
:label="d.dataDetailName"
:value="d.dataDetailCode"
/>
<el-option v-for="d in act_code" :key="d.value" :label="d.label" :value="d.value" />
</el-select>
</template>
</el-table-column>
@ -281,7 +276,7 @@ import MaterialSelect from './components/MaterialSelect.vue';
const route = useRoute();
const router = useRouter();
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { recipe_state, weight_type } = toRefs<any>(proxy?.useDict('recipe_state', 'weight_type'));
const { recipe_state, weight_type, act_code } = toRefs<any>(proxy?.useDict('recipe_state', 'weight_type', 'act_code'));
const recipeId = computed(() => route.query.recipeId as string || '');
const activeTab = ref('basic');

Loading…
Cancel
Save