交易规则list

This commit is contained in:
2020-08-16 15:16:28 +08:00
parent ff43780f12
commit bc07aeb462
4 changed files with 13 additions and 5 deletions

View File

@ -38,7 +38,12 @@ const app = new Vue({
var localData = localStorage.getItem("LOCAL_RULE");
this.loadData();
if(localData){
this.noteData = JSON.parse(localData);
try {
JSON.parse(localData);
this.ruleData = JSON.parse(localData);
} catch (e) {
}
}
}
})