Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -9,7 +9,7 @@
|
|||||||
<nz-card class="search-box">
|
<nz-card class="search-box">
|
||||||
<div nz-row>
|
<div nz-row>
|
||||||
<div nz-col nzSpan="24">
|
<div nz-col nzSpan="24">
|
||||||
<se-container col="3" labelWidth="100">
|
<se-container col="3" labelWidth="120">
|
||||||
<se-title class="mb-md" style="font-size: 18px">基本信息</se-title>
|
<se-title class="mb-md" style="font-size: 18px">基本信息</se-title>
|
||||||
<se label="网络货运人" required>
|
<se label="网络货运人" required>
|
||||||
{{ costInfo?.ltdName }}
|
{{ costInfo?.ltdName }}
|
||||||
|
|||||||
@ -166,9 +166,9 @@ export class PaymentRecordComponent implements OnInit {
|
|||||||
payType: {
|
payType: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '支付类型',
|
title: '支付类型',
|
||||||
enum: [{ label: '全部', value: '' }],
|
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
widget: 'dict-select',
|
||||||
|
params: { dictKey: 'paybill:type' },
|
||||||
placeholder: '请选择',
|
placeholder: '请选择',
|
||||||
visibleIf: {
|
visibleIf: {
|
||||||
expand: (value: boolean) => value
|
expand: (value: boolean) => value
|
||||||
@ -250,7 +250,7 @@ export class PaymentRecordComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
title: '运费明细',
|
title: '运费明细',
|
||||||
render: 'amountDetails',
|
render: 'amountDetails',
|
||||||
width: 160,
|
width: 160
|
||||||
// format: item => {
|
// format: item => {
|
||||||
// (item.amountDetails as Array<any>).forEach(detail => {
|
// (item.amountDetails as Array<any>).forEach(detail => {
|
||||||
// detail.surcharge = detail.price + (detail.surcharge || 0);
|
// detail.surcharge = detail.price + (detail.surcharge || 0);
|
||||||
|
|||||||
@ -26,7 +26,7 @@
|
|||||||
<nz-tab nzTitle="全部"></nz-tab>
|
<nz-tab nzTitle="全部"></nz-tab>
|
||||||
<nz-tab nzTitle="待处理"></nz-tab>
|
<nz-tab nzTitle="待处理"></nz-tab>
|
||||||
<nz-tab nzTitle="待确认"></nz-tab>
|
<nz-tab nzTitle="待确认"></nz-tab>
|
||||||
<nz-tab nzTitle="已确认"></nz-tab>
|
<!-- <nz-tab nzTitle="已确认"></nz-tab> -->
|
||||||
</nz-tabset>
|
</nz-tabset>
|
||||||
<ng-template #extraTemplate>
|
<ng-template #extraTemplate>
|
||||||
<div class="d-flex align-items-center">
|
<div class="d-flex align-items-center">
|
||||||
|
|||||||
@ -385,11 +385,11 @@ export class CancellationInvoiceComponent implements OnInit {
|
|||||||
iif: item => item.sts === '1',
|
iif: item => item.sts === '1',
|
||||||
click: item => this.pushInvoiceAction(item)
|
click: item => this.pushInvoiceAction(item)
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
text: '作废发票',
|
// text: '作废发票',
|
||||||
iif: item => item.sts === '3',
|
// iif: item => item.sts === '3',
|
||||||
click: item => this.removeInvocie(item)
|
// click: item => this.removeInvocie(item)
|
||||||
}
|
// }
|
||||||
// {
|
// {
|
||||||
// text: '确认'
|
// text: '确认'
|
||||||
// // click: item => this.rejectAction(item)
|
// // click: item => this.rejectAction(item)
|
||||||
|
|||||||
Reference in New Issue
Block a user