Commit fa64eaba authored by youjie's avatar youjie

no message

parent d5e214bf
......@@ -953,7 +953,17 @@ input[type="number"] {
</li>
</ul>
</div>
<div style="margin-bottom: 20px;font-size: 12px;margin-left: 12px;color:#666">汇总金额:<span style="color: #333;font-size: 16px;margin-left:8px;">{{totalData.Money}}</span></div>
<div style="margin-bottom: 20px;font-size: 12px;margin-left: 12px;color:#666">
<span v-if="CustomerInfo" style="color: black;">
<span>门店:<span style="color: #333;font-size: 16px;margin-left:8px;">{{CustomerInfo.contactName}}</span></span>
<span style="margin-left: 20px;">客户:<span style="color: #333;font-size: 16px;margin-left:8px;">{{CustomerInfo.customerName}}</span></span>
<span style="margin-left: 20px;margin-right: 20px;">联系人:<span style="color: #333;font-size: 16px;margin-left:8px;">{{CustomerInfo.contact[0].contactName}}</span></span>
<span>电话:<span style="color: #333;font-size: 16px;margin-left:8px;">{{CustomerInfo.contactNumber}}</span></span>
</span>
<span style="margin-left: 20px;color: black;">
汇总金额:<span style="color: #333;font-size: 16px;margin-left:8px;">{{totalData.Money}}</span>
</span>
</div>
<div v-if="type == 1" style="margin: 10px">
<el-checkbox v-model="allCheck" @change="changeSelect">全选</el-checkbox>
<el-button style="margin-left: 10px" type="primary" size="small" @click="eidtItems">批量操作</el-button>
......@@ -994,12 +1004,12 @@ input[type="number"] {
<table v-loading='loading' border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-bottom:30px;">
<tr class="_t_head">
<th v-if="type == 1"></th>
<th>客户名称 </th>
<!-- <th>客户名称 </th>
<th>联系人</th>
<th>手机号</th>
<th>签约到期时间</th>
<th>签约金额 </th>
<th>待结算金额</th>
<th>待结算金额</th> -->
<!-- <th v-if="hbState || checkboxShow || BOSSBtn || BOSSBtn2"><input type="checkbox" v-model="isCkedAll" @click='checkedAll()'></th> -->
<th width="90">{{$t('system.query_company')}}</th>
<th>{{$t('fnc.danhao')}}</th>
......@@ -1015,12 +1025,12 @@ input[type="number"] {
<th v-if="type == 1">{{$t('system.table_operation')}}</th>
</tr>
<tr class="_item_list" v-for="(item,index) in czList">
<td height="26px">{{item.customerName?item.customerName:'-'}}</td>
<!-- <td height="26px">{{item.customerName?item.customerName:'-'}}</td>
<td height="26px">{{item.contact?item.contact:'-'}}</td>
<td height="26px">{{item.contactNumber?item.contactNumber:'-'}}</td>
<td height="26px">{{item.signingEndTimet?item.signingEndTimet:'-'}}</td>
<td height="26px">{{item.signingPrice?item.signingPrice:'-'}}</td>
<td height="26px">{{item.signingUnsettledPrice?item.signingUnsettledPrice:'-'}}</td>
<td height="26px">{{item.signingUnsettledPrice?item.signingUnsettledPrice:'-'}}</td> -->
<td v-if="type == 1"><input type="checkbox" :value="item.FrID" v-model="item.check" @change="changeSelectItem"></td>
<!-- <td v-if="hbState || checkboxShow || BOSSBtn || BOSSBtn2"><input type="checkbox" :value="item.FrID" v-model="checkList" @change="ckeckedOne"></td> -->
<td>{{item.BranchName}}</td>
......@@ -1357,6 +1367,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
JYExceptionList: [],
isShow: false,
saveMsg: [],
CustomerInfo: null,
}
},
methods: {
......@@ -1383,6 +1394,15 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
// window.open("https://view.officeapps.live.com/op/view.aspx?src="+i.Url)
}
},
getMyCustomerInfo() {
this.apipost('app_GetMyCustomerInfo', {
customerId: this.msg.CustomerId
}, res => {
if (res.data.resultCode == 1) {
this.CustomerInfo = res.data.data;
}
})
},
Financial_post_GetFinancLogList(id) {
// 获取单据日志
if (this.checkboxShow) return;
......@@ -1446,6 +1466,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
this.addMsg.SigningCustomerId = this.$route.query.id;
this.apipost('customer_post_GetSigningFinance', this.addMsg, res => {
if (res.data.resultCode == 1) {
this.saveMsg = []
this.showCheck = false
this.$message.success(res.data.message || '操作成功')
this.getList()
......@@ -1617,6 +1638,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
this.msg.CustomerId = this.$route.query.id
this.getList()
this.getTotalData()
this.getMyCustomerInfo()
}
}
......
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