@@ -22,6 +22,7 @@ Page({
optionRow: -1, //列表选中项
isSy: true, //是否为私域直播
myShowModel: false, //自定义model
+ myShowModel2: false, // 真正申请中提示
},
/**
@@ -61,9 +62,8 @@ Page({
accountStatus: 2
})
} else {
- if (res.data == '私域直播已申请') return wx.showModal({
- title: "提示",
- content: "您的私域直播账号正在申请中"
+ if (res.data == '私域直播已申请') return this.setData({
+ myShowModel2: true
}
@@ -177,4 +177,7 @@
</view>
<!-- 自定义model -->
-<My_showModel isShow='{{myShowModel}}' title='提示' content="直播地址:+{{accountMsg.fliveurl_web}}" confirm='一键复制' cancel='知道了' bindcallBack='showModelCallBack' />
+<My_showModel isShow='{{myShowModel}}' title='提示' content="直播地址:+{{accountMsg.fliveurl_web}}" confirm='一键复制' cancel='知道了' bindcallBack='showModelCallBack' />
+
+<!-- 自定义model -->
+<My_showModel isShow='{{myShowModel2}}' title='提示' content="您的私域直播账号正在申请中" hideCancel />