Commit 943f4778 authored by 沈良进's avatar 沈良进

save

parent c76c885d
...@@ -393,7 +393,7 @@ ...@@ -393,7 +393,7 @@
>  > 
签约资料 签约资料
</p> </p>
<a style="margin-left:20px;color:blue;cursor:pointer;font-size: 14px;" target="_blank" <a v-if="detailList.signingFile" style="margin-left:20px;color:blue;cursor:pointer;font-size: 14px;" target="_blank"
@click="downloadFile(detailList.signingFile)">签约客户附件</a> @click="downloadFile(detailList.signingFile)">签约客户附件</a>
<p class="fz14 color666 mt10"> <p class="fz14 color666 mt10">
<i class="iconfont icon-fangwenjilu fz14 colorccc"></i>&nbsp; <i class="iconfont icon-fangwenjilu fz14 colorccc"></i>&nbsp;
......
...@@ -577,6 +577,9 @@ input[type="number"] { ...@@ -577,6 +577,9 @@ input[type="number"] {
<table v-if="active == 3" class="leaderPayTable" border="0" cellspacing="1" cellpadding="0"> <table v-if="active == 3" class="leaderPayTable" border="0" cellspacing="1" cellpadding="0">
<tr> <tr>
<th>客户名称</th>
<th>联系方式</th>
<th>签约额度</th>
<th>创建者</th> <th>创建者</th>
<th>创建时间</th> <th>创建时间</th>
<th>审核状态</th> <th>审核状态</th>
...@@ -587,6 +590,10 @@ input[type="number"] { ...@@ -587,6 +590,10 @@ input[type="number"] {
<th>操作</th> <th>操作</th>
</tr> </tr>
<tr v-for="(item,index) in czList" :key="index"> <tr v-for="(item,index) in czList" :key="index">
<td>{{item.customerName}}</td>
<td>{{item.contactNumber}}</td>
<td>{{item.totalPrice}}</td>
<td>{{item.createBy}}</td> <td>{{item.createBy}}</td>
<td>{{item.createDate}}</td> <td>{{item.createDate}}</td>
<td>{{item.statusName}}</td> <td>{{item.statusName}}</td>
...@@ -1105,7 +1112,13 @@ export default { ...@@ -1105,7 +1112,13 @@ export default {
null null
); );
}, },
getList() { // 获取待结算列表数据 getList(t,active) { // 获取待结算列表数据
if (active) {
this.total = 0;
this.DataList = [];
this.msg.pageIndex = 1;
this.isTerminate++;
}
this.loading = true this.loading = true
this.czList = [] this.czList = []
this.apipost('customer_post_GetSettlementCustomerPage', {...this.msg, CustomerStatus: 0}, res => { this.apipost('customer_post_GetSettlementCustomerPage', {...this.msg, CustomerStatus: 0}, res => {
...@@ -1131,11 +1144,11 @@ export default { ...@@ -1131,11 +1144,11 @@ export default {
this.msg.pageIndex == 1; this.msg.pageIndex == 1;
this.getPageList(0, 1); this.getPageList(0, 1);
}, },
getPageList() { getPageList(t,active) {
if(this.active == 1) { if(this.active == 1) {
this.getAllPageList(0, 1); this.getAllPageList(t,active);
} else { } else {
this.getList() this.getList(t,active)
} }
}, },
getAllPageList(t, active) { getAllPageList(t, active) {
......
...@@ -854,7 +854,7 @@ input[type="number"] { ...@@ -854,7 +854,7 @@ input[type="number"] {
</div> </div>
</div> </div>
<button class="normalBtn" type="primary" @click="showCheck = true"> <button class="normalBtn" type="primary" @click="showCheck = true">
结算 审核
</button> </button>
</div> </div>
<div style="margin-top: 10px" v-loading="detailLoading"> <div style="margin-top: 10px" v-loading="detailLoading">
...@@ -1013,7 +1013,7 @@ input[type="number"] { ...@@ -1013,7 +1013,7 @@ input[type="number"] {
</div> </div>
<el-dialog <el-dialog
custom-class="addCompany page_MyCustomer" custom-class="addCompany page_MyCustomer"
title="结算" title="审核"
width="400px" width="400px"
:visible.sync="showCheck" :visible.sync="showCheck"
center center
...@@ -1087,7 +1087,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue"; ...@@ -1087,7 +1087,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
CustomerStatus: 0, CustomerStatus: 0,
totalData: {}, totalData: {},
allCheck: false, allCheck: false,
addMsg: {}, addMsg: {Status: 1},
showCheck: false, showCheck: false,
saveMsg: [], saveMsg: [],
headers: { headers: {
...@@ -1187,6 +1187,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue"; ...@@ -1187,6 +1187,7 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.showCheck = false; this.showCheck = false;
this.$message.success(res.data.message || "操作成功"); this.$message.success(res.data.message || "操作成功");
this.getDetail(this.frId)
} else { } else {
this.$message.error(res.data.message || "发生异常,请重试"); this.$message.error(res.data.message || "发生异常,请重试");
} }
......
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