diff --git a/src/app/routes/financial-management/components/cost-management/cost-management.component.ts b/src/app/routes/financial-management/components/cost-management/cost-management.component.ts index 756639a0..5eecf4e9 100644 --- a/src/app/routes/financial-management/components/cost-management/cost-management.component.ts +++ b/src/app/routes/financial-management/components/cost-management/cost-management.component.ts @@ -288,7 +288,7 @@ export class CostManagementComponent implements OnInit { { title: '应付金额', render: 'hrmoney', width: 100 ,className: 'text-right',}, { title: '收/付款金额', render: 'hrpaymoney', width: 120 ,className: 'text-right',}, { title: '开/收票金额', render: 'hrvatmoney', width: 120 ,className: 'text-right',}, - { title: '创建时间', index: 'auditTime', type: 'date', width: 200 ,className: 'text-center',}, + { title: '创建时间', index: 'createTime', type: 'date', width: 200 ,className: 'text-center',}, { title: '状态', index: 'stsLabel', width: 90 ,className: 'text-center',}, { title: '操作', diff --git a/src/app/shared/services/business/shipper-base.service.ts b/src/app/shared/services/business/shipper-base.service.ts index 3d7c3305..a824dcad 100644 --- a/src/app/shared/services/business/shipper-base.service.ts +++ b/src/app/shared/services/business/shipper-base.service.ts @@ -75,7 +75,7 @@ export class ShipperBaseService extends BaseService { const list = res.map(((item: any) => { return { label: item.name, - value: item.userId + value: item.appUserId } })) const obj = []; @@ -100,7 +100,7 @@ export class ShipperBaseService extends BaseService { const list = res.map(((item: any) => { return { label: `${item.name}/${item.telephone}`, - value: item.userId + value: item.appUserId } })) return [...list];