// pages/message/index.js const util = require('../../../utils/util') const app = getApp() Component({ options: { addGlobalClass: true, multipleSlots: true }, properties: { height: { type: Number, value: 0 } }, data: { orderList: [12, 14] }, methods: { onRestart: function () { if(!this.firstShow){ this.fetchList() } this.firstShow = true }, fetchList: function(){ } } })