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