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.
|
|
|
// 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
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|