|
|
|
@ -63,17 +63,6 @@ getDictOption('bl_type').then((res) => {
|
|
|
|
|
})
|
|
|
|
|
// 业务来源明细数据
|
|
|
|
|
const sourceDetailId = ref([])
|
|
|
|
|
// 箱型 字段转换 改按需的时候不要动
|
|
|
|
|
// const CtnMapArr: any = []
|
|
|
|
|
// getDictOption('seaexport_ctn_map').then((res) => {
|
|
|
|
|
// res.forEach((item) => {
|
|
|
|
|
// CtnMapArr.push({
|
|
|
|
|
// title: item.value,
|
|
|
|
|
// dataIndex: `cntr${item.name.split('CTNR')[1]}`,
|
|
|
|
|
// width: 150,
|
|
|
|
|
// })
|
|
|
|
|
// })
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
{
|
|
|
|
@ -303,6 +292,31 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
allowClear: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '约主',
|
|
|
|
|
field: 'contractClientId',
|
|
|
|
|
component: 'ApiSelect',
|
|
|
|
|
required: false,
|
|
|
|
|
dynamicDisabled: false,
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
componentProps: () => {
|
|
|
|
|
return {
|
|
|
|
|
api: GetSupplierListByCode,
|
|
|
|
|
params: { code: 'contract' },
|
|
|
|
|
labelField: 'pinYinCode',
|
|
|
|
|
valueField: 'id',
|
|
|
|
|
showName: 'shortName',
|
|
|
|
|
resultField: 'data',
|
|
|
|
|
immediate: false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'contractNo',
|
|
|
|
|
label: '约号',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 4 }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '场站',
|
|
|
|
|
field: 'yard',
|
|
|
|
|