Commit f2fa3c99 authored by youjie's avatar youjie

no message

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