|
|
@@ -28,7 +28,7 @@
|
|
|
<el-form-item label="险种类型" prop="productId">
|
|
|
<el-radio-group :disabled="isEdit" v-model="projectAddFrom.productId" @change="initProduct">
|
|
|
<el-radio-button v-for="item in insuranceType" :key="item.value" :value="item.value">{{ item.label
|
|
|
- }}</el-radio-button>
|
|
|
+ }}</el-radio-button>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
|
|
|
@@ -85,7 +85,7 @@
|
|
|
<el-table-column label="名称" prop="productName">
|
|
|
<template #default="scope">
|
|
|
<el-button link type="primary" @click="getJYXDetail(scope.row)">{{ scope.row.productName
|
|
|
- }}</el-button>
|
|
|
+ }}</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- 客户端状态(仅自选方案显示) -->
|
|
|
@@ -888,7 +888,7 @@ const save = async (ProjectAddRef: FormInstance | undefined) => {
|
|
|
id: ins.id,
|
|
|
insuranceId: ins.insuranceId,
|
|
|
kindName: ins.kindName,
|
|
|
- optionId: Array.isArray(ins.moneyId)?ins.moneyId:[ins.moneyId]
|
|
|
+ optionId: Array.isArray(ins.moneyId) ? ins.moneyId : [ins.moneyId ?? '']
|
|
|
}
|
|
|
item.schemeInsuranceList.push(obj)
|
|
|
})
|