From 986d4798a9dad75b6ae617e52ea2918dfacd3708 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期五, 22 三月 2024 11:19:34 +0800 Subject: [PATCH] 图书详情、答题器bug修改 --- packageBookService/pages/bookServices/examination/questionList/index.js | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/packageBookService/pages/bookServices/examination/questionList/index.js b/packageBookService/pages/bookServices/examination/questionList/index.js index 49a40ba..7cd9c3e 100644 --- a/packageBookService/pages/bookServices/examination/questionList/index.js +++ b/packageBookService/pages/bookServices/examination/questionList/index.js @@ -15,6 +15,19 @@ currentIndex: { type: Number, value: 1 + }, + isNight: { + type: Boolean, + value: false + }, + answerType: { + type: String, + value: '' + } + }, + observers: { + 'questionList': function (newValue) { + console.log(newValue); } }, created() { @@ -25,6 +38,7 @@ */ data: { inputstyle: 'border: 2rpx solid rgba(220,220,220,1);border-radius: 12rpx;', + shortAnswer: 'font-size: 28rpx', placeholderstyle: "font-size:28rpx", current: 2, autoplay: true, @@ -41,7 +55,6 @@ methods: { // 鍒囨崲棰樼洰 changeSwiper(e) { - console.log(e); this.setData({ showIndex: e.detail.current }) -- Gitblit v1.9.1