解决冲突
This commit is contained in:
@ -65,6 +65,8 @@ export class OrderManagementRiskComponent extends BasicTableComponent implements
|
|||||||
beforeReq = (requestOptions: STRequestOptions) => {
|
beforeReq = (requestOptions: STRequestOptions) => {
|
||||||
const a: any = {};
|
const a: any = {};
|
||||||
if (this.resourceStatus) {
|
if (this.resourceStatus) {
|
||||||
|
console.log(this.resourceStatus);
|
||||||
|
|
||||||
a.representationsStatus = this.resourceStatus;
|
a.representationsStatus = this.resourceStatus;
|
||||||
}
|
}
|
||||||
const params: any = Object.assign({}, this.sf?.value || {});
|
const params: any = Object.assign({}, this.sf?.value || {});
|
||||||
|
|||||||
@ -469,13 +469,8 @@ export class CarSettleCarauthComponent implements OnInit {
|
|||||||
title: '使用性质',
|
title: '使用性质',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
maxLength: 30,
|
maxLength: 30,
|
||||||
enum: [
|
|
||||||
{ label: '非营运', value: 0 },
|
|
||||||
{ label: '营运', value: 1 },
|
|
||||||
],
|
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
placeholder: '请输入',
|
||||||
placeholder: '请选择',
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
curbWeight: {
|
curbWeight: {
|
||||||
@ -602,6 +597,7 @@ export class CarSettleCarauthComponent implements OnInit {
|
|||||||
'carNo',
|
'carNo',
|
||||||
'carNoColor',
|
'carNoColor',
|
||||||
'carModel',
|
'carModel',
|
||||||
|
'carEnergyType',
|
||||||
'carLength',
|
'carLength',
|
||||||
'carLoad',
|
'carLoad',
|
||||||
'isSelf',
|
'isSelf',
|
||||||
@ -689,7 +685,7 @@ export class CarSettleCarauthComponent implements OnInit {
|
|||||||
this.sf.setValue('/driverLicenseSigningOrg', res.issuingAuthority);
|
this.sf.setValue('/driverLicenseSigningOrg', res.issuingAuthority);
|
||||||
this.sf.setValue('/carDistinguishCode', res.vin);
|
this.sf.setValue('/carDistinguishCode', res.vin);
|
||||||
this.sf.setValue('/carOwner', res.name);
|
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);
|
this.sf.setValue('/carModel', res?.vehicleType);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user