锦水居民端小程序
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.
 

43 lines
771 B

Component({
data: {
visible: false,
notSatisify: "../../../../images/ic_bumanyi@2x.png",
normalSatisify: "../../../../images/ic_jibenmanyi@2x.png",
verySatisify: "../../../../images/ic_feichangmanyi@2x.png",
},
properties: {
evaluationCallbackVisible: {
type: Boolean,
value: false,
observer () {
this.setData({
visible: !this.data.visible
})
}
},
satisifyType: {
type: String,
value: ""
}
},
lifetimes: {
attached () {
},
detached () {
}
},
methods: {
backDiscussion () {
wx.navigateTo({
url: "/pages/discussion/discussion"
})
},
closeDialog () {
this.setData({
visible: false
})
}
}
})