浏览代码

vip层级

liushengqiang 2 年之前
父节点
当前提交
47619fd1bb
共有 2 个文件被更改,包括 6 次插入0 次删除
  1. 2 0
      src/page-orchestra/custom-plugins/check-student-vip/index.tsx
  2. 4 0
      src/page-orchestra/theme.css

+ 2 - 0
src/page-orchestra/custom-plugins/check-student-vip/index.tsx

@@ -33,6 +33,7 @@ export default defineComponent({
 						title: "温馨提示",
 						message: "您的团练宝暂未激活,请激活后使用",
 						className: "noVip",
+						overlayClass: "noVipOverlay"
 					}).then(() => {
 						gotoMemberCenter();
 					});
@@ -44,6 +45,7 @@ export default defineComponent({
 						title: "温馨提示",
 						message: "您暂未开通团练宝,请开通后使用",
 						className: "noVip",
+						overlayClass: "noVipOverlay"
 					}).then(() => {
 						gotoMemberCenter();
 					});

+ 4 - 0
src/page-orchestra/theme.css

@@ -6,4 +6,8 @@
 
 .vf-StaveSection {
     display: none;
+}
+.noVip,
+.noVipOverlay{
+    z-index: 9999;
 }