交易规则调优

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() {

View File

@ -21,8 +21,8 @@ const app = new Vue({
mounted() {
// some ajax
this.ruleData = [
{id: 1, name: '这是一个名字', announced_at: "2019-07-06 18:00:01"},
{id: 2, name: '这是二个名字', announced_at: "2019-07-06 19:00:01"},
{id: 1, name: '这个是个开发中的页面呢', announced_at: "2019-09-09 18:09:01"},
{id: 2, name: '待我来继续开发呢', announced_at: "2019-09-09 19:09:01"},
]
}
})