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.
40 lines
926 B
40 lines
926 B
1 month ago
|
Component({
|
||
|
data: {
|
||
|
modalVisible: false,
|
||
|
tipText: '云开发>云模板>模板中心',
|
||
|
},
|
||
|
properties: {
|
||
|
installModulePageTitleProps: String,
|
||
|
modalVisibleProps: Boolean,
|
||
|
tipTextProps: String,
|
||
|
installModuleNameProps: String,
|
||
|
},
|
||
|
observers: {
|
||
|
modalVisibleProps: function (modalVisibleProps) {
|
||
|
this.setData({
|
||
|
modalVisible: modalVisibleProps,
|
||
|
});
|
||
|
},
|
||
|
tipTextProps: function (tipTextProps) {
|
||
|
this.setData({
|
||
|
tipText: tipTextProps,
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
hideModal() {
|
||
|
if (this.data.modalVisible) {
|
||
|
this.setData({
|
||
|
modalVisible: false,
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
onViewDetail() {
|
||
|
this.hideModal();
|
||
|
wx.navigateTo({
|
||
|
url: `/pages/cloudbaseModuleInstallTips/index?moduleName=${this.properties.installModuleNameProps}&title=${this.properties.installModulePageTitleProps}`,
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
});
|