From 7a2b8e64a3113c52c004983b4aa7dcc35f9b6fa0 Mon Sep 17 00:00:00 2001
From: TianYu <332368756@qq.com>
Date: Wed, 24 May 2023 19:01:59 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E6=B5=B7=E6=8A=A5?=
=?UTF-8?q?=E6=96=87=E6=A1=88?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
yudao-ui-app/pages/users/user_spread_code/index.vue | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/yudao-ui-app/pages/users/user_spread_code/index.vue b/yudao-ui-app/pages/users/user_spread_code/index.vue
index a9374e9b9..22264c274 100644
--- a/yudao-ui-app/pages/users/user_spread_code/index.vue
+++ b/yudao-ui-app/pages/users/user_spread_code/index.vue
@@ -11,7 +11,7 @@
可享一年返回{{item.refundAmount}}元话费
- 三个活动可同时参与,每个手机号仅限一次,最高可反1920元话费!!!
+ 三个活动可同时参与,每个手机号仅限一次,最高可返{{total}}元话费!!!
{{tenantInfo.serviceMobile}}
@@ -55,7 +55,16 @@
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() {
if (!this.isLogin) {
toLogin()