Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -1,3 +1,13 @@
|
|||||||
|
<!--
|
||||||
|
* @Description :
|
||||||
|
* @Version : 1.0
|
||||||
|
* @Author : Shiming
|
||||||
|
* @Date : 2022-04-21 13:49:21
|
||||||
|
* @LastEditors : Shiming
|
||||||
|
* @LastEditTime : 2022-04-27 17:19:41
|
||||||
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\financial-management\\components\\receipt-order\\receipt-order-detail\\receipt-order-detail.component.html
|
||||||
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
|
-->
|
||||||
<page-header-wrapper title="收款单" [logo]="logo">
|
<page-header-wrapper title="收款单" [logo]="logo">
|
||||||
<ng-template #logo>
|
<ng-template #logo>
|
||||||
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
||||||
@ -30,7 +40,7 @@
|
|||||||
{{ costInfo?.brmtypeLabel }}
|
{{ costInfo?.brmtypeLabel }}
|
||||||
</se>
|
</se>
|
||||||
<se label="收款账户" required>
|
<se label="收款账户" required>
|
||||||
{{ costInfo?.ltdaccountId }}
|
{{ costInfo?.ltdaccountCode }}
|
||||||
</se>
|
</se>
|
||||||
<se label="尾差">
|
<se label="尾差">
|
||||||
{{ costInfo?.recnopay |currency }}
|
{{ costInfo?.recnopay |currency }}
|
||||||
|
|||||||
@ -209,7 +209,7 @@ export class ReceiptOrderComponent extends BasicTableComponent implements OnInit
|
|||||||
// { title: '费用号', index: 'feeCode', width: 180, className: 'text-left' },
|
// { title: '费用号', index: 'feeCode', width: 180, className: 'text-left' },
|
||||||
{ title: '网络货运人', index: 'ltdName', width: 200, className: 'text-left' },
|
{ title: '网络货运人', index: 'ltdName', width: 200, className: 'text-left' },
|
||||||
{ title: '到账日期', index: 'brmdate', type: 'date', width: 200, className: 'text-left' },
|
{ title: '到账日期', index: 'brmdate', type: 'date', width: 200, className: 'text-left' },
|
||||||
{ title: '收款账户', index: 'ltdaccountId', width: 200, className: 'text-left' },
|
{ title: '收款账户', index: 'ltdaccountCode', width: 200, className: 'text-left' },
|
||||||
{
|
{
|
||||||
title: '到账金额',
|
title: '到账金额',
|
||||||
index: 'brmmoney',
|
index: 'brmmoney',
|
||||||
|
|||||||
@ -79,7 +79,6 @@ export class OrderManagementRiskDetailComponent implements OnInit {
|
|||||||
'*': {
|
'*': {
|
||||||
spanLabelFixed: 180,
|
spanLabelFixed: 180,
|
||||||
grid: { span: 18 },
|
grid: { span: 18 },
|
||||||
width: 900,
|
|
||||||
},
|
},
|
||||||
$title1: {
|
$title1: {
|
||||||
spanLabelFixed: 0,
|
spanLabelFixed: 0,
|
||||||
|
|||||||
@ -52,8 +52,8 @@ export class ParterLevelConfigListComponent implements OnInit {
|
|||||||
title: '状态',
|
title: '状态',
|
||||||
enum: [
|
enum: [
|
||||||
{ label: '全部', value: '' },
|
{ label: '全部', value: '' },
|
||||||
{ label: '启用', value: '1' },
|
{ label: '启用', value: '0' },
|
||||||
{ label: '禁用', value: '0' }
|
{ label: '禁用', value: '1' }
|
||||||
],
|
],
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select'
|
widget: 'select'
|
||||||
@ -96,7 +96,7 @@ export class ParterLevelConfigListComponent implements OnInit {
|
|||||||
title: '状态',
|
title: '状态',
|
||||||
index: 'stateLocked',
|
index: 'stateLocked',
|
||||||
format: (item: any) => {
|
format: (item: any) => {
|
||||||
return item.stateLocked ? '启用' : '禁用';
|
return item.stateLocked ? '禁用' : '启用';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -110,12 +110,12 @@ export class ParterLevelConfigListComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
text: '禁用',
|
text: '禁用',
|
||||||
click: (_record, _modal, _instance) => this.stop(_record),
|
click: (_record, _modal, _instance) => this.stop(_record),
|
||||||
iif: item => item.stateLocked
|
iif: item => !item.stateLocked
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '启用',
|
text: '启用',
|
||||||
click: (_record, _modal, _instance) => this.restart(_record),
|
click: (_record, _modal, _instance) => this.restart(_record),
|
||||||
iif: item => !item.stateLocked
|
iif: item => item.stateLocked
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user