|
|
|
@ -46,7 +46,7 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'STATUS',
|
|
|
|
|
field: 'status',
|
|
|
|
|
label: '舱位状态',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
componentProps: {
|
|
|
|
@ -70,19 +70,19 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'VESSEL',
|
|
|
|
|
field: 'vessel',
|
|
|
|
|
label: '船名',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'VOYNO',
|
|
|
|
|
field: 'voyno',
|
|
|
|
|
label: '航次',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'PORTLOAD',
|
|
|
|
|
field: 'portLoadId',
|
|
|
|
|
label: '装货港',
|
|
|
|
|
component: 'ApiSelect',
|
|
|
|
|
required: false,
|
|
|
|
@ -93,15 +93,15 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
api: GetClientPortSelectList,
|
|
|
|
|
resultField: 'data',
|
|
|
|
|
labelField: 'pinYinCode',
|
|
|
|
|
valueField: 'ediCode',
|
|
|
|
|
showName: 'ediCode',
|
|
|
|
|
valueField: 'id',
|
|
|
|
|
showName: 'portName',
|
|
|
|
|
immediate: false,
|
|
|
|
|
onChange: (e, obj) => {},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'PORTDISCHARGE',
|
|
|
|
|
field: 'portDischargeId',
|
|
|
|
|
label: '卸货港',
|
|
|
|
|
component: 'ApiSelect',
|
|
|
|
|
required: false,
|
|
|
|
@ -112,8 +112,8 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
api: GetClientPortSelectList,
|
|
|
|
|
resultField: 'data',
|
|
|
|
|
labelField: 'pinYinCode',
|
|
|
|
|
valueField: 'ediCode',
|
|
|
|
|
showName: 'ediCode',
|
|
|
|
|
valueField: 'id',
|
|
|
|
|
showName: 'portName',
|
|
|
|
|
immediate: false,
|
|
|
|
|
onChange: (e, obj) => {},
|
|
|
|
|
}
|
|
|
|
@ -258,7 +258,7 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'LANENAME',
|
|
|
|
|
field: 'laneName',
|
|
|
|
|
label: '航线名称',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|