Commit aaa76a65 by fengzhaoyu

debugger

parent 4eb6fc77
......@@ -2,6 +2,7 @@ var app = getApp();
import $http from './../../API/http'
import create from 'dd-store'
import exampleStore from '/stores/exampleStore'
let maxClickCount = 5
create.Page({
store: exampleStore,
useAll: true,
......@@ -167,5 +168,15 @@ create.Page({
},
toPayment(){
},
onTitleClick() {
maxClickCount--;
if (maxClickCount == 0) {
dd.alert({
content: '0.0.19'
});
maxClickCount = 5;
}
}
});
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