This commit is contained in:
wangshiming
2022-03-07 16:13:11 +08:00
parent 2c1ae2ba1f
commit e01ed4dc55
4 changed files with 52 additions and 114 deletions

View File

@ -199,42 +199,23 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
},
}
},
dispatchPhone: {
type: 'string',
title: '手机号',
maxLength: 11,
ui: {
hidden: true,
placeholder: '请输入'
}
},
dispatchName: {
type: 'string',
title: '名',
title: '调度员姓名',
maxLength: 30,
ui: {
hidden: true,
optionalHelp: '选若未填写,司机直接联系您',
placeholder: '请输入'
}
},
dispatchId: {
dispatchPhone: {
type: 'string',
title: '调度员',
ui: {
widget: 'select',
placeholder: '请选择',
allowClear: true,
change: (value: any, data: any) => {
if(data.label) {
const dat = data.label.split('/')
this.sf1.setValue('/dispatchName', dat[0]);
this.sf1.setValue('/dispatchPhone', dat[1]);
}
},
optionalHelp: '选择调度员,司机直接联系调度员 ; 不选择,司机直接联系您',
asyncData: () => this.shipperSrv.getStaffList2()
} as SFSelectWidgetSchema
}
title: '调度员手机号',
maxLength: 30,
ui: {
placeholder: '请输入'
}
},
},
required: ['shipperAppUserId', 'enterpriseProjectId','enterpriseInfoName','enterpriseInfoId', 'deadlineTime',]
};