3.13下班提交
This commit is contained in:
parent
ca69dfbe4b
commit
761a8fdaa4
@ -229,7 +229,12 @@ onMounted(() => {
|
|||||||
|
|
||||||
/* 主要内容区域 */
|
/* 主要内容区域 */
|
||||||
.main-content {
|
.main-content {
|
||||||
margin-top: calc(var(--status-bar-height) + 44px);
|
position: fixed;
|
||||||
|
top: calc(var(--status-bar-height) + 44px);
|
||||||
|
left: 0;
|
||||||
|
right:0;
|
||||||
|
bottom: 0rpx;
|
||||||
|
overflow-y: scroll;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -314,7 +319,7 @@ onMounted(() => {
|
|||||||
height: 200rpx;
|
height: 200rpx;
|
||||||
border-radius: 12rpx;
|
border-radius: 12rpx;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.report-image {
|
.report-image {
|
||||||
|
|||||||
@ -127,9 +127,15 @@
|
|||||||
|
|
||||||
/* 反馈输入区域 */
|
/* 反馈输入区域 */
|
||||||
.feedback-input-container {
|
.feedback-input-container {
|
||||||
margin-top: calc(var(--status-bar-height) + 44px);
|
top: calc(var(--status-bar-height) + 44px);
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 160rpx;
|
||||||
|
overflow-y: scroll;
|
||||||
|
z-index: 1;
|
||||||
padding: 30rpx;
|
padding: 30rpx;
|
||||||
flex: 1;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-area {
|
.input-area {
|
||||||
|
|||||||
@ -16,7 +16,8 @@
|
|||||||
</uni-nav-bar>
|
</uni-nav-bar>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 已选中的分组 -->
|
<view class="content-box">
|
||||||
|
<!-- 已选中的分组 -->
|
||||||
<view class="selected-section">
|
<view class="selected-section">
|
||||||
<view class="tag-list">
|
<view class="tag-list">
|
||||||
<view
|
<view
|
||||||
@ -44,6 +45,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
<!-- 底部添加按钮 -->
|
<!-- 底部添加按钮 -->
|
||||||
<view class="bottom-bar">
|
<view class="bottom-bar">
|
||||||
@ -166,8 +168,17 @@ const saveGroups = () => {
|
|||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
|
.content-box{
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
top: calc(var(--status-bar-height) + 44px);
|
||||||
|
bottom: 140rpx;
|
||||||
|
overflow-y: scroll;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
.selected-section {
|
.selected-section {
|
||||||
margin-top: calc(var(--status-bar-height) + 44px);
|
|
||||||
min-height: 300rpx;
|
min-height: 300rpx;
|
||||||
padding: 30rpx;
|
padding: 30rpx;
|
||||||
border-bottom: 20rpx solid #f0f0f0;
|
border-bottom: 20rpx solid #f0f0f0;
|
||||||
@ -238,7 +249,7 @@ const saveGroups = () => {
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-top: 1rpx solid #f0f0f0;
|
border-top: 1rpx solid #f0f0f0;
|
||||||
padding: 20rpx 30rpx env(safe-area-inset-bottom);
|
padding: 20rpx 30rpx 20rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.add-btn {
|
.add-btn {
|
||||||
|
|||||||
@ -143,14 +143,14 @@
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 125rpx;
|
bottom: 140rpx;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
.remark-page{
|
.remark-page{
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background: #f7f7f7;
|
background: #f7f7f7;
|
||||||
padding-bottom: 140rpx;
|
|
||||||
}
|
}
|
||||||
.form-block{
|
.form-block{
|
||||||
.iptbox{
|
.iptbox{
|
||||||
@ -212,7 +212,7 @@
|
|||||||
left: 0; right: 0; bottom: 0;
|
left: 0; right: 0; bottom: 0;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border-top: 1rpx solid #f0f0f0;
|
border-top: 1rpx solid #f0f0f0;
|
||||||
padding: 20rpx 24rpx env(safe-area-inset-bottom);
|
padding: 20rpx 24rpx 20rpx;
|
||||||
.save-btn{
|
.save-btn{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user