This commit is contained in:
xiaoxing.liu
2022-04-09 17:21:21 +08:00
13 changed files with 107 additions and 66 deletions

View File

@ -99,7 +99,7 @@ export class OrderManagementAbnormalWarningComponent implements OnInit {
ui: {
}
},
wayCode: {
wayBillCode: {
type: 'string',
title: '运单号',
ui: {
@ -213,13 +213,6 @@ export class OrderManagementAbnormalWarningComponent implements OnInit {
*/
initST() {
this.columns = [
{
title: '运单号',
width: '180px',
fixed: 'left',
className: 'text-left',
index: 'wayCode'
},
{
title: '订单号',
width: '180px',
@ -227,6 +220,13 @@ export class OrderManagementAbnormalWarningComponent implements OnInit {
className: 'text-left',
index: 'billCode'
},
{
title: '运单号',
width: '180px',
fixed: 'left',
className: 'text-left',
index: 'wayCode'
},
{ title: '服务类型', index: 'serviceTypeLabel', width: '220px', className: 'text-left',format: (item) => {
return item?.resourceTypeLabel + item?.serviceTypeLabel
} },
@ -285,6 +285,6 @@ export class OrderManagementAbnormalWarningComponent implements OnInit {
// 导出
exprot() {
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_get_asyncExportSpotCheckList);
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_abnormalWarning_asyncExport);
}
}