Commit 313ee88d authored by 黄奎's avatar 黄奎
parents 9e532b7e 9809c6eb
...@@ -196,7 +196,7 @@ tr._item_list { ...@@ -196,7 +196,7 @@ tr._item_list {
border-bottom: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
height: 78px; height: 78px;
} }
tr._item_list td { tr._item_list td {
border-bottom: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
padding: 10px; padding: 10px;
} }
...@@ -509,7 +509,7 @@ input[type="number"] { ...@@ -509,7 +509,7 @@ input[type="number"] {
所有客户 所有客户
</li> </li>
<li :class="active == 3 ? '_active' : ''" @click="getActive(3, 1)"> <li :class="active == 3 ? '_active' : ''" @click="getActive(3, 1)">
待结算 待结算审核
</li> </li>
<li class="hight_query" style="float: right"> <li class="hight_query" style="float: right">
...@@ -590,7 +590,7 @@ input[type="number"] { ...@@ -590,7 +590,7 @@ 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.customerName}}</td>
<td>{{item.contactNumber}}</td> <td>{{item.contactNumber}}</td>
<td>{{item.signingPrice}}</td> <td>{{item.signingPrice}}</td>
...@@ -881,6 +881,7 @@ export default { ...@@ -881,6 +881,7 @@ export default {
}, },
mounted() { mounted() {
this.GetAuth(); this.GetAuth();
this.getCostTypeList(); this.getCostTypeList();
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
this.yfOutBranchId = userInfo.RB_Branch_id; this.yfOutBranchId = userInfo.RB_Branch_id;
...@@ -1117,7 +1118,11 @@ export default { ...@@ -1117,7 +1118,11 @@ export default {
} }
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,
SigningCustomerId:this.$route.query.id?this.$route.query.id:0
}, res => {
if (res.data.resultCode == 0) { if (res.data.resultCode == 0) {
this.loading = false; this.loading = false;
this.czList = [] this.czList = []
......
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