Commit e71a1143 authored by wxk's avatar wxk

fix

parent 58346fe7
...@@ -323,7 +323,7 @@ ...@@ -323,7 +323,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="充提后数量"> label="充提后数量">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.afterRecharge }}</span> <span>{{ scope.row.afterRecharge }}</span>
</template> </template>
......
<template> <template>
<div> <div>
<div>
<span>找币银行账户: </span>
</div>
</div> </div>
</template> </template>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<nav-left :platInfo="platInfo"></nav-left> <nav-left :platInfo="platInfo"></nav-left>
</div> </div>
<div class="main"> <div class="main">
<router-view :platInfo="platInfo" :robotBankList="robotBankList"></router-view> <router-view :platInfo="platInfo"></router-view>
</div> </div>
</div> </div>
</div> </div>
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
data() { data() {
return { return {
platInfo: [], platInfo: [],
robotBankList: '',
} }
}, },
components: { components: {
...@@ -50,9 +49,12 @@ ...@@ -50,9 +49,12 @@
getRobotBank() { getRobotBank() {
axios.post(ApiConfig.GetRobotBank,{class : "bank"}).then( res => { axios.post(ApiConfig.GetRobotBank,{class : "bank"}).then( res => {
if (res.data.code === 200) { if (res.data.code === 200) {
// console.log(res.data.data);
sessionStorage.setItem('robotBankList',JSON.stringify(res.data.data)) sessionStorage.setItem('robotBankList',JSON.stringify(res.data.data))
this.robotBankList = res.data.data }
});
axios.post(ApiConfig.GetRobotBank,{class : "admin"}).then( res => {
if (res.data.code === 200) {
sessionStorage.setItem('robotAdminList',JSON.stringify(res.data.data))
} }
}) })
}, },
......
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