// pages/rent/index.js import { TopicModel } from '../../../models/topic.js' let topicModel = new TopicModel() Component({ /** * 组件的属性列表 */ properties: { list:{ type:Array, value:[], }, nodes:String }, /** * 组件的初始数据 */ data: { img:'../../../images/', show:false }, ready:function(){ var flag = wx.getStorageSync('rent'); if(!flag){ this.setData({ show:true }) } }, /** * 组件的方法列表 */ methods: { check:function(e){ var id = e.currentTarget.id; wx.navigateTo({ url: '/pages/topics/rent/room/index?id=' + id + '&title=' + e.currentTarget.dataset.title }) }, ok:function(){ this.setData({ show:false }) }, never:function(){ wx.setStorageSync('rent', '1') this.setData({ show:false }) } } })