Commit 17c502d9 by linjinhong

fix:修改工艺craft_type字段

parent da894e8f
...@@ -242,10 +242,10 @@ const dialogVisible = ref(false) ...@@ -242,10 +242,10 @@ const dialogVisible = ref(false)
const editFormRef = ref<InstanceType<typeof CustomizeForm> | null>(null) const editFormRef = ref<InstanceType<typeof CustomizeForm> | null>(null)
const paramsList = ref(['craft_code']) const paramsList = ref(['craft_type'])
const rulesList = ref([ const rulesList = ref([
{ label: '工艺', value: 'craft_code', disabled: false }, { label: '工艺', value: 'craft_type', disabled: false },
{ label: '款号', value: 'supplier_product_no', disabled: false }, { label: '款号', value: 'supplier_product_no', disabled: false },
{ label: '尺码', value: 'size', disabled: false }, { label: '尺码', value: 'size', disabled: false },
{ label: '类型', value: 'customized_quantity', disabled: false }, { label: '类型', value: 'customized_quantity', disabled: false },
...@@ -399,7 +399,7 @@ const getLabels = (item: string) => { ...@@ -399,7 +399,7 @@ const getLabels = (item: string) => {
*/ */
function addDialog() { function addDialog() {
editForm.value = { isAuto: false } editForm.value = { isAuto: false }
paramsList.value = ['craft_code'] paramsList.value = ['craft_type']
dialogVisible.value = true dialogVisible.value = true
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment