纸通宝小程序
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
516 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: [12, 14]
},
methods: {
onRestart: function () {
console.log('information....start')
if(!this.firstShow){
}
this.firstShow = true
},
fetchList: function(){
}
}
})