|
|
@@ -1054,6 +1054,7 @@
|
|
|
</el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="驾意险代码" prop="productCode" align="center"></el-table-column>
|
|
|
<el-table-column label="保费" prop="premium" align="center"></el-table-column>
|
|
|
</el-table>
|
|
|
<el-button size="small" link type="primary" @click="handleSelectSpecial(scope)">选择特约</el-button>
|
|
|
@@ -2657,7 +2658,8 @@ const handleSelect = (row: any) => {
|
|
|
if (insurancePolicyForm.value.productId) {
|
|
|
api.insurancePolicyApi.getSchemeResult({
|
|
|
companyId: row.id,
|
|
|
- productId: insurancePolicyForm.value.productId
|
|
|
+ productId: insurancePolicyForm.value.productId,
|
|
|
+ seatCount: insurancePolicyForm.value.seatCount,
|
|
|
}).then((res: any) => {
|
|
|
let list = res.data?.schemes || [];
|
|
|
if (res.data?.optionalScheme) {
|
|
|
@@ -2699,7 +2701,8 @@ const handelExpend = (e: any) => {
|
|
|
if (insurancePolicyForm.value.productId) {
|
|
|
api.insurancePolicyApi.getSchemeResult({
|
|
|
companyId: e.id,
|
|
|
- productId: insurancePolicyForm.value.productId
|
|
|
+ productId: insurancePolicyForm.value.productId,
|
|
|
+ seatCount: insurancePolicyForm.value.seatCount,
|
|
|
}).then((res: any) => {
|
|
|
let list = res.data?.schemes || [];
|
|
|
if (res.data?.optionalScheme) {
|