Commit e3549f1d authored by 汪晓凯's avatar 汪晓凯

币种充提交易所切换币种未更新bugfix

parent 4e6f79d5
...@@ -11,8 +11,8 @@ module.exports = { ...@@ -11,8 +11,8 @@ module.exports = {
assetsPublicPath: '/', assetsPublicPath: '/',
proxyTable: { proxyTable: {
'/asset_monitor': { '/asset_monitor': {
// target: 'http://47.91.221.203:46656', //测试 // target: 'http://13.70.1.145:4567', //正式
target: 'http://172.16.100.22:46656', // 接口的域名 target: 'http://172.16.100.22:46656', // 测试
// secure: false, // 如果是https接口,需要配置这个参数 // secure: false, // 如果是https接口,需要配置这个参数
changeOrigin: true, // 如果接口跨域,需要进行这个参数配置 changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
pathRewrite: { pathRewrite: {
......
...@@ -141,8 +141,13 @@ ...@@ -141,8 +141,13 @@
this.getRechargeList(); this.getRechargeList();
}, },
watch: { watch: {
checkedWeb(val) {
checkedWeb() { this.checkedWeb = val;
for (let item of JSON.parse(sessionStorage.getItem('platInfo'))) {
if(item.platform === this.checkedWeb) {
this.checkedCurrencies = this.currencies = item.coin;
}
}
this.getRechargeList(); this.getRechargeList();
}, },
}, },
......
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