|
|
|
@ -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表单
|
|
|
|
|