2025-01-21 18:08:48 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="dangerbig-list">
|
|
|
|
|
<view class="fixedheader">
|
|
|
|
|
<headers :showBack="true">
|
|
|
|
|
<view class="headerName">
|
|
|
|
|
专题活动
|
|
|
|
|
</view>
|
|
|
|
|
</headers>
|
|
|
|
|
<view class="searchBox">
|
|
|
|
|
<view class="uni-form-item">
|
|
|
|
|
<input class="uni-input" name="searchName" @input="handleInput" v-model="searchName"
|
|
|
|
|
placeholder="请输入标题" />
|
|
|
|
|
<!-- <button class="mini-btn" type="primary" size="mini" @click="loadData">搜索</button> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view :style="{ 'padding-top': statusBarHeight + (100 * 2)+ 'rpx' }">
|
|
|
|
|
<view class="list" v-if="workList && workList.length>0">
|
|
|
|
|
<view class="list-item" v-for="(item,index) in workList" :key="index" @click="checkItem(item)">
|
|
|
|
|
<view class="download" v-for="ele in item.image" :key="ele.id">
|
2025-02-07 17:10:27 +08:00
|
|
|
<image mode="aspectFill" :src="ele.url.includes('http://') ? ele.url : url_config+'image/'+ele.url" class="img"
|
2025-01-21 18:08:48 +08:00
|
|
|
@click.stop="previewImage(ele.url.includes('http://') ? ele.url : url_config+'image/'+ele.url)">
|
|
|
|
|
</image>
|
|
|
|
|
<view class="list-download">
|
|
|
|
|
{{item.createTime}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="list-title">
|
|
|
|
|
<!-- 未销项 -->
|
|
|
|
|
<view>
|
|
|
|
|
<!-- <text class="tag" v-if="item.hiddenDangerNum > 0">未销项{{item.hiddenDangerNum}}</text> -->
|
|
|
|
|
{{item.title}}
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <view :class="{'status2': item.engineeringState !== 4, 'status4': item.engineeringState === 4}">
|
|
|
|
|
{{item.engineeringState === 4 ? "已完工" : "在施"}}
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btn_detail">
|
|
|
|
|
查看详情
|
|
|
|
|
<uni-icons2 class="arrowright" type="arrowright"></uni-icons2>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="loadMoreBox" v-if="isLoadMore">
|
|
|
|
|
<uni-load-more :status="loadStatus" iconType="auto"></uni-load-more>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="no_data1" v-else>
|
|
|
|
|
<image src="/static/bthgIcon/noData1.png"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
isJSON
|
|
|
|
|
} from '@/utils/tool.js'
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
statusBarHeight: 0,
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
projectSn: "",
|
|
|
|
|
listData: [],
|
|
|
|
|
isLoadMore: false,
|
|
|
|
|
loadStatus: 'more',
|
|
|
|
|
workList: [],
|
|
|
|
|
levelList: [{
|
|
|
|
|
id: 1,
|
|
|
|
|
workCategoryName: "一级"
|
|
|
|
|
}, {
|
|
|
|
|
id: 2,
|
|
|
|
|
workCategoryName: "二级"
|
|
|
|
|
}, {
|
|
|
|
|
id: 3,
|
|
|
|
|
workCategoryName: "三级"
|
|
|
|
|
}, {
|
|
|
|
|
id: 4,
|
|
|
|
|
workCategoryName: "普通"
|
|
|
|
|
}],
|
|
|
|
|
searchName: "",
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
this.statusBarHeight = uni.getStorageSync('systemInfo').statusBarHeight;
|
|
|
|
|
this.projectSn = JSON.parse(uni.getStorageSync('userInfo')).sn
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.projectSn = JSON.parse(uni.getStorageSync('userInfo')).sn
|
|
|
|
|
// this.initData()
|
|
|
|
|
this.getWorkList()
|
|
|
|
|
},
|
|
|
|
|
onReachBottom() {
|
|
|
|
|
console.log(1)
|
|
|
|
|
if (!this.isLoadMore) { //此处判断,上锁,防止重复请求
|
|
|
|
|
this.isLoadMore = true
|
|
|
|
|
this.pageNo += 1
|
|
|
|
|
this.getWorkList()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onPullDownRefresh() {
|
|
|
|
|
console.log(2)
|
|
|
|
|
this.pageNo = 1
|
|
|
|
|
this.listData = []
|
|
|
|
|
this.getWorkList()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
//预览图片
|
|
|
|
|
previewImage(url) {
|
|
|
|
|
uni.previewImage({
|
|
|
|
|
urls: [url]
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleInput() {
|
|
|
|
|
this.pageNo = 1;
|
|
|
|
|
this.listData = []
|
|
|
|
|
this.workList = [];
|
|
|
|
|
this.getWorkList();
|
|
|
|
|
},
|
|
|
|
|
getWorkList() {
|
|
|
|
|
let data = {
|
|
|
|
|
pageNo: this.pageNo,
|
|
|
|
|
pageSize: this.pageSize,
|
|
|
|
|
projectSn: this.projectSn,
|
|
|
|
|
title: this.searchName,
|
|
|
|
|
type: 3,
|
|
|
|
|
}
|
|
|
|
|
this.sendRequest({
|
|
|
|
|
url: 'xmgl/sceneExposeSpecial/page',
|
|
|
|
|
method: 'get',
|
|
|
|
|
data: data,
|
|
|
|
|
success: res => {
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
console.log("workList======================", res)
|
|
|
|
|
// this.listData = res.result.records
|
|
|
|
|
// this.workList=this.workList.concat(res.result)
|
|
|
|
|
const newResult = res.result.records.map(item => {
|
|
|
|
|
return {
|
|
|
|
|
...item,
|
|
|
|
|
image: isJSON(item.image) ? JSON
|
|
|
|
|
.parse(item.image) : [],
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.workList = this.workList.concat(newResult)
|
|
|
|
|
if (res.result.records.length < this.pageSize) { //判断接口返回数据量小于请求数据量,则表示此为最后一页
|
|
|
|
|
this.isLoadMore = true
|
|
|
|
|
this.loadStatus = 'nomore'
|
|
|
|
|
} else {
|
|
|
|
|
this.isLoadMore = false
|
|
|
|
|
// that.loadStatus='more'
|
|
|
|
|
}
|
|
|
|
|
uni.stopPullDownRefresh()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
checkItem(val) {
|
|
|
|
|
console.log(val)
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: './detail?id=' + val.id
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.searchBox {
|
|
|
|
|
// background-color: white;
|
|
|
|
|
background-color: #F3F5F7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.uni-form-item {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
/* .search-icon{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
right: 50rpx;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
} */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.uni-input {
|
|
|
|
|
border-radius: 40rpx;
|
|
|
|
|
margin: 20rpx;
|
|
|
|
|
// background-color: #f7f8fa;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
line-height: 60rpx;
|
|
|
|
|
padding: 0 40rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen {
|
|
|
|
|
line-height: 100rpx;
|
|
|
|
|
color: gray;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
padding: 0px 30rpx 20rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download {
|
|
|
|
|
// display: flex;
|
|
|
|
|
// flex-wrap: wrap;
|
|
|
|
|
// align-items: center;
|
|
|
|
|
// margin-top: 10rpx;
|
|
|
|
|
// justify-content: center;
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 280rpx;
|
|
|
|
|
|
|
|
|
|
.list-download {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 12rpx 40rpx;
|
|
|
|
|
border-radius: 0 0 16rpx 16rpx;
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
text-align: right;
|
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 280rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dangerbig-list {
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
background: #F6F6F6;
|
|
|
|
|
|
|
|
|
|
.fixedheader {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
|
|
.headerName {
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep( .headerBox ){
|
|
|
|
|
background-color: #F3F5F7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list {
|
|
|
|
|
padding: 20rpx 0;
|
|
|
|
|
margin: 0 20rpx;
|
|
|
|
|
|
|
|
|
|
.list-item {
|
|
|
|
|
background: #fff;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
// padding: 20rpx 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.list-title {
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
// border-bottom: 4rpx solid #F6F6F6;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
color: #1A1A1A;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
|
background: #F0AD4E;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 4rpx 8rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
margin-left: -20rpx;
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status1 {
|
|
|
|
|
background: #2b8df3;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 4rpx 8rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status2 {
|
|
|
|
|
background: #F0AD4E;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 4rpx 8rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status3 {
|
|
|
|
|
background: #B22222;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 4rpx 8rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status4 {
|
|
|
|
|
background: #ccc;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 4rpx 8rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-info {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 10rpx 20rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
// border-bottom: 2rpx solid #F6F6F6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info-status {
|
|
|
|
|
padding: 0 10rpx;
|
|
|
|
|
border: 1px solid #DD524D;
|
|
|
|
|
border-radius: 6rpx;
|
|
|
|
|
color: #DD524D;
|
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn_detail {
|
|
|
|
|
// background-color: #4181FE;
|
|
|
|
|
// color: white;
|
|
|
|
|
// padding: 3rpx 16rpx;
|
|
|
|
|
// border-radius: 30rpx;
|
|
|
|
|
// position: absolute;
|
|
|
|
|
// bottom: 16rpx;
|
|
|
|
|
// right: 16rpx;
|
|
|
|
|
border-top: 1px dashed #CCCCCC;
|
|
|
|
|
padding: 20rpx 40rpx;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #FF0000;
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
|
|
.arrowright {
|
|
|
|
|
color: #FF0000 !important;
|
|
|
|
|
font-size: 24rpx !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
height: 96rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
line-height: 96rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: #4181FE;
|
|
|
|
|
color: #fff;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-data {
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
.img {
|
|
|
|
|
display: block;
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
margin-top: 560rpx;
|
|
|
|
|
margin-bottom: 60rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.txt {
|
|
|
|
|
color: #CFC8CC;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|