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

save

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