增加转运方式

feature-JimuReport-1106-yjl
lijingjia 4 weeks ago
parent f2cc06245b
commit 2456746d37

@ -97,6 +97,11 @@ const FnnoBill = ref([])
getDictOption('no_bill').then((res) => {
FnnoBill.value = res
})
// 转运方式字典
const transDict = ref([])
getDictOption('transportation_method').then((data) => {
transDict.value = data
})
// 销售字典
const salerCodeDict = ref([])
getDictOption('saler_code').then((data) => {
@ -1467,9 +1472,26 @@ export const noteFormSchema: FormSchema[] = [
showSearch: true,
filterOption: (input: string, option: any) => {
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
},
},
}
}
},
{
field: 'transferWay',
label: '转运方式',
component: 'Select',
required: false,
dynamicDisabled: false,
defaultValue: null,
colProps: { span: 5 },
componentProps: {
options: transDict,
allowClear: true,
showSearch: true,
filterOption: (input: string, option: any) => {
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
}
}
}
]
// ediMore表单

Loading…
Cancel
Save