Merge pull request '产品无权限访问时,跳转到升级VIP' (#73) from dengjie into dev

Reviewed-on: http://git.hchyun.com/feashow/pupil/pulls/73
This commit is contained in:
odjbin
2023-01-31 14:50:44 +00:00
3 changed files with 35 additions and 8 deletions

View File

@@ -60,6 +60,10 @@
<login @success="reOnLoad()" @fail="failToLoad()"></login>
</u-overlay>
</view>
<u-modal :show="showM" :content='content' closeOnClickOverlay="false" showCancelButton="true"
confirmText="升级VIP" @confirm="confirm" confirmColor="#0EBB5B">
<rich-text :nodes="content"></rich-text>
</u-modal>
</view>
</view>
</template>
@@ -80,7 +84,9 @@
tagsArray: [],
showHeart: false,
detailList: [],
isLoad: true
isLoad: true,
showM: false,
content: '您暂无权限访问请升级VIP访问'
}
},
onLoad(option) {
@@ -105,7 +111,8 @@
this.isThumb = true
}
if (res.data.code == 0) {
this.$toast.warn('没有权限访问')
// this.$toast.warn('您暂无权限访问请升级VIP访问')
this.showM = true
}
if (res.data.data) {
let detail = res.data.data
@@ -162,6 +169,11 @@
},
failToLoad() {
this.$toast.warn('登录失败请重试')
},
confirm() {
uni.navigateTo({
url: '../../../packageMy/memberCenter/memberCenter?ask=' + 1
})
}
}
}