This commit is contained in:
heqinghang
2022-01-27 11:14:59 +08:00
parent 9b2c25524a
commit 3a37e012a6
2 changed files with 3 additions and 3 deletions

View File

@ -288,7 +288,7 @@ export class CostManagementComponent implements OnInit {
{ title: '应付金额', render: 'hrmoney', width: 100 ,className: 'text-right',}, { title: '应付金额', render: 'hrmoney', width: 100 ,className: 'text-right',},
{ title: '收/付款金额', render: 'hrpaymoney', width: 120 ,className: 'text-right',}, { title: '收/付款金额', render: 'hrpaymoney', width: 120 ,className: 'text-right',},
{ title: '开/收票金额', render: 'hrvatmoney', 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: '状态', index: 'stsLabel', width: 90 ,className: 'text-center',},
{ {
title: '操作', title: '操作',

View File

@ -75,7 +75,7 @@ export class ShipperBaseService extends BaseService {
const list = res.map(((item: any) => { const list = res.map(((item: any) => {
return { return {
label: item.name, label: item.name,
value: item.userId value: item.appUserId
} }
})) }))
const obj = []; const obj = [];
@ -100,7 +100,7 @@ export class ShipperBaseService extends BaseService {
const list = res.map(((item: any) => { const list = res.map(((item: any) => {
return { return {
label: `${item.name}/${item.telephone}`, label: `${item.name}/${item.telephone}`,
value: item.userId value: item.appUserId
} }
})) }))
return [...list]; return [...list];