榆山数据端小程序
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.

36 lines
583 B

// components/pop/pop.js
Component({
/**
*
*/
properties: {
popList:{
type:Array
}
},
/**
*
*/
data: {
visible: false,
},
/**
*
*/
methods: {
hide() {
this.setData({
visible: false,
})
},
onChange(e: any) {
console.log('onChange', e)
this.setData({
visible: e.detail.visible,
})
},
}
})