Commit ec6ff276 authored by youjie's avatar youjie

no message

parent 3dd36320
......@@ -589,13 +589,34 @@
</div>
<div>
<p>签约客户:<span>
<el-select clearable filterable v-model='msg.SigningCustomerId' class="w135 _border_b_1">
<el-select clearable filterable v-model='msg.SigningCustomerId' class="w135 _border_b_1"
@change="getSigningCustomerId">
<el-option v-for='item in CustomerIdList' :label='item.customerName' :value='item.customerId'
:key='item.customerId'>
</el-option>
</el-select>
</span></p>
</span>
</p>
</div>
<table v-if="ContractCustomer" class="Receipt_table" border="1" bordercolor="#c94052"
style="border-collapse:collapse;margin-top: 10px;">
<tr>
<th>客户名称 </th>
<th>联系人</th>
<th>手机号</th>
<th>签约到期时间</th>
<th>签约金额 </th>
<th>待结算金额</th>
</tr>
<tr class="_color_b">
<td height="26px">{{ContractCustomer.customerName?ContractCustomer.customerName:'-'}}</td>
<td height="26px">{{ContractCustomer.contact?ContractCustomer.contact:'-'}}</td>
<td height="26px">{{ContractCustomer.contactNumber?ContractCustomer.contactNumber:'-'}}</td>
<td height="26px">{{ContractCustomer.signingEndTimet?ContractCustomer.signingEndTimet:'-'}}</td>
<td height="26px">{{ContractCustomer.signingPrice?ContractCustomer.signingPrice:'-'}}</td>
<td height="26px">{{ContractCustomer.signingUnsettledPrice?ContractCustomer.signingUnsettledPrice:'-'}}</td>
</tr>
</table>
</div>
<div class="_remark">
<p>{{$t('system.label_info')}}</p>
......@@ -681,6 +702,7 @@
export default {
data() {
return {
ContractCustomer: null,
Description: '',
msg: {
ReFinanceId: '',
......@@ -1853,12 +1875,20 @@
}
}, err => {})
},
getSigningCustomerId(){
this.CustomerIdList.forEach(item=>{
if(item.customerId==this.msg.SigningCustomerId){
this.ContractCustomer = item
}
})
},
getCustomerIdList() {this.apipost(
"app_today_visit_GetMySigningCustomerList",
{pageIndex: 1,pageSize: 1000,CustomerStatus: 0},
res => {
if (res.data.resultCode == 1) {
this.CustomerIdList = res.data.data;
console.log(this.CustomerIdList,'------')
} else {
this.loading = false;
this.$message.error(res.data.message);
......
......@@ -358,7 +358,7 @@
<!-- <a v-if="detailList.signingFile" style="margin-left:20px;color:blue;cursor:pointer;font-size: 14px;"
target="_blank" @click="downloadFile(detailList.signingFile)">签约客户附件</a> -->
<div v-if="detailList&&detailList.signingFile" style="display: flex;">
<span style="color:blue;font-size: 12px; padding: 5px 0;">签约附件:</span>
<!-- <span style="color:blue;font-size: 12px; padding: 5px 0;">签约附件:</span> -->
<div>
<template v-if="verificationFile(detailList.signingFile)==3">
<el-image :src="domainManager().ViittoFileUrl+detailList.signingFile"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment