问卷调查修改

This commit is contained in:
zhouyanli
2026-08-20 17:43:35 +08:00
parent 28ca715710
commit a078513221
3 changed files with 17 additions and 7 deletions

View File

@@ -123,7 +123,7 @@ page {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100vh; height: 100vh;
background-color: #F9F9F9; background: linear-gradient(to left bottom, #e2efff 0%, #f9f9f9 50%);
} }
.page { .page {

View File

@@ -1,8 +1,8 @@
<template> <template>
<view class="contentStyle"> <view class="contentStyle">
<view class="status-bar"></view> <!-- <view class="status-bar"></view>
<uni-nav-bar title="问卷详情" backgroundColor="transparent" :border="false" left-icon="left" @clickLeft="goBack"> <uni-nav-bar title="问卷详情" backgroundColor="transparent" :border="false" left-icon="left" @clickLeft="goBack">
</uni-nav-bar> </uni-nav-bar> -->
<!-- 表单区域 --> <!-- 表单区域 -->
<scroll-view class="page" scroll-y> <scroll-view class="page" scroll-y>
@@ -251,7 +251,7 @@ page {
.page { .page {
flex: 1; flex: 1;
overflow-y: auto; overflow-y: auto;
padding: 0px 40rpx; padding: 30rpx 40rpx 200rpx;
box-sizing: border-box; box-sizing: border-box;
} }
@@ -275,6 +275,9 @@ page {
margin-bottom: 20rpx; margin-bottom: 20rpx;
text-align: justify; text-align: justify;
white-space: pre-line; white-space: pre-line;
word-break: break-all;
word-wrap: break-word;
overflow-wrap: break-word;
} }
.empty-tip { .empty-tip {
@@ -422,7 +425,15 @@ page {
/* 提交按钮 */ /* 提交按钮 */
.submit-btn-wrap { .submit-btn-wrap {
padding: 20rpx 30rpx 40rpx; position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 20rpx 30rpx;
padding-bottom: calc(20rpx + constant(safe-area-inset-bottom));
padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
background: #ffffff;
box-shadow: 0 -4rpx 16rpx rgba(0, 0, 0, 0.06);
.submit-btn { .submit-btn {
width: 100%; width: 100%;

View File

@@ -483,8 +483,7 @@
{ {
"path": "questionnaireFillout", "path": "questionnaireFillout",
"style": { "style": {
"navigationBarTitleText": "", "navigationBarTitleText": "问卷详情"
"navigationStyle": "custom"
} }
}, },
{ {