From 4449e266aec1c50ab4ada947b5d6d3ac4b56691b Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 7 Sep 2022 14:18:30 +0800 Subject: [PATCH] BUG 31015 --- src/apps/AppMyGrid/AppMyGrid.vue | 2 +- src/apps/AppMyGrid/signResult.vue | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/apps/AppMyGrid/AppMyGrid.vue b/src/apps/AppMyGrid/AppMyGrid.vue index 5102ef8b..ec555517 100644 --- a/src/apps/AppMyGrid/AppMyGrid.vue +++ b/src/apps/AppMyGrid/AppMyGrid.vue @@ -36,7 +36,7 @@ export default { computed: { ...mapState(['user']), isGridMember: v => v.user.girdCheckType > 0, - signIn: v => v.user.gridExtra.isSign == 1, + signIn: v => v.user.gridExtra?.isSign == 1, signBtn: v => v.signIn ? '已签到' : '签到' }, data() { diff --git a/src/apps/AppMyGrid/signResult.vue b/src/apps/AppMyGrid/signResult.vue index 10f689df..1528f3f0 100644 --- a/src/apps/AppMyGrid/signResult.vue +++ b/src/apps/AppMyGrid/signResult.vue @@ -47,6 +47,9 @@ export default { .successImg { background-image: url("./assets/qiandaochenggong.png"); + background-repeat: no-repeat; + background-position: center; + background-size: 192px 192px; width: 192px; height: 192px; }