Commit 90ca3fbe authored by 沈良进's avatar 沈良进

save

parent 4439851e
...@@ -531,7 +531,7 @@ input[type="number"] { ...@@ -531,7 +531,7 @@ input[type="number"] {
<ul class="clearfix"> <ul class="clearfix">
<li> <li>
<span> <span>
<em>客户名称</em> <em style="margin-left: 12px">客户名称</em>
<el-input <el-input
placeholder="" placeholder=""
class="w150" class="w150"
...@@ -566,7 +566,7 @@ input[type="number"] { ...@@ -566,7 +566,7 @@ input[type="number"] {
<th>未结算申请数</th> <th>未结算申请数</th>
<th>总收客数</th> <th>总收客数</th>
<th>签约截止时间</th> <th>签约截止时间</th>
<th v-if="active == 2">操作</th> <th>操作</th>
</tr> </tr>
<tr v-for="(item, index) in DataList" :key="index"> <tr v-for="(item, index) in DataList" :key="index">
<td>{{ item.customerName }}</td> <td>{{ item.customerName }}</td>
...@@ -575,10 +575,10 @@ input[type="number"] { ...@@ -575,10 +575,10 @@ input[type="number"] {
<td>{{ item.tradeTotal }}</td> <td>{{ item.tradeTotal }}</td>
<td>{{ item.signingPrice }}</td> <td>{{ item.signingPrice }}</td>
<td>{{ item.signingUnsettledPrice }}</td> <td>{{ item.signingUnsettledPrice }}</td>
<td>{{ item.WaringAudit }}</td> <td>{{ item.waringAudit }}</td>
<td>{{ item.totalGuestNum }}</td> <td>{{ item.totalGuestNum }}</td>
<td>{{ item.signingEndTime }}</td> <td>{{ item.signingEndTime }}</td>
<td v-if="active == 2"><el-button size="mine" type="primary" @click="financeCheck(item)">审核</el-button></td> <td><el-button size="mini" type="primary" @click="lookDetail(item)">详情</el-button></td>
</tr> </tr>
<tr v-if="DataList.length == 0"> <tr v-if="DataList.length == 0">
<td colspan="12" style="text-align: center">暂无数据</td> <td colspan="12" style="text-align: center">暂无数据</td>
...@@ -704,7 +704,7 @@ export default { ...@@ -704,7 +704,7 @@ export default {
}, },
msg: { msg: {
pageIndex: 1, pageIndex: 1,
pageSize: 6, pageSize: 10,
}, },
getCompanyMsg: { getCompanyMsg: {
// 公司 // 公司
...@@ -885,6 +885,15 @@ export default { ...@@ -885,6 +885,15 @@ export default {
// this.czgetList(); // this.czgetList();
}, },
methods: { methods: {
lookDetail(item) {
console.log('item', item)
this.$router.push({
path: 'signedFinanceForAll',
query: {
id: item.customerId
}
})
},
financeCheck(item) { financeCheck(item) {
this.checkObj = item; this.checkObj = item;
this.showCheck = true this.showCheck = true
...@@ -895,7 +904,7 @@ export default { ...@@ -895,7 +904,7 @@ export default {
return; return;
} }
this.addMsg.ExamineVoucher = this.BusinessCardPhotos; this.addMsg.ExamineVoucher = this.BusinessCardPhotos;
this.addMsg.Id = this.checkObj.customerId; this.addMsg.Id = this.checkObj.customerAccountId;
this.apipost( this.apipost(
"customer_post_UpdateSigningSettlement", "customer_post_UpdateSigningSettlement",
this.addMsg, this.addMsg,
......
This diff is collapsed.
...@@ -3212,10 +3212,18 @@ export default { ...@@ -3212,10 +3212,18 @@ export default {
title: '财务单据' title: '财务单据'
}, },
}, },
{ // 月结签约客户 财务单据 { // 月结签约客户 客户列表
path: '/signedFinanceAll', path: '/signedFinanceAll',
name: 'signedFinanceAll', name: 'signedFinanceAll',
component: resolve => require(['@/components/SalesModule/signedFinanceAll'], resolve), component: resolve => require(['@/components/SalesModule/signedFinanceAll'], resolve),
meta: {
title: '客户列表'
},
},
{ // 月结签约客户 财务单据
path: '/signedFinanceForAll',
name: 'signedFinanceForAll',
component: resolve => require(['@/components/SalesModule/signedFinanceForAll'], resolve),
meta: { meta: {
title: '财务单据列表' title: '财务单据列表'
}, },
......
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