纸通宝SAAS仓库
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.
 

26 lines
610 B

// pages/setting/notification.js
Component({
options: {
addGlobalClass: true,
multipleSlots: true
},
data: {
show: false,
message: '自由灵活的api, 超详细的注释, 可让您快速自定义真正属于自己的下拉上拉组件'
},
methods: {
attention: function(message){
if(message){
this.setData({ show: true, message })
} else {
this.setData({ show: true })
}
},
onConfirm: function(){
wx.navigateTo({ url: '/pages/ztbvip/member/index' })
},
onClose: function(){
this.setData({ show: false })
}
}
})