|
|
@ -81,9 +81,19 @@ |
|
|
|
/> |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
|
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
|
|
|
|
<el-form-item label="成交价" prop="signPrice"> |
|
|
|
|
|
|
|
<el-input-number |
|
|
|
|
|
|
|
v-model="form.signPrice" |
|
|
|
|
|
|
|
:min="0" |
|
|
|
|
|
|
|
style="width: 100%" |
|
|
|
|
|
|
|
:controls="false" |
|
|
|
|
|
|
|
/> |
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
</el-col> |
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
<el-form-item label="是否全款"> |
|
|
|
<el-form-item label="是否全款"> |
|
|
|
<el-radio-group v-model="form.state"> |
|
|
|
<el-radio-group v-model="form.isPayoff"> |
|
|
|
<el-radio :label="true"> 全款 </el-radio> |
|
|
|
<el-radio :label="true"> 全款 </el-radio> |
|
|
|
<el-radio :label="false"> 非全款 </el-radio> |
|
|
|
<el-radio :label="false"> 非全款 </el-radio> |
|
|
|
</el-radio-group> |
|
|
|
</el-radio-group> |
|
|
@ -91,7 +101,12 @@ |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
<el-form-item label="支付金额" prop="payAmount"> |
|
|
|
<el-form-item label="支付金额" prop="payAmount"> |
|
|
|
<el-input-number v-model="form.payAmount" :min="1" :step="1" style="width: 100%" /> |
|
|
|
<el-input-number |
|
|
|
|
|
|
|
v-model="form.payAmount" |
|
|
|
|
|
|
|
:min="0" |
|
|
|
|
|
|
|
style="width: 100%" |
|
|
|
|
|
|
|
:controls="false" |
|
|
|
|
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8" :offset="0"> |
|
|
|
<el-col :span="8" :offset="0"> |
|
|
@ -114,6 +129,18 @@ |
|
|
|
</el-select> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
|
|
|
|
<el-col :span="8" :offset="0" v-if="appStore.getAppInfo?.instanceType == 2"> |
|
|
|
|
|
|
|
<el-form-item label="转化人" prop="convertPeople"> |
|
|
|
|
|
|
|
<el-select v-model="form.convertPeople" placeholder="选择转化人" clearable filterable> |
|
|
|
|
|
|
|
<el-option |
|
|
|
|
|
|
|
v-for="item in userOptions" |
|
|
|
|
|
|
|
:key="item.id" |
|
|
|
|
|
|
|
:label="item.nickname" |
|
|
|
|
|
|
|
:value="item.id" |
|
|
|
|
|
|
|
/> |
|
|
|
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
</el-col> |
|
|
|
<el-col |
|
|
|
<el-col |
|
|
|
:span="8" |
|
|
|
:span="8" |
|
|
|
:offset="0" |
|
|
|
:offset="0" |
|
|
@ -401,7 +428,8 @@ function resetForm(id) { |
|
|
|
form.value = { |
|
|
|
form.value = { |
|
|
|
clueId: id, |
|
|
|
clueId: id, |
|
|
|
dealDate: formatDate(new Date()), |
|
|
|
dealDate: formatDate(new Date()), |
|
|
|
state: true, |
|
|
|
isPayoff: true, |
|
|
|
|
|
|
|
signPrice: 0, |
|
|
|
payAmount: 0, |
|
|
|
payAmount: 0, |
|
|
|
remark: undefined, |
|
|
|
remark: undefined, |
|
|
|
isCompanyReceipts: appStore.getAppInfo?.instanceType == 2, |
|
|
|
isCompanyReceipts: appStore.getAppInfo?.instanceType == 2, |
|
|
|