Commit e71a1143 authored by wxk's avatar wxk

fix

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