修改bug

This commit is contained in:
zhouyanli
2026-05-26 17:44:00 +08:00
parent 1b0e47e79e
commit 102beeb8bb
8 changed files with 25 additions and 20 deletions

View File

@@ -266,7 +266,7 @@ const getMyActivityListData = async (pageNum = 1) => {
const res = await getMyActivityList(params) const res = await getMyActivityList(params)
if (res.code === 200) { if (res.code === 200) {
const list = res.rows || [] const list = res.data || []
total.value = res.total || 0 total.value = res.total || 0
if (pageNum === 1) { if (pageNum === 1) {

View File

@@ -97,7 +97,7 @@
<view class="section" style="margin-bottom: 40rpx;"> <view class="section" style="margin-bottom: 40rpx;">
<view class="section-title">活动详情</view> <view class="section-title">活动详情</view>
<view class="section-content"> <view class="section-content">
<view>{{activityConent.content || "暂无"}}</view> <view v-html="activityConent.content"></view>
<view></view> <view></view>
</view> </view>
</view> </view>

View File

@@ -286,28 +286,28 @@ const submitStatus = async () => {
/* 主体内容 */ /* 主体内容 */
.content { .content {
flex: 1; max-height: calc(100vh - 120px);
padding: 15px 0px; padding: 10px 0px;
} }
/* 表单项通用样式 */ /* 表单项通用样式 */
.form-item { .form-item {
background-color: #fff; background-color: #fff;
padding: 15px; padding: 20px 15px;
border-radius: 8px; border-radius: 8px;
margin-bottom: 15px; margin-bottom: 8px;
} }
.label { .label {
font-size: 16px; font-size: 16px;
font-weight: 500; font-weight: 500;
margin-bottom: 10px; margin-bottom: 6px;
display: block; display: block;
} }
/* 输入框样式 */ /* 输入框样式 */
.textarea { .textarea {
width: 100%; width: 100%;
min-height: 120px; height: 180px;
padding: 10px; padding: 10px;
border: 1px solid #eee; border: 1px solid #eee;
border-radius: 4px; border-radius: 4px;
@@ -318,7 +318,7 @@ const submitStatus = async () => {
text-align: right; text-align: right;
font-size: 12px; font-size: 12px;
color: #999; color: #999;
margin-top: 5px; margin-top: 4px;
display: block; display: block;
} }

View File

@@ -7,6 +7,9 @@
<view class="nav-title">修改密码</view> <view class="nav-title">修改密码</view>
</view> </view>
<!-- 密码提示 -->
<view class="pwd-tips">密码为 6-16 需同时包含字母和数字</view>
<!-- 新密码输入框 --> <!-- 新密码输入框 -->
<view class="input-item"> <view class="input-item">
<uni-easyinput class="input-content" type="password" v-model="newPassword" <uni-easyinput class="input-content" type="password" v-model="newPassword"
@@ -172,6 +175,14 @@ const handleConfirm = () => {
line-height: 88rpx; line-height: 88rpx;
} }
/* 密码提示 */
.pwd-tips {
font-size: 24rpx;
color: #999;
margin-bottom: 20rpx;
padding-left: 10rpx;
}
/* 确定按钮 */ /* 确定按钮 */
.confirm-btn { .confirm-btn {
width: 100%; width: 100%;

View File

@@ -34,7 +34,7 @@
<view class="dot" v-if="notice.readStatus === '0'"></view> <view class="dot" v-if="notice.readStatus === '0'"></view>
</view> </view>
<view class="info">{{ notice.author }} · {{ notice.publishTime }}</view> <view class="info">{{ notice.author }} · {{ notice.publishTime }}</view>
<view class="content">{{ notice.noticeContent }}</view> <view class="content" v-html="notice.noticeContent"></view>
<view class="detail" @click="goToDetail(notice)"> <view class="detail" @click="goToDetail(notice)">
<text style="color:#2F77FD;font-size: 24rpx;">详情</text> <text style="color:#2F77FD;font-size: 24rpx;">详情</text>
<uni-icons type="right" size="13" color="#007AFF"/> <uni-icons type="right" size="13" color="#007AFF"/>

View File

@@ -19,9 +19,7 @@
<!-- 文章内容 --> <!-- 文章内容 -->
<view class="article-content"> <view class="article-content">
<view class="paragraph"> <view class="paragraph" v-html="noticeDetail.noticeContent"></view>
{{noticeDetail.noticeContent}}
</view>
<view class="articleimg"> <view class="articleimg">
<image src="https://wuyeadmin.bugtc.com/images/home/notice-1.png" mode="" style="width: 100%;height: 100%;border-radius: 20rpx;"></image> <image src="https://wuyeadmin.bugtc.com/images/home/notice-1.png" mode="" style="width: 100%;height: 100%;border-radius: 20rpx;"></image>
<image src="https://wuyeadmin.bugtc.com/images/home/notice-2.png" mode="" style="width: 100%;height: 100%;border-radius: 20rpx;"></image> <image src="https://wuyeadmin.bugtc.com/images/home/notice-2.png" mode="" style="width: 100%;height: 100%;border-radius: 20rpx;"></image>

View File

@@ -245,7 +245,7 @@ onUnload(() =>{
position: sticky; position: sticky;
top: 44px; top: 44px;
z-index: 100; z-index: 100;
margin-bottom: 20px; margin-bottom: 60px;
/* box-shadow: 0 4rpx 12rpx rgba(0, 122, 255, 0.2); */ /* box-shadow: 0 4rpx 12rpx rgba(0, 122, 255, 0.2); */
} }

View File

@@ -37,7 +37,7 @@
<scroll-view class="main-scroll" scroll-y> <scroll-view class="main-scroll" scroll-y>
<!-- banner --> <!-- banner -->
<view class="bannarClass"> <view class="bannarClass">
<up-swiper :list="bannerList" indicator indicatorMode="dot" ></up-swiper> <up-swiper :list="bannerList" indicator indicatorMode="dot" imgMode="aspectFill" radius="12"></up-swiper>
</view> </view>
<!-- 公告 --> <!-- 公告 -->
<view class="noticeClass" @click="getNoticeMore"> <view class="noticeClass" @click="getNoticeMore">
@@ -181,11 +181,7 @@ const activityList = ref([]) // 活动列表数据
const currentCommunity = ref('请认证小区') const currentCommunity = ref('请认证小区')
const currentVillageId = ref('') const currentVillageId = ref('')
const statusBarHeight = ref(0) const statusBarHeight = ref(0)
const bannerList = ref([ const bannerList = ref([])
// 'http://47.104.199.163:9090/images/home/banner.png',
// "http://47.104.199.163:9090/images/propertyImgs/serviceImg2.png"
])
const noticeText = ref('暂无公告') const noticeText = ref('暂无公告')
const noticeId = ref('') const noticeId = ref('')