Commit 93a1bf36 authored by jyx's avatar jyx

修复VIP弹窗不显示解锁剧集看点

parent 83fca450
......@@ -32,7 +32,7 @@
看点,
</view>
</view>
<view v-if="point>0" style="width: 60rpx;"></view>
<view v-if="userBean.point>0" style="width: 60rpx;"></view>
<view style="display: flex;flex-direction: row;margin-top: 10rpx;">
<view style="font-size: 28rpx;color: #644238;margin-top: 12rpx;">当前账户余额:</view>
<view style="font-size: 42rpx;color: red;font-weight: 777;">{{userBean.point}}
......@@ -117,6 +117,7 @@
selectedIndex: 0,
agreeFlag: false,
userBean: {},
point: 0,
os: 'android',
titleText: '解锁剧集',
showClone: false
......@@ -212,6 +213,19 @@
}
});
common.methods.post({
url: '/vedio/getIndexList',
data: {
albumId: this.albumId
},
showLoading: false,
success: ({
data
}) => {
this.point = data.vedioMsg.point
}
});
common.methods.post({
url: '/user/baseMsg',
showLoading: false,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment