@@ -121,6 +121,9 @@
<el-checkbox style="margin-left: 10px;" v-if="formItems.attrCode == 'LicenseNo'"
v-model="LicenseNoChecked"
@change="LicenseNoCheckedChange($event, 'LicenseNo', 'min')">全选</el-checkbox>
+ <el-checkbox style="margin-left: 10px;" v-if="formItems.attrCode == 'LicenseArea'"
+ v-model="LicenseNoChecked1"
+ @change="LicenseNoCheckedChange($event, 'LicenseArea', 'min')">全选</el-checkbox>
</div>
<div v-if="formItems.attrType == 'input'" style="display: flex;">
<el-input v-model="formItems.min" placeholder="输入(宝马、奥迪等)多个输入,用,隔开"></el-input>
@@ -505,6 +508,7 @@ export default {
insuranceTypeCollapsed: true,
insurerCostFactorCollapsed: true,
LicenseNoChecked: false,
+ LicenseNoChecked1: false,
};
},
created() {
@@ -69,6 +69,7 @@
</el-form>
<div style="padding:0 10px 10px 10px ;" class=" flex j-s a-c">
<span style="font-weight: bold;font-size: 15px;color: #242833;">
+ {{ lineData.agreementName }} - {{ lineData.businessDescription }} - {{ lineData.jobDescription }} -
产品详情
</span>
<div class="flex a-c ">
@@ -1227,11 +1228,13 @@ export default {
batchUpdateForm1: {},
carClassList: [],
batchUpdatelist:[],
+ lineData: {},
}
// 生命周期函数
console.log(this.$route.query.isExternal, 888888);
+ this.lineData = this.$route.query
this.insuranceCompanyId = this.$route.query.insuranceCompanyId;
this.productpageRequest.agreementId = this.$route.query.id;
this.productCostForm.agreementId = this.$route.query.id;
@@ -767,6 +767,9 @@ export default {
});
toChinesNum(num) {
+ if (num == 1500000) {
+ return 150 + '万'
+ }
let changeNum = ["零", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
let unit = ["", "0", "00", "000", "0000"];
num = parseInt(num);
@@ -652,6 +652,9 @@ export default {
let changeNum = [
"零", "1", "2", "3", "4", "5", "6", "7", "8", "9"
];