修改bug\优化内容、加上公区收益和巡检记录页面

This commit is contained in:
zhouyanli
2026-07-15 17:42:39 +08:00
parent 173f1c4585
commit 289825363b
11 changed files with 1129 additions and 24 deletions

View File

@@ -111,18 +111,16 @@
<!-- 活动列表 -->
<uni-card class="activity-card">
<view class="eventListClass">
<view>
<text class="activity-name">活动列表</text>
<!-- <u-title>活动列表</u-title> -->
</view>
<view class="nav-more">
<!-- <up-button type="primary" shape="circle" size="small" text="查看更多" @click="moreClick"></up-button> -->
<text class="look-more-title" @click="moreClick">查看更多</text>
</view>
<view>
<text class="activity-name">活动列表</text>
</view>
<view class="nav-more">
<text class="look-more-title" @click="moreClick">查看更多</text>
</view>
</view>
<!-- 活动列表内容去掉内层 scroll-view由外层统一滚动 -->
<view class="activity-list">
<view class="eventListCard" v-for="(activity, index) in activityList" :key="activity.id">
<view class="eventListCard" v-for="(activity, index) in activityList" :key="activity.id" @click="moreClick">
<view class="u-demo-block__content ">
<up-row justify="space-between" customStyle="margin-bottom: 10px">
<up-col span="4">

View File

@@ -123,6 +123,16 @@
name: "联系物业",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-contact.png",
path: "/pageSubPack/service-list/contactProperty"
},
{
name: "巡检记录",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-contact.png",
path: "/pageSubPack/inspection-revenue/inspection"
},
{
name: "公区收益",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-contact.png",
path: "/pageSubPack/inspection-revenue/public-revenue"
}
])
const loginName = ref("wangh")
@@ -273,13 +283,17 @@
line-height: 1.4;
}
/* 智慧社区网格适配9个图标最后一个左对齐 */
.community-grid .func-item {
width: 22%;
/* 智慧社区网格 */
.community-grid {
justify-content: flex-start;
}
.community-grid .func-item:nth-child(9) {
margin-right: auto;
margin-left: 0;
.community-grid .func-item {
width: 22%;
margin-right: calc((100% - 22% * 4) / 3);
}
.community-grid .func-item:nth-child(4n) {
margin-right: 0;
}
</style>