This commit is contained in:
2024-08-22 12:53:28 +08:00
commit 1d65a849fd
360 changed files with 41757 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
var t = getApp();
Component({
options: {
multipleSlots: !0
},
properties: {
title: {
type: String,
value: "弹窗标题"
}
},
data: {
isShow: !1,
transparent: !0
},
methods: {
_onToggleShow: function(t) {
this.setData({
isShow: !this.data.isShow,
transparent: !1
});
},
_onTargetPage: function(a) {
var e = t.getTabBarLinks();
wx.switchTab({
url: "/" + e[a.detail.target.dataset.index]
});
}
}
});