|
|
@@ -106,6 +106,7 @@ export default {
|
|
|
this.loadModules().then(() => {
|
|
|
uni.hideLoading();
|
|
|
});
|
|
|
+ this.showDialog();
|
|
|
},
|
|
|
// onShow() {
|
|
|
// // this.getSingInfo();
|
|
|
@@ -165,6 +166,22 @@ export default {
|
|
|
this.BarHeight = this.statusBarHeight + this.titleBarHeight;
|
|
|
},
|
|
|
methods: {
|
|
|
+ showDialog() {
|
|
|
+ if (this.userInfo && this.userInfo.type === "1") return;
|
|
|
+ uni.showModal({
|
|
|
+ title: "欢迎来到云果国潮",
|
|
|
+ content: "您当前还不是VIP,立即加入享受多种优惠活动!",
|
|
|
+ cancelText: "暂不开通",
|
|
|
+ confirmText: "立即开通",
|
|
|
+ success: function (res) {
|
|
|
+ if (res.confirm) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: "/pages/vip/vip",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ });
|
|
|
+ },
|
|
|
async loadModules() {
|
|
|
try {
|
|
|
const data = await homeModules();
|