|
|
@@ -6,7 +6,9 @@
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
+ <view class="homeBtn" @click="home">
|
|
|
+ <image src="/static/home.png" style="width: 40upx;height: 40upx;" />
|
|
|
+ </view>
|
|
|
<view class="head">
|
|
|
<view class="title">为{{boostDetail.nickName}}打榜</view>
|
|
|
<view class="flex justify-between align-center padding-lr">
|
|
|
@@ -44,7 +46,7 @@
|
|
|
<view class="title">打call助力</view>
|
|
|
</view>
|
|
|
<view class="bg-white padding-sm">
|
|
|
- <view class="flex justify-around">
|
|
|
+ <view class="flex justify-around" style="flex-wrap: wrap;">
|
|
|
<block v-for="(item,index) in boostDetail.presentList" :key="index">
|
|
|
<view class="text-center padding-top-xs" :class="current == index ? 'boder':''" @click="change(item.id,index)">
|
|
|
<image :src="item.icon" style="width: 80upx;height: 80upx;"></image>
|
|
|
@@ -58,7 +60,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="bg-white padding-sm">
|
|
|
- <view class="text-sm text-gray">所有的打call助力均会由本平台发起公益捐赠</view>
|
|
|
+ <view class="text-sm text-gray">打call助力的部分收入由平台发起定向公益捐赠</view>
|
|
|
</view>
|
|
|
<view style="height: 100upx;"></view>
|
|
|
<view class="footer-fixed bg-white padding-sm flex justify-between align-center">
|
|
|
@@ -93,11 +95,11 @@
|
|
|
<u-popup v-model="dialogShow" mode="center" width="500rpx" height="600rpx" border-radius="30">
|
|
|
<view class="bg-img text-center" style="background-image: url('https://upload-file-data.obs.cn-south-1.myhuaweicloud.com/e914f556be414767aca011a30961560a-dialogBgImg.png');height: 600rpx;">
|
|
|
<view style="height: 120upx;"></view>
|
|
|
- <u-avatar src="/static/avatar.png" size="160"></u-avatar>
|
|
|
+ <u-avatar :src="boostDetail.avatar" size="160"></u-avatar>
|
|
|
<view class="margin-top" style="font-size: 24upx;font-family: PingFang SC;font-weight: bold;color: #323035;">你将为{{boostDetail.nickName}}增加{{+boostDetail.presentList[current].hotValue * count}}热力值</view>
|
|
|
<view class="text-gray text-sm" v-if="presentDetail.isGiveMedal == 1">公益勋章X {{count}}</view>
|
|
|
<view class="text-gray text-sm" v-if="presentDetail.isSendGoods == 1">{{presentDetail.goodsName}} X {{count}}</view>
|
|
|
- <view class="text-gray text-sm">可得{{+boostDetail.presentList[current].pointsValue * count}}积分,可用于国信商城兑换</view>
|
|
|
+ <view class="text-gray text-sm">可得{{+boostDetail.presentList[current].pointsValue * count}}积分,用于积分商城兑换</view>
|
|
|
<view class="padding">
|
|
|
<u-button class="custom-style" shape="circle" @click="pay">去支付</u-button>
|
|
|
</view>
|
|
|
@@ -106,9 +108,9 @@
|
|
|
<u-popup v-model="successShow" mode="center" width="500rpx" height="600rpx" border-radius="30">
|
|
|
<view class="bg-img text-center" style="background-image: url('https://upload-file-data.obs.cn-south-1.myhuaweicloud.com/e914f556be414767aca011a30961560a-dialogBgImg.png');height: 600rpx;">
|
|
|
<view style="height: 120upx;"></view>
|
|
|
- <u-avatar src="/static/avatar.png" size="160"></u-avatar>
|
|
|
+ <u-avatar :src="boostDetail.avatar" size="160"></u-avatar>
|
|
|
<view class="margin-top" style="font-size: 30upx;font-family: PingFang SC;font-weight: bold;color: #323035;">恭喜您已为{{boostDetail.nickName}}注入{{+boostDetail.presentList[current].hotValue * count}}热力值</view>
|
|
|
- <view class="margin-tb-xs">{{+boostDetail.presentList[current].pointsValue * count}}已到账,可用于商城兑换消费</view>
|
|
|
+ <view class="margin-tb-xs">{{+boostDetail.presentList[current].pointsValue * count}}已到账,用于积分商城兑换</view>
|
|
|
<view class="text-gray text-sm">购买成功!快去我的订单兑换或捐赠</view>
|
|
|
<view class="padding">
|
|
|
<u-button class="custom-style" shape="circle" @click="successShow = false">确定</u-button>
|
|
|
@@ -160,6 +162,11 @@
|
|
|
this.authorization();
|
|
|
},
|
|
|
methods: {
|
|
|
+ home() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: "/pages/activityList/home/home?activityId=" + this.activityId,
|
|
|
+ })
|
|
|
+ },
|
|
|
//打榜助力
|
|
|
userBoost() {
|
|
|
if (this.$u.test.isEmpty(this.senderId)) {
|