Commit fa64eaba authored by youjie's avatar youjie

no message

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