123456789101112131415161718192021222324252627282930 |
- // components/house-item/house-item.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- store: Object
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- // toDetail () {
- // getApp().autoSubcrebe && getApp().autoSubcrebe()
- // getApp().globalData.lastHouse = this.properties.house
- // console.log(this.properties.house)
- // wx.navigateTo({
- // url: `/pages/detail/detail?house_id=${this.properties.house.house_id}`
- // })
- // }
- }
- })
|