fix: loadmore

This commit is contained in:
zzc
2026-02-08 18:57:45 +08:00
parent 8fd18b6d8b
commit 2437ed9d2f
14 changed files with 192 additions and 17 deletions

View File

@@ -3,6 +3,11 @@
<NavBar title="意见反馈" />
<view class="content-wrap">
<!-- Top Tip -->
<view class="top-notice">
<text class="notice-text">此投诉为本小程序自有投诉渠道非微信官方投诉渠道</text>
</view>
<!-- Type Selector -->
<view class="form-item">
<view class="label">反馈类型</view>
@@ -203,6 +208,29 @@ const submitFeedback = async () => {
padding: 32rpx;
}
.top-notice {
display: flex;
align-items: flex-start;
padding: 20rpx 24rpx;
background-color: #fff7e6;
border-radius: 16rpx;
margin-bottom: 40rpx;
border: 1rpx solid #ffe7ba;
}
.notice-icon {
font-size: 28rpx;
margin-right: 12rpx;
line-height: 1.4;
}
.notice-text {
font-size: 24rpx;
color: #fa8c16;
line-height: 1.4;
flex: 1;
}
.form-item {
margin-bottom: 48rpx;
}