Commit 19fb144f authored by youjie's avatar youjie

no message

parent fe81a4bb
......@@ -516,6 +516,9 @@ input[type="number"] {
<button class="hollowFixedBtn" @click="resetPageIndex(), getPageList()">
{{ $t("pub.searchBtn") }}
</button>
<button class="normalBtn" @click="exportExcel">
导出
</button>
</li>
</ul>
<div class="Myquery-box">
......@@ -531,6 +534,20 @@ input[type="number"] {
></el-input>
</span>
</li>
<li>
<span>
<em style="margin-left: 12px">未结算金额</em>
<el-select v-model="msg.CustomerStatus" placeholder="请选择"
@change="resetPageIndex(), getPageList()">
<el-option
v-for="item in options"
:key="item.Id"
:label="item.Name"
:value="item.Id">
</el-option>
</el-select>
</span>
</li>
</ul>
</div>
<!-- <input type="text" v-model="mathNumber" @blur="mathMoney(mathNumber)">
......@@ -695,6 +712,10 @@ input[type="number"] {
export default {
data() {
return {
options:[
{Name:'不限',Id:0},
{Name:'未结算金额用户',Id:2},
],
addMsg: {
Status: 1,
},
......@@ -730,7 +751,8 @@ export default {
msg: {
pageIndex: 1,
pageSize: 10,
SigningCustomerId: 0
SigningCustomerId: 0,
CustomerStatus: 0
},
getCompanyMsg: {
// 公司
......@@ -912,6 +934,13 @@ export default {
// this.czgetList();
},
methods: {
exportExcel() { //导出
let msg = JSON.parse(JSON.stringify(this.msg))
// let userInfo = this.getLocalStorage();
// msg.EmployeeIdUser = userInfo.EmployeeId
var fileName = "签约客户表.xls";
this.GetLocalFile("customer_post_GetSigningCustomerPage", msg, fileName);
},
lookDetail(item, type) {
let path = ''
let query = {}
......@@ -1123,7 +1152,7 @@ export default {
this.czList = []
this.apipost('customer_post_GetSettlementCustomerPage',
{...this.msg,
CustomerStatus: 0,
// CustomerStatus: this.msg.CustomerStatus,
}, res => {
if (res.data.resultCode == 0) {
......
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