|
|
@@ -784,10 +784,9 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
<el-form-item class="white-m-p24" label="车辆其他信息">
|
|
|
- <el-radio-group v-model="insurancePolicyForm.insuranceType">
|
|
|
- <el-radio value="1">商业险是否过户</el-radio>
|
|
|
- <el-radio value="2">二手车</el-radio>
|
|
|
- </el-radio-group>
|
|
|
+ <el-checkbox v-model="insurancePolicyForm.transfer" value="1">是否过户</el-checkbox>
|
|
|
+ <el-checkbox v-model="insurancePolicyForm.biTransfer" value="2">商业险是否过户</el-checkbox>
|
|
|
+ <el-checkbox v-model="insurancePolicyForm.secondHandCar" value="3">二手车</el-checkbox>
|
|
|
</el-form-item>
|
|
|
<div class="insurance-jq" v-if="insurancePolicyForm.productId === '0330' || insurancePolicyForm.productId === '0330034002' || insurancePolicyForm.productId === '0330034001'">
|
|
|
<span>交强险</span>
|
|
|
@@ -1606,9 +1605,9 @@ let insurancePolicyForm = ref({
|
|
|
taxRelief: '',
|
|
|
taxDocumentDate: '',
|
|
|
taxPaidAreaCode: '',
|
|
|
- taxpayerName: '',
|
|
|
- taxpayerIdentifier: '',
|
|
|
- identifyNumber: '',
|
|
|
+ taxpayerName: '',
|
|
|
+ taxpayerIdentifier: '',
|
|
|
+ identifyNumber: '',
|
|
|
|
|
|
JQRiskCode: '0507',
|
|
|
JQStartDate: '',
|
|
|
@@ -1619,6 +1618,10 @@ let insurancePolicyForm = ref({
|
|
|
SYEndDate: '',
|
|
|
SYInstantFlag: false,
|
|
|
|
|
|
+ transfer: false,
|
|
|
+ biTransfer: false,
|
|
|
+ secondHandCar: false,
|
|
|
+
|
|
|
imageVoList: []
|
|
|
})
|
|
|
let insurancePolicyRules = ref<FormRules>({
|
|
|
@@ -2615,7 +2618,10 @@ const handleSubmit = async (InsurancePolicyRefs: FormInstance | undefined, scope
|
|
|
purchasePrice: insurancePolicyForm.value.purchasePrice,
|
|
|
displacement: insurancePolicyForm.value.displacement,
|
|
|
powerScale: insurancePolicyForm.value.powerScale,
|
|
|
- carKindCode: insurancePolicyForm.value.plateType
|
|
|
+ carKindCode: insurancePolicyForm.value.plateType,
|
|
|
+ transfer: insurancePolicyForm.value.transfer,
|
|
|
+ biTransfer: insurancePolicyForm.value.biTransfer,
|
|
|
+ secondHandCar: insurancePolicyForm.value.secondHandCar
|
|
|
},
|
|
|
ownersInfo: {
|
|
|
property: 1,
|