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

save

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