修改bug
This commit is contained in:
@@ -111,7 +111,7 @@ import { getManagePhoneData } from '../api/apiSub.js'
|
||||
.page {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 0px 40rpx;
|
||||
padding: 20px 40rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,10 @@
|
||||
<view class="contentStyle">
|
||||
<scroll-view class="page" scroll-y="true">
|
||||
<view class="survey-title">{{ detailItem.title || '' }}</view>
|
||||
<view class="survey-desc">{{ detailItem.description || '' }}</view>
|
||||
<view class="survey-desc">
|
||||
为了给您提供更好的服务,希望您能抽出几分钟时间,将最近的感受和建议告诉我们,
|
||||
我们十分重视每位用户的宝贵意见,期待您的参与!
|
||||
</view>
|
||||
|
||||
<view v-if="questionList.length === 0" class="empty-tip">
|
||||
<text>暂无问卷内容</text>
|
||||
|
||||
@@ -11,7 +11,11 @@
|
||||
<view class="survey-title">{{ detailItem.title || '' }}</view>
|
||||
|
||||
<!-- 问卷说明 -->
|
||||
<view class="survey-desc">{{ detailItem.description || '' }}</view>
|
||||
<!-- <view class="survey-desc">{{ detailItem.description || '' }}</view> -->
|
||||
<view class="survey-desc">
|
||||
为了给您提供更好的服务,希望您能抽出几分钟时间,将最近的感受和建议告诉我们,
|
||||
我们十分重视每位用户的宝贵意见,期待您的参与!
|
||||
</view>
|
||||
|
||||
<!-- 空状态 -->
|
||||
<view v-if="questionList.length === 0" class="empty-tip">
|
||||
@@ -168,7 +172,12 @@ onShow(() => {
|
||||
})
|
||||
|
||||
const selectRadio = (cid, label) => {
|
||||
answers.value[cid] = label
|
||||
// 再次点击已选中的选项时取消选择
|
||||
if (answers.value[cid] === label) {
|
||||
delete answers.value[cid]
|
||||
} else {
|
||||
answers.value[cid] = label
|
||||
}
|
||||
}
|
||||
|
||||
const isChecked = (cid, label) => {
|
||||
|
||||
Reference in New Issue
Block a user