From 20a7c555120d317a7313ae66893c29b52ec83913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BB=93=E5=8F=91=E5=8F=97=E9=95=BF=E7=94=9F?= Date: Sun, 12 Dec 2021 22:11:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=83=E7=81=B5=E9=97=AE=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 4 ++++ src/views/Introduce.vue | 33 ++++++++++++++++++++++----------- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/src/App.vue b/src/App.vue index 5d994dc..c448310 100644 --- a/src/App.vue +++ b/src/App.vue @@ -29,6 +29,10 @@ body { color: #FFF; background-color: #1aac19; } + &.btn-error { + color: #FFF; + background-color: #e64240; + } } } .text-wrapper { diff --git a/src/views/Introduce.vue b/src/views/Introduce.vue index 589f820..478925d 100644 --- a/src/views/Introduce.vue +++ b/src/views/Introduce.vue @@ -9,14 +9,20 @@
-
+
-
+
+ + + +
+
{{ questions[questionIndex] }}
+
{{ showIntroduce ? '收起介绍' : '查看介绍' }}
-
+

彩虹卡全部都是智慧和肯定的话语。

彩虹卡是你人生的灵性陪伴者。它们提供你思想、 希望、安慰、确定和爱的想法。

这些卡片由七种不同颜色的卡片所组成,每种颜色卡片有35个不同的想法。

@@ -46,7 +52,8 @@ export default { '给你带来什么样的新思考?', '你将采取怎样的行动?' ], - currentCard: null + questionIndex: -1, // 展示的心灵问句 + currentCard: null // 当前卡片信息 } }, async created() { @@ -61,6 +68,13 @@ export default { } }) this.isShowCard = true + }, + nextQuestion() { + if(this.questionIndex === this.questions.length - 1) { + this.questionIndex = -1 + } else { + this.questionIndex++ + } } } } @@ -73,7 +87,6 @@ export default { .tip { color: #858585; font-size: 14px; - margin-top: 70px; } .introduce { padding: 20px; @@ -99,17 +112,15 @@ export default { > .card-content { position: absolute; width: 100%; - padding: 0 5px; + padding: 0 10px; top: 50%; transform: translateY(-50%); box-sizing: border-box; text-shadow: 1px 1px #000; - text-align: center; + line-height: 22px; } } -.btn-wrapper { - position: absolute; - top: 154px; - width: 100%; +.question { + margin-top: 50px; } \ No newline at end of file