This commit is contained in:
wangshiming
2022-04-19 16:37:30 +08:00
parent 49865f6426
commit 6dcb90f7f4

View File

@ -109,7 +109,7 @@ export class TaxManagementOrderReportingComponent implements OnInit {
placeholder: '请输入', placeholder: '请输入',
}, },
}, },
shipperAppUserId: { shipperId: {
type: 'string', type: 'string',
title: '货主', title: '货主',
ui: { ui: {
@ -163,27 +163,33 @@ export class TaxManagementOrderReportingComponent implements OnInit {
}, },
} }
}, },
putStatus: { // putStatus: {
title: '上传状态', // title: '上传状态',
type: 'string', // type: 'string',
ui: { // enum: [
placeholder: '请选择', // {label: '待上传',value: 0},
widget: 'dict-select', // {label: '已上传',value: 1},
params: { dictKey: 'service:type' }, // {label: '上传异常',value: 2},
containsAllLabel: true, // ],
visibleIf: { // ui: {
_$expand: (value: boolean) => value, // widget:'select',
}, // placeholder: '请选择',
} // visibleIf: {
}, // _$expand: (value: boolean) => value,
// },
// }
// },
checkStatus: { checkStatus: {
title: '本地校验', title: '本地校验',
type: 'string', type: 'string',
enum: [
{label: '校验中',value: 0},
{label: '通过',value: 1},
{label: '不通过',value: 2},
],
ui: { ui: {
widget:'select',
placeholder: '请选择', placeholder: '请选择',
widget: 'dict-select',
params: { dictKey: 'service:type' },
containsAllLabel: true,
visibleIf: { visibleIf: {
_$expand: (value: boolean) => value, _$expand: (value: boolean) => value,
}, },