交易规则调优

This commit is contained in:
2019-09-09 20:31:35 +08:00
parent 1ee891ea11
commit ff14d90298
4 changed files with 92 additions and 7 deletions

View File

@ -9,7 +9,8 @@ const app = new Vue({
data() {
return {
noteData: [
]
],
counter: 0
}
},
created() {
@ -36,7 +37,14 @@ const app = new Vue({
},
create(){
// some jump
mui.toast("跳转")
if(this.counter < 10){
mui.toast("跳转")
this.counter ++ ;
}else{
mui.toast("开发中")
this.counter = 0;
JZL.openWindow('trade_rule.html', 'trade_rule.html')
}
}
},
mounted() {