12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- Page({
-
- data: {
- title:'',
- url:'',
- time:0
- },
-
- onLoad: function (options) {
- console.log(options)
- let time = options.time.split(':')
- this.setData({
- title: options.title,
- url: options.url,
- time: time[0]*60+time[1]
- })
- },
- pause: function (event){
- console.log(event)
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|