|
|
|
|
@ -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');
|
|
|
|
|
|