Commit 4ffcdbda authored by jyx's avatar jyx

去除动画

parent ccc79a3d
<template>
<view>
<uni-popup :type="popType" ref="coinPop" :maskClick="false" :isMaskClick="false">
<uni-popup :type="popType" :animation="showAnim" ref="coinPop" :maskClick="false" :isMaskClick="false">
<view class="body" style="margin-top: 500rpx;border-radius: 10rpx;width: 100%;height: 100%;">
<scroll-view scroll-y>
<view style="display: flex;flex-direction: column;align-items: flex-end;">
......@@ -100,12 +100,13 @@
showClone: false,
isFirstPayFlag: false,
popType: 'bottom',
showAnim: true
};
},
methods: {
showPop(type) {
this.popType = type
this.$refs.coinPop.open('bottom');
this.$refs.coinPop.open();
},
// 支付完成回调
paySuccess(largeType) {
......@@ -115,8 +116,6 @@
handleShow() {
let that = this;
that.post({
url: '/vip/getVipProducts/point',
data: {
......@@ -128,8 +127,8 @@
}) => {
that.isFirstPayFlag = data.forFirst;
if (data.list != null && data.list.length > 0) {
that.vipList=[];
that.firstPayList=[];
that.vipList = [];
that.firstPayList = [];
if (that.isFirstPayFlag != null && that.isFirstPayFlag) {
// 符合首充
var tempFirstPayFlag = false;
......@@ -146,6 +145,8 @@
}
that.firstCash = data.list[0].firstPayPrice;
that.title = that.firstCash + ' 元自动解锁后续剧集';
this.showAnim = false
that.showPop('top')
that.handlePay()
} else {
......@@ -232,7 +233,7 @@
setTimeout(() => {
that.isFirstPayFlag = false
that.showPop('bottom')
}, 500);
}, 100);
} else {
// message.notify(errMsg);
}
......
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