31 lines
491 B
JavaScript
31 lines
491 B
JavaScript
// pages/show/ads/ads.js
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
isList:Boolean,
|
|
item:Object,
|
|
isrestofworld:Boolean,//是否为世界各地房源列表
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
clickAD(){
|
|
this.triggerEvent('clickAD', { id: this.properties.item.id })
|
|
},
|
|
closeAD(){
|
|
this.triggerEvent('closeAD', { id: this.properties.item.id })
|
|
}
|
|
}
|
|
})
|