This commit is contained in:
Taric Xin
2022-03-28 17:36:09 +08:00
parent 0497f281bc
commit 30143b24bf
2 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ module.exports = {
// } // }
'//api': { '//api': {
target: { target: {
host: 'tms-api-dev.eascs.com', host: 'tms-api-test.eascs.com',
protocol: 'https:', protocol: 'https:',
port: 443 port: 443
}, },

View File

@ -34,11 +34,11 @@ export class ExpressDetailModalComponent implements OnInit {
}, },
{ {
title: '金额', title: '金额',
index: 'vatnotax', index: 'vatmoney',
width: 90, width: 90,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatnotax }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatmoney }) }
}, },
{ {
title: '税率', title: '税率',
@ -53,7 +53,7 @@ export class ExpressDetailModalComponent implements OnInit {
width: 90, width: 90,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatnotax }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vattax }) }
}, },
{ title: '开票日期', index: 'invoicedate', type: 'date', width: 150, className: 'text-center' } { title: '开票日期', index: 'invoicedate', type: 'date', width: 150, className: 'text-center' }
]; ];