This commit is contained in:
SelfRidicule 2024-07-31 09:13:31 +08:00
parent d12a8bdd8a
commit 7033fb1b3a
2 changed files with 47 additions and 29 deletions

View File

@ -55,24 +55,26 @@
<view class="reportView">
<view class="topTitle">反馈</view>
<view class="selfLine"></view>
<view class="itemView">
<view class="itemLineView">
<view class="label">反馈人员</view>
<view class="content">王军</view>
</view>
<view class="itemView">
<view class="itemLineView">
<view class="label">反馈描述</view>
<view class="content">类型不一致</view>
<view class="content">类型不一致类型不一致类型不一致类型不一致类型不一致</view>
</view>
</view>
<view class="reportView">
<view class="topTitle">派单</view>
<view class="selfLine"></view>
<view class="itemView">
<view class="itemLineCenterView">
<view class="label">请选择派单人员</view>
<view class="content">王军</view>
<van-icon name="arrow" color="gray" size="34rpx"/>
</view>
</view>
</view>
<view class="tijiaoBtn">提交</view>
</view>

View File

@ -75,7 +75,7 @@
box-sizing: border-box;
margin: -20rpx 20rpx 20rpx;
z-index: 999;
z-index: 3;
}
.mainView .statusView {
@ -163,32 +163,48 @@
vertical-align: middle;
}
.bottomFixView {
position: fixed;
z-index: 999;
left: 0;
bottom: 0;
height: 140rpx;
width: 100vw;
border-top: 1rpx solid rgb(126, 126, 126, 0.2);
background: white;
.mainView .reportView .itemLineView {
display: flex;
justify-content: flex-end;
justify-content: flex-start;
align-items: flex-start;
margin: 0 30rpx;
padding: 30rpx 0;
border-bottom: 2rpx solid rgb(126, 126, 126, 0.2);
}
.mainView .reportView .itemLineView .label {
flex-shrink: 0;
width: 200rpx;
font-size: 30rpx;
color: gray;
}
.mainView .reportView .itemLineView .content {
font-size: 30rpx;
word-break: break-all;
}
.mainView .reportView .itemLineCenterView {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 30rpx;
padding: 30rpx 0;
border-bottom: 2rpx solid rgb(126, 126, 126, 0.2);
}
.bottomFixView .btn {
box-sizing: border-box;
border-radius: 6rpx;
margin-right: 30rpx;
padding: 12rpx 24rpx;
.mainView .reportView .itemLineCenterView .label {
font-size: 30rpx;
}
background: #579ff8;
font-size: 26rpx;
.tijiaoBtn{
width: 600rpx;
border-radius: 10rpx;
margin: 60rpx auto;
padding: 20rpx;
background: #4e96f8;
color: white;
}
.bottomFixView .btn.red {
background: #ee6f21;
}
font-size: 30rpx;
text-align: center;
}