|
|
@@ -268,7 +268,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row v-if="['单交', '交三', '交商'].includes(schemeitem.name)">
|
|
|
+ <el-row v-if="['单交', '交三', '交商','兜底配置'].includes(schemeitem.name)">
|
|
|
<h4 style="color: tomato;">交强险费用</h4>
|
|
|
<el-col :span="10" :offset="2">
|
|
|
<el-form-item label="溢出保费" prop="jqSpilloverPremiums">
|
|
|
@@ -320,7 +320,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row v-if="['单商', '单三', '交商', '交三'].includes(schemeitem.name)">
|
|
|
+ <el-row v-if="['单商', '单三', '交商', '交三','兜底配置'].includes(schemeitem.name)">
|
|
|
<h4 style="color: tomato;">商业险费用</h4>
|
|
|
<el-col :span="10" :offset="2">
|
|
|
<el-form-item label="溢出保费" prop="sySpilloverPremiums">
|
|
|
@@ -2701,6 +2701,14 @@ export default {
|
|
|
this.$api.insCompany.dicType(type).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this[type + 'options'] = res.data.ddList;
|
|
|
+ //如果是产品编码,费用方案用的,单独塞进去一个兜底配置other
|
|
|
+ if(type=='productsType'){
|
|
|
+ let productItem={};
|
|
|
+ productItem.dictTag='兜底配置';
|
|
|
+ productItem.dictValue='039999';
|
|
|
+ productItem.sort=5;
|
|
|
+ this.productsTypeoptions.push(productItem)
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
},
|