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">
|
||||
<ng-template #logo>
|
||||
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
||||
@ -30,7 +40,7 @@
|
||||
{{ costInfo?.brmtypeLabel }}
|
||||
</se>
|
||||
<se label="收款账户" required>
|
||||
{{ costInfo?.ltdaccountId }}
|
||||
{{ costInfo?.ltdaccountCode }}
|
||||
</se>
|
||||
<se label="尾差">
|
||||
{{ costInfo?.recnopay |currency }}
|
||||
|
||||
@ -209,7 +209,7 @@ export class ReceiptOrderComponent extends BasicTableComponent implements OnInit
|
||||
// { title: '费用号', index: 'feeCode', width: 180, className: 'text-left' },
|
||||
{ title: '网络货运人', index: 'ltdName', 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: '到账金额',
|
||||
index: 'brmmoney',
|
||||
|
||||
@ -79,7 +79,6 @@ export class OrderManagementRiskDetailComponent implements OnInit {
|
||||
'*': {
|
||||
spanLabelFixed: 180,
|
||||
grid: { span: 18 },
|
||||
width: 900,
|
||||
},
|
||||
$title1: {
|
||||
spanLabelFixed: 0,
|
||||
|
||||
@ -52,8 +52,8 @@ export class ParterLevelConfigListComponent implements OnInit {
|
||||
title: '状态',
|
||||
enum: [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '启用', value: '1' },
|
||||
{ label: '禁用', value: '0' }
|
||||
{ label: '启用', value: '0' },
|
||||
{ label: '禁用', value: '1' }
|
||||
],
|
||||
ui: {
|
||||
widget: 'select'
|
||||
@ -96,7 +96,7 @@ export class ParterLevelConfigListComponent implements OnInit {
|
||||
title: '状态',
|
||||
index: 'stateLocked',
|
||||
format: (item: any) => {
|
||||
return item.stateLocked ? '启用' : '禁用';
|
||||
return item.stateLocked ? '禁用' : '启用';
|
||||
}
|
||||
},
|
||||
{
|
||||
@ -110,12 +110,12 @@ export class ParterLevelConfigListComponent implements OnInit {
|
||||
{
|
||||
text: '禁用',
|
||||
click: (_record, _modal, _instance) => this.stop(_record),
|
||||
iif: item => item.stateLocked
|
||||
iif: item => !item.stateLocked
|
||||
},
|
||||
{
|
||||
text: '启用',
|
||||
click: (_record, _modal, _instance) => this.restart(_record),
|
||||
iif: item => !item.stateLocked
|
||||
iif: item => item.stateLocked
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user