|
@@ -477,14 +477,14 @@
|
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="12" v-if="activeName === '1'">
|
|
<el-col :span="12" v-if="activeName === '1'">
|
|
|
<el-form-item label="交强险手续费比例">
|
|
<el-form-item label="交强险手续费比例">
|
|
|
- <el-input v-model="editForm.jqInsurance">
|
|
|
|
|
|
|
+ <el-input v-model="editForm.jqSuperviseCostsProportion">
|
|
|
<template #append>%</template>
|
|
<template #append>%</template>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col :span="12" v-if="activeName === '1'">
|
|
<el-col :span="12" v-if="activeName === '1'">
|
|
|
<el-form-item label="商业险手续费比例">
|
|
<el-form-item label="商业险手续费比例">
|
|
|
- <el-input v-model="editForm.syInsurance">
|
|
|
|
|
|
|
+ <el-input v-model="editForm.sySuperviseCostsProportion">
|
|
|
<template #append>%</template>
|
|
<template #append>%</template>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -502,7 +502,7 @@
|
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
<el-form-item label="">
|
|
<el-form-item label="">
|
|
|
- <el-date-picker v-model="editForm.signTime" type="datetime" format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
|
|
+ <el-date-picker v-model="editForm.signingTime" type="datetime" format="YYYY-MM-DD HH:mm:ss"
|
|
|
value-format="YYYY-MM-DD HH:mm:ss"></el-date-picker>
|
|
value-format="YYYY-MM-DD HH:mm:ss"></el-date-picker>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
@@ -511,12 +511,12 @@
|
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
<el-form-item label="姓名">
|
|
<el-form-item label="姓名">
|
|
|
- <el-input v-model="editForm.name"></el-input>
|
|
|
|
|
|
|
+ <el-input v-model="editForm.contractUserName"></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
<el-form-item label="手机号">
|
|
<el-form-item label="手机号">
|
|
|
- <el-input v-model="editForm.phone"></el-input>
|
|
|
|
|
|
|
+ <el-input v-model="editForm.contractPhone"></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
@@ -910,11 +910,7 @@ const handleBatchEdit = () => {
|
|
|
const handleBatchEditSubmit = async () => {
|
|
const handleBatchEditSubmit = async () => {
|
|
|
const params = {
|
|
const params = {
|
|
|
incomeIds: selectedList.value.map(item => item.id),
|
|
incomeIds: selectedList.value.map(item => item.id),
|
|
|
- jqSuperviseCostsProportion: editForm.value.jqInsurance,
|
|
|
|
|
- sySuperviseCostsProportion: editForm.value.syInsurance,
|
|
|
|
|
- signingTime: editForm.value.signTime,
|
|
|
|
|
- contractUserName: editForm.value.name,
|
|
|
|
|
- contractPhone: editForm.value.phone,
|
|
|
|
|
|
|
+ ...editForm.value,
|
|
|
updateFlag: '1'
|
|
updateFlag: '1'
|
|
|
}
|
|
}
|
|
|
const { code, data, msg } = await api.financeApi.batchModify(params)
|
|
const { code, data, msg } = await api.financeApi.batchModify(params)
|