Commit 2621048a authored by wxk's avatar wxk

okok

parent 6f6a2cf3
This diff is collapsed.
...@@ -61,6 +61,7 @@ ...@@ -61,6 +61,7 @@
axios.post(ApiConfig.GetPlatformInfo).then( res =>{ axios.post(ApiConfig.GetPlatformInfo).then( res =>{
if (res.data.code === 200) { if (res.data.code === 200) {
this.platInfo = res.data.data; this.platInfo = res.data.data;
sessionStorage.setItem('platInfo', JSON.stringify(this.platInfo))
// console.log(this.platInfo) // console.log(this.platInfo)
} }
}) })
......
...@@ -230,8 +230,8 @@ ...@@ -230,8 +230,8 @@
this.showPairFilter = true; this.showPairFilter = true;
this.showWebFilter = this.showCurrencyFilter = false; this.showWebFilter = this.showCurrencyFilter = false;
var index = +RoutePath; var index = +RoutePath;
this.pairs = this.platInfo[index].symbol; this.pairs = JSON.parse(sessionStorage.getItem('platInfo'))[index].symbol;
this.platform = this.platInfo[index].platform; this.platform = JSON.parse(sessionStorage.getItem('platInfo'))[index].platform;
StatusParams.platform = this.platform; StatusParams.platform = this.platform;
ListParams.platform = [this.platform]; ListParams.platform = [this.platform];
break; break;
...@@ -320,7 +320,7 @@ ...@@ -320,7 +320,7 @@
}, },
handleCheckedChange0(value) { handleCheckedChange0(value) {
let checkedCount = value.length; let checkedCount = value.length;
this.checkAll0 = checkedCount === this.webs.length; this.checkAll0 = checkedCount === this.currencies.length;
this.isIndeterminate0 = checkedCount > 0 && checkedCount < this.currencies.length; this.isIndeterminate0 = checkedCount > 0 && checkedCount < this.currencies.length;
var ListParams = { var ListParams = {
class: "robot", //账户级别 class: "robot", //账户级别
......
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