解决冲突

This commit is contained in:
wangshiming
2022-04-27 16:40:38 +08:00
parent bdb822da6e
commit 9fa1a206ef
2 changed files with 5 additions and 7 deletions

View File

@ -65,6 +65,8 @@ export class OrderManagementRiskComponent extends BasicTableComponent implements
beforeReq = (requestOptions: STRequestOptions) => {
const a: any = {};
if (this.resourceStatus) {
console.log(this.resourceStatus);
a.representationsStatus = this.resourceStatus;
}
const params: any = Object.assign({}, this.sf?.value || {});

View File

@ -469,13 +469,8 @@ export class CarSettleCarauthComponent implements OnInit {
title: '使用性质',
type: 'string',
maxLength: 30,
enum: [
{ label: '非营运', value: 0 },
{ label: '营运', value: 1 },
],
ui: {
widget: 'select',
placeholder: '请选择',
placeholder: '请输入',
},
},
curbWeight: {
@ -602,6 +597,7 @@ export class CarSettleCarauthComponent implements OnInit {
'carNo',
'carNoColor',
'carModel',
'carEnergyType',
'carLength',
'carLoad',
'isSelf',
@ -689,7 +685,7 @@ export class CarSettleCarauthComponent implements OnInit {
this.sf.setValue('/driverLicenseSigningOrg', res.issuingAuthority);
this.sf.setValue('/carDistinguishCode', res.vin);
this.sf.setValue('/carOwner', res.name);
this.sf.setValue('/useNature', res.useCharacter === '非营运' ? 0 : 1);
this.sf.setValue('/useNature', res.useCharacter);
this.sf.setValue('/carModel', res?.vehicleType);
} else {