Browse Source

政策法规列表

master
赵鹏 1 month ago
parent
commit
498ef97c5d
  1. 4
      sub/chat/index.vue
  2. 2
      sub/owner/policy-detail.vue
  3. 188
      sub/owner/policy.vue

4
sub/chat/index.vue

@ -1,6 +1,6 @@
<template> <template>
<!-- <web-view src="https://mb.jzce.com/chat/f07644a8e53c750a"></web-view> --> <web-view src="https://mb.jzce.com/chat/313cf9e35628923a"></web-view>
<web-view src="https://chat.deepseek.com/"></web-view> <!-- <web-view src="https://chat.deepseek.com/"></web-view> -->
</template> </template>
<script> <script>

2
sub/owner/policy-detail.vue

@ -79,7 +79,7 @@ export default {
.policy-detail { .policy-detail {
height: 100vh; height: 100vh;
background: #fff; background: #fff;
overflow-y: auto;
.nav-bar { .nav-bar {
position: fixed; position: fixed;

188
sub/owner/policy.vue

@ -15,20 +15,29 @@
<!-- 政策法规列表区域 --> <!-- 政策法规列表区域 -->
<!-- 修改列表项部分 --> <!-- 修改列表项部分 -->
<view class="policy-list"> <view class="policy-list">
<view <scroll-view
class="policy-item" class="policy-scroll"
v-for="item in policyList" scroll-y
:key="item.id" @scrolltolower="loadNextPage"
@click="handlePolicyClick(item)" @refresherrefresh="onRefresh"
refresher-enabled
:refresher-triggered="isRefreshing"
> >
<view class="item-left"> <view
<image :src="itemImgUrl" class="policy-icon"></image> class="policy-item"
v-for="item in policyList"
:key="item.id"
@click="handlePolicyClick(item)"
>
<view class="item-left">
<image :src="itemImgUrl" class="policy-icon"></image>
</view>
<view class="item-right">
<view class="policy-title">{{ item.title }}</view>
<view class="policy-time">生效时间: {{ item.effectiveDate }}</view>
</view>
</view> </view>
<view class="item-right"> </scroll-view>
<view class="policy-title">{{ item.title }}</view>
<view class="policy-time">生效时间: {{ item.effectiveDate }}</view>
</view>
</view>
</view> </view>
@ -47,8 +56,9 @@ import config from '@/config'
export default { export default {
data() { data() {
return { return {
isRefreshing: false, //
searchValue: '', // searchValue: '', //
abc: '', abc: '',
policyList: [], // policyList: [], //
pageNum: 1, // pageNum: 1, //
pageSize: 10, // pageSize: 10, //
@ -64,14 +74,22 @@ export default {
}, },
// methods: {
onReachBottom() {
//
onRefresh() {
this.isRefreshing = true
this.pageNum = 1
this.getPolicyList()
},
loadNextPage() {
console.log('列表值',this.policyList.length)
if (this.policyList.length < this.total) { if (this.policyList.length < this.total) {
this.pageNum++ this.pageNum++
this.getPolicyList() this.getPolicyList()
} }
}, },
methods: {
// //
async getPolicyList() { async getPolicyList() {
try { try {
@ -97,8 +115,8 @@ export default {
} else { } else {
this.policyList = [...this.policyList, ...formattedData] this.policyList = [...this.policyList, ...formattedData]
} }
console.log('列表信息',res)
this.total = res.total this.total = res.data.total
// //
this.loadMoreStatus = this.policyList.length >= this.total ? 'noMore' : 'more' this.loadMoreStatus = this.policyList.length >= this.total ? 'noMore' : 'more'
} }
@ -110,6 +128,11 @@ export default {
icon: 'none' icon: 'none'
}) })
} }
finally {
this.loadMoreStatus = this.policyList.length >= this.total? 'noMore' :'more'
//
this.isRefreshing = false
}
}, },
// //
handleSearch(e) { handleSearch(e) {
@ -134,70 +157,79 @@ export default {
</script> </script>
<style lang="scss"> <style lang="scss">
.policy-container {
background: var(--LightMode-Secondary-Secondary, #F9F9F9);
.policy-container { min-height: 100vh;
background: var(--LightMode-Secondary-Secondary, #F9F9F9); display: flex;
min-height: 100vh; flex-direction: column;
.search-box {
padding: 20rpx;
background: #fff;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1;
}
.policy-list {
margin-top: 120rpx; //
flex: 1;
.policy-scroll {
height: calc(100vh - 120rpx);
box-sizing: border-box;
}
.policy-item {
display: flex;
padding: 24rpx;
align-items: center;
gap: 24rpx;
background: #fff;
margin: 24rpx;
margin-bottom: 0;
border-radius: 16rpx;
.search-box { .item-left {
padding: 20rpx; border-radius: 100rpx;
background: #fff; background: var(--LightMode-Grey-Grey-100, #F9F9F9);
padding: 16rpx;
display: flex;
justify-content: center;
align-items: center;
.policy-icon {
width: 40rpx;
height: 40rpx;
flex-shrink: 0;
}
} }
.policy-list { .item-right {
display: flex; flex: 1;
flex-direction: column; overflow: hidden;
align-items: flex-start;
background: var(--LightMode-Secondary-Secondary, #F9F9F9); .policy-title {
font-size: 28rpx;
.policy-item { color: #333;
display: flex; margin-bottom: 12rpx;
padding: var(--Number-12px, 12px); line-height: 1.4;
align-items: center; }
gap: var(--Number-12px, 12px);
align-self: stretch; .policy-time {
border-radius: var(--Number-8px, 8px); font-size: 24rpx;
border-bottom: 1px solid var(--LightMode-Grey-Grey-100, #F9F9F9); color: #999;
background: var(--LightMode-Light-Light, #FFF); line-height: 1.2;
margin-top: 12px;
margin-left: 12px;
margin-right: 12px;
margin-bottom: 0px;
.item-left {
margin-right: 20rpx;
border-radius: 100px;
background: var(--LightMode-Grey-Grey-100, #F9F9F9);
display: flex;
padding: 8px;
justify-content: center;
align-items: center;
gap: 8px;
.policy-icon {
display: flex;
width: 20px;
height: 20px;
justify-content: center;
align-items: center;
aspect-ratio: 1/1;
}
}
.item-right {
flex: 1;
.policy-title {
font-size: 28rpx;
color: #333;
margin-bottom: 10rpx;
}
.policy-time {
font-size: 24rpx;
color: #999;
}
}
} }
} }
} }
}
}
//
::v-deep .uni-load-more {
padding: 24rpx 0;
}
</style> </style>
Loading…
Cancel
Save