This commit is contained in:
parent
8a407aa5c3
commit
845ad5b693
|
@ -17,16 +17,17 @@
|
|||
<view class="coupon_popups" v-if="popShow">
|
||||
<view class="bg2"></view>
|
||||
<view class="con" >
|
||||
<view class="content">
|
||||
<image :src="drawInfo.img" mode=""></image>
|
||||
<view class="contents">
|
||||
<image src="@/static/images/jf.png" style="width: 48px;height:48px;" mode=""></image>
|
||||
<view class="text-black">恭喜您获得</view>
|
||||
<view class="text-red">{{drawInfo.text}}积分</view>
|
||||
<view class="btn" @click="confirm">开心收下</view>
|
||||
<view class="btn" @click="confirm" v-if="">开心收下</view>
|
||||
<view class="btn" @click="goBlind">继续开盲盒</view>
|
||||
</view>
|
||||
<view class='iconfont icon-guanbi3' @click="popShow = false"></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<blindBox v-if="blindShow"></blindBox>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -43,6 +44,7 @@
|
|||
wheel:0,
|
||||
popShow:false,
|
||||
gifShow:false,
|
||||
blindShow:false,
|
||||
integral:'',
|
||||
list:[],
|
||||
drawInfo:{
|
||||
|
@ -117,7 +119,7 @@
|
|||
background-repeat: no-repeat;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
.content{
|
||||
.contents{
|
||||
width: 500rpx;
|
||||
height: 520rpx;
|
||||
border-radius: 20rpx;
|
||||
|
@ -128,11 +130,11 @@
|
|||
justify-content: center;
|
||||
align-items: center;
|
||||
grid-gap: 40rpx;
|
||||
image{
|
||||
width: 300rpx;
|
||||
height: 200rpx;
|
||||
margin-top: 50rpx;
|
||||
}
|
||||
// image{
|
||||
// width: 860rpx;
|
||||
// height: 200rpx;
|
||||
// margin-top: 50rpx;
|
||||
// }
|
||||
.text-black{
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
|
|
|
@ -457,7 +457,7 @@
|
|||
}
|
||||
.merchantsSettled {
|
||||
// background-image: linear-gradient(var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
|
||||
height: 125vh;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
grid-gap: 32rpx;
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<treasureBox v-if="treasureShow" @closeTreasureBox="closeBox"></treasureBox>
|
||||
<blindBox v-if="blindShow"></blindBox>
|
||||
|
||||
<view class='signTip acea-row row-center-wrapper' :class='active==true?"on":""'>
|
||||
<view class='signTipLight loadingpic'></view>
|
||||
<view class='signTipCon' :style="'background-image: url('+domain+'/static/diy/signSuccess'+keyColor+'.png)'">
|
||||
|
@ -73,9 +73,9 @@
|
|||
import { HTTP_REQUEST_URL } from '@/config/app';
|
||||
import { toLogin } from '@/libs/login.js';
|
||||
import treasureBox from '@/components/treasureBox/index.vue';
|
||||
import blindBox from '@/components/blindBox/blindBox.vue';
|
||||
|
||||
export default {
|
||||
components: {treasureBox,blindBox},
|
||||
components: {treasureBox},
|
||||
data() {
|
||||
return {
|
||||
domain: HTTP_REQUEST_URL,
|
||||
|
@ -91,7 +91,7 @@
|
|||
is_sign: false, //是否签到
|
||||
disabled: false,
|
||||
treasureShow:false,
|
||||
blindShow:false,
|
||||
|
||||
};
|
||||
},
|
||||
computed: mapGetters(['isLogin','viewColor','keyColor']),
|
||||
|
@ -131,11 +131,11 @@
|
|||
getUserInfo:function(){
|
||||
let that=this;
|
||||
getSignUser().then(res=>{
|
||||
res.data.sign_num=6;
|
||||
// res.data.sign_num=6;
|
||||
res.data.integral = parseInt(res.data.integral);
|
||||
let sum_sgin_day = res.data.count;
|
||||
that.$set(that,'signConfig',res.data.title);
|
||||
that.$set(that,'is_sign',res.data.is_sign);
|
||||
// that.$set(that,'is_sign',res.data.is_sign);
|
||||
that.$set(that,'userInfo',res.data.userInfo);
|
||||
that.signCount = that.PrefixInteger(sum_sgin_day, 4);
|
||||
that.sign_index = res.data.sign_num;
|
||||
|
|
Loading…
Reference in New Issue