Commit 5331139b authored by 沈良进's avatar 沈良进

save

parent eb7e822a
...@@ -192,11 +192,6 @@ ...@@ -192,11 +192,6 @@
.Bill_par { .Bill_par {
position: relative; position: relative;
} }
tr th,
tr td {
text-align: left;
padding-left: 10px;
}
tr._item_list { tr._item_list {
border-bottom: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
height: 78px; height: 78px;
...@@ -562,19 +557,18 @@ input[type="number"] { ...@@ -562,19 +557,18 @@ input[type="number"] {
<th>未结算申请数</th> <th>未结算申请数</th>
<th>总收客数</th> <th>总收客数</th>
<th>签约截止时间</th> <th>签约截止时间</th>
<th>操作</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>
<td>{{ item.contact }}</td> <td>{{ item.contact }}</td>
<td>{{ item.contactNumber }}</td> <td>{{ item.contactNumber }}</td>
<td>{{ item.tradeTotal }}</td> <td><span style="cursor: pointer;text-decoration: underline;" @click="lookDetail(item,1)">{{ item.tradeTotal }}</span></td>
<td>{{ item.signingPrice }}</td> <td>{{ item.signingPrice }}</td>
<td>{{ item.signingUnsettledPrice }}</td> <td><span style="cursor: pointer;text-decoration: underline;" @click="lookDetail(item,2)">{{ item.signingUnsettledPrice }}</span></td>
<td>{{ item.waringAudit }}</td> <td><span style="cursor: pointer;text-decoration: underline;" @click="lookDetail(item,3)">{{ item.waringAudit }}</span></td>
<td>{{ item.totalGuestNum }}</td> <td>{{ item.totalGuestNum }}</td>
<td>{{ item.signingEndTime }}</td> <td>{{ item.signingEndTime }}</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>
...@@ -716,7 +710,7 @@ export default { ...@@ -716,7 +710,7 @@ export default {
widthSon: "700px", widthSon: "700px",
colorSon: "#f5f5f5", colorSon: "#f5f5f5",
showID: false, showID: false,
active: 1, active: 3,
userId: 0, userId: 0,
rejectNum: "", rejectNum: "",
zhuanjiaoBox: false, zhuanjiaoBox: false,
...@@ -787,7 +781,7 @@ export default { ...@@ -787,7 +781,7 @@ export default {
dateEnd: "", dateEnd: "",
dateArr: "", dateArr: "",
status: "1", status: "1",
type: "3", type: "1",
heightQueryBox: false, heightQueryBox: false,
loading: false, loading: false,
LogLoading: false, LogLoading: false,
...@@ -907,23 +901,38 @@ export default { ...@@ -907,23 +901,38 @@ export default {
// this.czgetList(); // this.czgetList();
}, },
methods: { methods: {
lookDetail(item) { lookDetail(item, type) {
console.log('item', item) console.log('item', item, type)
this.$router.push({ let path = ''
path: 'signedFinanceForAll', let query = {}
query: { if(type == 1) {
path='MyCustomerDetail',
query={
id: item.customerId, id: item.customerId,
blank: 'y', blank: 'y',
} }
}) } else if(type == 2) { // weij
path='signedFinance',
query={
id: item.customerId,
blank: 'y',
}
} else { // 详情
path='signedFinanceForAll',
query={
id: item.customerId,
blank: 'y',
}
}
this.$router.push({path,query})
}, },
financeCheck(item) { financeCheck(item) {
// this.checkObj = item; // this.checkObj = item;
// this.showCheck = true // this.showCheck = true
this.$router.push({ this.$router.push({
path: 'customerAccountId', path: 'signedFinanceCheck',
query: { query: {
id: item.customerAccountId, id: item.id,
blank: 'y', blank: 'y',
} }
}) })
......
...@@ -827,13 +827,28 @@ input::-webkit-inner-spin-button { ...@@ -827,13 +827,28 @@ input::-webkit-inner-spin-button {
input[type="number"] { input[type="number"] {
-moz-appearance: textfield; -moz-appearance: textfield;
} }
.check-info {
margin: 10px;
font-size: 14px;
color: #666;
}
.check-info span {
margin-left: 10px;
color: #333;
}
</style> </style>
<template> <template>
<div class="page_MyCustomer MyCustomerDiv"><button class="normalBtn" type="primary" @click="showCheck = true"> <div class="page_MyCustomer MyCustomerDiv">
<div>
<div class="check-info">创建者:<span>{{detailInfo.CreateBy}}</span></div>
<div class="check-info">创建时间:<span>{{detailInfo.CreateDate}}</span></div>
<div class="check-info">提示:<span>{{detailInfo.Notes}}</span></div>
<button class="normalBtn" type="primary" @click="showCheck = true">
结算 结算
</button> </button>
<div v-loading="detailLoading"> </div>
<table v-loading='loading' border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-bottom:30px;"> <div style="margin-top: 10px" v-loading="detailLoading">
<table border="0" cellspacing="0" cellpadding="0" class="singeRowTable" style="margin-bottom:30px;">
<tr class="_t_head"> <tr class="_t_head">
<!-- <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>
......
...@@ -1235,9 +1235,9 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue"; ...@@ -1235,9 +1235,9 @@ import myGZBill from "../FinancialModule/FinancialSubmodule/GZBillModule.vue";
// this.showDetail = true; // this.showDetail = true;
// this.getDetail(item.customerAccountId) // this.getDetail(item.customerAccountId)
this.$router.push({ this.$router.push({
path: 'customerAccountId', path: 'signedFinanceCheck',
query: { query: {
id: item.customerAccountId, id: item.id,
blank: 'y', blank: 'y',
} }
}) })
......
...@@ -3233,7 +3233,7 @@ export default { ...@@ -3233,7 +3233,7 @@ export default {
name: 'signedFinanceCheck', name: 'signedFinanceCheck',
component: resolve => require(['@/components/SalesModule/signedFinanceCheck'], resolve), component: resolve => require(['@/components/SalesModule/signedFinanceCheck'], 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