fix: 调整海报文案
parent
4aed73b1d5
commit
7a2b8e64a3
|
@ -11,7 +11,7 @@
|
||||||
<view class="text">可享一年返回<span>{{item.refundAmount}}元</span>话费</view>
|
<view class="text">可享一年返回<span>{{item.refundAmount}}元</span>话费</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="tips">
|
<view class="tips">
|
||||||
三个活动可同时参与,每个手机号仅限一次,最高可反<span>1920元</span>话费!!!
|
三个活动可同时参与,每个手机号仅限一次,最高可返<span>{{total}}元</span>话费!!!
|
||||||
</view>
|
</view>
|
||||||
<view class="service-phone">{{tenantInfo.serviceMobile}}</view>
|
<view class="service-phone">{{tenantInfo.serviceMobile}}</view>
|
||||||
<view class="tenant-info-wrap">
|
<view class="tenant-info-wrap">
|
||||||
|
@ -55,7 +55,16 @@
|
||||||
isHideBtn: false
|
isHideBtn: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: mapGetters(['isLogin', 'uid', 'userInfo', 'tenantId', 'tenantInfo']),
|
computed:{
|
||||||
|
...mapGetters(['isLogin', 'uid', 'userInfo', 'tenantId', 'tenantInfo']),
|
||||||
|
total: function(){
|
||||||
|
let _total = 0
|
||||||
|
for (let active of this.activityList) {
|
||||||
|
_total+= parseInt(active.refundAmount)
|
||||||
|
}
|
||||||
|
return _total
|
||||||
|
},
|
||||||
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
if (!this.isLogin) {
|
if (!this.isLogin) {
|
||||||
toLogin()
|
toLogin()
|
||||||
|
|
Loading…
Reference in New Issue