|
|
|
@ -147,21 +147,28 @@ |
|
|
|
|
|
|
|
|
|
<el-divider direction="horizontal" /> |
|
|
|
|
<el-row :gutter="20"> |
|
|
|
|
<el-col :span="12" :offset="0"> |
|
|
|
|
<el-form-item label="包含区域提成" labelWidth="150px"> |
|
|
|
|
<el-radio-group v-model="formData.quyuticheng"> |
|
|
|
|
<el-radio :label="true"> 是 </el-radio> |
|
|
|
|
<el-radio :label="false"> 否 </el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
|
<el-form-item label="转化提成比例" labelWidth="150px"> |
|
|
|
|
<el-input v-model="formData.zhuanhuaticheng" placeholder="比例" clearable> |
|
|
|
|
<template #suffix> % </template> |
|
|
|
|
</el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="12" :offset="0"> |
|
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
|
<el-form-item label="接待提成比例" labelWidth="150px"> |
|
|
|
|
<el-input v-model="formData.jiedaiticheng" placeholder="比例" clearable> |
|
|
|
|
<el-input v-model="formData.receptionPercentageRate" placeholder="比例" clearable> |
|
|
|
|
<template #suffix> % </template> |
|
|
|
|
</el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
|
<el-form-item label="包含区域提成" labelWidth="150px"> |
|
|
|
|
<el-radio-group v-model="formData.isAreaPercentage"> |
|
|
|
|
<el-radio :label="true"> 是 </el-radio> |
|
|
|
|
<el-radio :label="false"> 否 </el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row :gutter="20"> |
|
|
|
|
<el-col :span="12" :offset="0"> |
|
|
|
@ -320,8 +327,9 @@ const resetForm = () => { |
|
|
|
|
isDeductExtraPay: true, |
|
|
|
|
isDeductAfterSale: true, |
|
|
|
|
calculateType: 1, |
|
|
|
|
jiedaiticheng: undefined, |
|
|
|
|
quyuticheng: false |
|
|
|
|
receptionPercentageRate: undefined, |
|
|
|
|
isAreaPercentage: false, |
|
|
|
|
zhuanhuaticheng: undefined |
|
|
|
|
} |
|
|
|
|
formRef.value?.resetFields() |
|
|
|
|
} |
|
|
|
|