You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
508 B
30 lines
508 B
// pages/message/index.js
|
|
const util = require('../../../utils/util')
|
|
const app = getApp()
|
|
|
|
Component({
|
|
options: {
|
|
addGlobalClass: true,
|
|
multipleSlots: true
|
|
},
|
|
properties: {
|
|
height: { type: Number, value: 0 },
|
|
item: { type: Object, value: null }
|
|
},
|
|
data: {
|
|
orderList: []
|
|
},
|
|
methods: {
|
|
onRestart: function () {
|
|
console.log('attention....start')
|
|
if(!this.firstShow){
|
|
|
|
}
|
|
this.firstShow = true
|
|
},
|
|
fetchList: function(){
|
|
|
|
}
|
|
}
|
|
|
|
})
|