From 46ba72a11984ff001095c8a0744953432b82e8c8 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Wed, 30 Nov 2022 11:22:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=B3=E8=AF=B7=E7=A7=AF=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pidu/AppPointsApply/AppPointsApply.vue | 22 +++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/project/pidu/AppPointsApply/AppPointsApply.vue b/src/project/pidu/AppPointsApply/AppPointsApply.vue index c46c3383..03509eac 100644 --- a/src/project/pidu/AppPointsApply/AppPointsApply.vue +++ b/src/project/pidu/AppPointsApply/AppPointsApply.vue @@ -8,7 +8,7 @@
{{ item.applyItem }}
-
{{ item.status }}
+
{{ $dict.getLabel('integralApplyStatus',item.status) }}
积分+{{ item.applyIntegral }}
@@ -29,7 +29,9 @@ export default { } }, onShow() { - this.getPointsList() + this.$dict.load('integralApplyStatus').then(() => { + this.getPointsList() + }) }, methods: { toAdd() { @@ -90,12 +92,24 @@ export default { .top_status { padding: 6px 16px; box-sizing: border-box; - background: #F5FCF5; - border: 1px solid #E2F6E1; border-radius: 8px; text-align: right; width: calc(100% - 450px); } + .status0 { + background: #FFEDE2; + color: #FF883C; + } + + .status1 { + background: #E2F6E1; + color: #3BBC37; + } + + .status2 { + background: #FAE2E2; + color: #E23C3C; + } } .bottom { display: flex;