This commit is contained in:
潘晓云
2022-04-08 13:46:26 +08:00
parent 34d33028ec
commit 3cdd46cdce
2 changed files with 19 additions and 7 deletions

View File

@ -146,11 +146,16 @@ export class DatatableFundReportingComponent implements OnInit {
uploadStatus: { uploadStatus: {
title: '上传状态', title: '上传状态',
type: 'string', type: 'string',
default: 0,
enum: [
{ label: '待上传', value: 0 },
{ label: '已上传', value: 1 },
{ label: '异常', value: 2 }
],
ui: { ui: {
placeholder: '请选择', placeholder: '请选择',
widget: 'dict-select', widget: 'select',
params: { dictKey: 'service:type' }, allowClear: true,
containsAllLabel: true,
visibleIf: { visibleIf: {
_$expand: (value: boolean) => value, _$expand: (value: boolean) => value,
}, },
@ -159,11 +164,15 @@ export class DatatableFundReportingComponent implements OnInit {
verifyStatus: { verifyStatus: {
title: '本地校验', title: '本地校验',
type: 'string', type: 'string',
enum: [
{ label: '校验中', value: 0 },
{ label: '通过', value: 1 },
{ label: '不通过', value: 2 }
],
ui: { ui: {
placeholder: '请选择', placeholder: '请选择',
widget: 'dict-select', allowClear: true,
params: { dictKey: 'service:type' }, widget: 'select',
containsAllLabel: true,
visibleIf: { visibleIf: {
_$expand: (value: boolean) => value, _$expand: (value: boolean) => value,
}, },
@ -242,7 +251,7 @@ export class DatatableFundReportingComponent implements OnInit {
{ title: '车牌颜色', index: 'carColor', className: 'text-center', width: '180px' }, { title: '车牌颜色', index: 'carColor', className: 'text-center', width: '180px' },
{ title: '总金额', render: 'tolalAmount', className: 'text-center', width: '120px' }, { 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: 'payee', className: 'text-center', width: '150px' },
{ title: '收款账户', index: 'collectionAccount', className: 'text-center', width: '180px' }, { title: '收款账户', index: 'collectionAccount', className: 'text-center', width: '180px' },

View File

@ -149,6 +149,7 @@ export class DatatableOrderReportingComponent implements OnInit {
putStatus: { putStatus: {
title: '上传状态', title: '上传状态',
type: 'string', type: 'string',
default: 0,
enum: [ enum: [
{ label: '待上传', value: 0 }, { label: '待上传', value: 0 },
{ label: '已上传', value: 1 }, { label: '已上传', value: 1 },
@ -158,6 +159,7 @@ export class DatatableOrderReportingComponent implements OnInit {
ui: { ui: {
placeholder: '请选择', placeholder: '请选择',
widget: 'select', widget: 'select',
allowClear: true,
visibleIf: { visibleIf: {
_$expand: (value: boolean) => value, _$expand: (value: boolean) => value,
}, },
@ -174,6 +176,7 @@ export class DatatableOrderReportingComponent implements OnInit {
ui: { ui: {
placeholder: '请选择', placeholder: '请选择',
widget: 'select', widget: 'select',
allowClear: true,
visibleIf: { visibleIf: {
_$expand: (value: boolean) => value, _$expand: (value: boolean) => value,
}, },