优化
This commit is contained in:
@ -146,11 +146,16 @@ export class DatatableFundReportingComponent implements OnInit {
|
||||
uploadStatus: {
|
||||
title: '上传状态',
|
||||
type: 'string',
|
||||
default: 0,
|
||||
enum: [
|
||||
{ label: '待上传', value: 0 },
|
||||
{ label: '已上传', value: 1 },
|
||||
{ label: '异常', value: 2 }
|
||||
],
|
||||
ui: {
|
||||
placeholder: '请选择',
|
||||
widget: 'dict-select',
|
||||
params: { dictKey: 'service:type' },
|
||||
containsAllLabel: true,
|
||||
widget: 'select',
|
||||
allowClear: true,
|
||||
visibleIf: {
|
||||
_$expand: (value: boolean) => value,
|
||||
},
|
||||
@ -159,11 +164,15 @@ export class DatatableFundReportingComponent implements OnInit {
|
||||
verifyStatus: {
|
||||
title: '本地校验',
|
||||
type: 'string',
|
||||
enum: [
|
||||
{ label: '校验中', value: 0 },
|
||||
{ label: '通过', value: 1 },
|
||||
{ label: '不通过', value: 2 }
|
||||
],
|
||||
ui: {
|
||||
placeholder: '请选择',
|
||||
widget: 'dict-select',
|
||||
params: { dictKey: 'service:type' },
|
||||
containsAllLabel: true,
|
||||
allowClear: true,
|
||||
widget: 'select',
|
||||
visibleIf: {
|
||||
_$expand: (value: boolean) => value,
|
||||
},
|
||||
@ -242,7 +251,7 @@ export class DatatableFundReportingComponent implements OnInit {
|
||||
{ title: '车牌颜色', index: 'carColor', className: 'text-center', width: '180px' },
|
||||
{ title: '总金额', render: 'tolalAmount', className: 'text-center', width: '120px' },
|
||||
|
||||
{ title: '付款方式', index: 'payTypeLabel', className: 'text-center', width: '150px' },
|
||||
{ title: '付款方式', index: 'payType', className: 'text-center', width: '150px' },
|
||||
{ title: '车队长', index: 'payee', className: 'text-center', width: '150px' },
|
||||
{ title: '收款账户', index: 'collectionAccount', className: 'text-center', width: '180px' },
|
||||
|
||||
|
||||
@ -149,6 +149,7 @@ export class DatatableOrderReportingComponent implements OnInit {
|
||||
putStatus: {
|
||||
title: '上传状态',
|
||||
type: 'string',
|
||||
default: 0,
|
||||
enum: [
|
||||
{ label: '待上传', value: 0 },
|
||||
{ label: '已上传', value: 1 },
|
||||
@ -158,6 +159,7 @@ export class DatatableOrderReportingComponent implements OnInit {
|
||||
ui: {
|
||||
placeholder: '请选择',
|
||||
widget: 'select',
|
||||
allowClear: true,
|
||||
visibleIf: {
|
||||
_$expand: (value: boolean) => value,
|
||||
},
|
||||
@ -174,6 +176,7 @@ export class DatatableOrderReportingComponent implements OnInit {
|
||||
ui: {
|
||||
placeholder: '请选择',
|
||||
widget: 'select',
|
||||
allowClear: true,
|
||||
visibleIf: {
|
||||
_$expand: (value: boolean) => value,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user