Commit 9039337a authored by 黄媛媛's avatar 黄媛媛

update

parent 721b231e
......@@ -1126,7 +1126,7 @@
</div>
<div style="text-align:center">
<p style="font-size:26px;color:#111111;margin:40px 0">第{{tsNumber}}期投诉案例分享已经发布</p>
<a @click="CloseTs" target="_blank" href="http://we.oytour.com:8110/?/question/40" style="font-size:18px;color:#E95252;cursor:pointer;text-decoration:underline">点击查看</a>
<a @click="CloseTs" target="_blank" href="http://we.oytour.com:8110/?/question/42" style="font-size:18px;color:#E95252;cursor:pointer;text-decoration:underline">点击查看</a>
</div>
</div>
</div>
......@@ -1183,7 +1183,7 @@ export default {
articleId:0,
createEmpId:0,
tsState:false,
tsNumber:31,
tsNumber:33,
saleRnkShow: false,
dialogTitleNot: '',
outerVisibleNot: false,
......
......@@ -184,6 +184,16 @@
</el-select>
</span>
</li>
<li>
<span>
<em>类型</em>
<el-select filterable v-model='msg.BankType' >
<el-option :value="0" label="不限"></el-option>
<el-option :value="1" label="银行"></el-option>
<el-option :value="2" label="平台"></el-option>
</el-select>
</span>
</li>
<li>
<button class="hollowFixedBtn" @click="getList">{{$t('pub.searchBtn')}}</button>
<button class="hollowFixedBtn" @click="outerVisible=true">导入</button>
......@@ -197,6 +207,7 @@
<table class="po_content singeRowTable" style="border:1px solid #E6E6E6;" cellspacing="0" cellpadding="0" v-loading="loading">
<tr>
<th>编号</th>
<th>类型</th>
<th>别名</th>
<th>户名</th>
<th>开户行</th>
......@@ -212,6 +223,10 @@
</tr>
<tr v-for="(item,index) in DataList" :key="index">
<td>{{item.ID}}</td>
<td>
<span v-if="item.BankType==1">银行</span>
<span v-if="item.BankType==2">平台</span>
</td>
<td>{{item.Alias}}</td>
<td>{{item.AccountName}}</td>
<td>{{item.OpeningBank}}</td>
......@@ -299,6 +314,7 @@
ERefund:"",
AccountName:"",
Type:-1,
BankType:0,
},
productionDate:[],
DataList:[],
......
......@@ -166,6 +166,16 @@
</el-select>
</span>
</li> -->
<li>
<span>
<em>类型</em>
<el-select filterable v-model='msg.BankType' >
<el-option :value="0" label="不限"></el-option>
<el-option :value="1" label="银行"></el-option>
<el-option :value="2" label="平台"></el-option>
</el-select>
</span>
</li>
<li>
<button class="hollowFixedBtn" @click="getList">{{$t('pub.searchBtn')}}</button>
<!-- <button class="hollowFixedBtn" @click="outerVisible=true">导入</button> -->
......@@ -178,6 +188,7 @@
<table class="po_content singeRowTable" style="border:1px solid #E6E6E6;" cellspacing="0" cellpadding="0" v-loading="loading">
<tr>
<th>编号</th>
<th>类型</th>
<th>别名</th>
<th>户名</th>
<th>开户行</th>
......@@ -189,10 +200,17 @@
</tr>
<tr v-for="(item,index) in DataList" :key="index">
<td>{{item.ID}}</td>
<td>
<span v-if="item.BankType==1">银行</span>
<span v-if="item.BankType==2">平台</span>
</td>
<td>{{item.Alias}}</td>
<td>{{item.AccountName}}</td>
<td>{{item.OpeningBank}}</td>
<td>{{item.BackNo | PNumber}}</td>
<td>
<span v-if="item.BankType==1">{{item.BackNo | PNumber}}</span>
<span v-if="item.BankType==2">{{item.BackNo | PNumberNew}}</span>
</td>
<td>{{item.TradeDate}}</td>
<td>{{item.Remitter}}</td>
<td>{{item.Income | MoneyMu}}</td>
......@@ -245,6 +263,7 @@
ERefund:"",
AccountName:"",
Type:2,
BankType:0,
},
productionDate:[],
DataList:[],
......@@ -265,7 +284,11 @@
if(val){
return val.substr(0, 4) + "****" + val.substr(-4,4)
}
},
PNumberNew(val){
if(val){
return val.substr(0, 2) + "****" + val.substr(-2,2)
}
},
MoneyMu(val){
if(val){
......
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