Commit f2fa3c99 authored by youjie's avatar youjie

no message

parent 688cbb93
<template> <template>
<div class="flexOne page_PlatformAccount"> <div class="flexOne page_PlatformAccount">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li v-if="isExamine" style="margin-bottom: 10px;">
<span>
<em>审核状态</em>
<el-select v-model="msg.QAccountState" class="w200 HworkInput"
@change="msg.pageIndex==1,getList()">
<el-option v-for="item in QAccountStateList" :key="item.Id" :label="item.Name" :value="item.Id"></el-option>
</el-select>
</span>
</li>
<li> <li>
<input type="button" class="normalBtn" :value="$t('pub.addBtn')" <input type="button" class="normalBtn" :value="$t('pub.addBtn')"
@click="addShow=true,text=$t('pub.addBtn'),ed=false,isLookPlatformAccountPwd=true"> @click="addShow=true,text=$t('pub.addBtn'),ed=false,isLookPlatformAccountPwd=true">
...@@ -341,6 +350,12 @@ ...@@ -341,6 +350,12 @@
props:['pagesTitle'], props:['pagesTitle'],
data() { data() {
return { return {
QAccountStateList:[
{Name:'全部',Id:-1},
{Name:'待审核',Id:0},
{Name:'已审核',Id:1},
{Name:'已拒绝',Id:2},
],
isLookPlatformAccountPwd: false,//账户密码权限 isLookPlatformAccountPwd: false,//账户密码权限
isExamine: false, isExamine: false,
columns: [], columns: [],
...@@ -369,7 +384,8 @@ ...@@ -369,7 +384,8 @@
SettlementType: 0, SettlementType: 0,
HaveContract: -1, HaveContract: -1,
SigningLine: "", SigningLine: "",
Accountholder: "" Accountholder: "",
QAccountState: 0,//0-待审核,1-已审核,2-已拒绝 -1全部
}, },
LineId: [-1], LineId: [-1],
SettlementType: ['1'], SettlementType: ['1'],
...@@ -1069,7 +1085,7 @@ ...@@ -1069,7 +1085,7 @@
else{ else{
SigningLine.forEach(item => { SigningLine.forEach(item => {
this.LineId.push(Number(item)); this.LineId.push(Number(item));
}); });
} }
this.SettlementType = this.addMsg.SettlementType.split(',') this.SettlementType = this.addMsg.SettlementType.split(',')
...@@ -1423,6 +1439,7 @@ ...@@ -1423,6 +1439,7 @@
if(this.pagesTitle&&this.pagesTitle=='平台账户'){ if(this.pagesTitle&&this.pagesTitle=='平台账户'){
this.isExamine = true this.isExamine = true
}else{ }else{
this.msg.QAccountState = -1
this.isExamine = false this.isExamine = false
} }
this.getLineList() this.getLineList()
......
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