代码提交-3-13
This commit is contained in:
@@ -1,150 +1,239 @@
|
||||
<template>
|
||||
<view class="work-container">
|
||||
|
||||
<uni-card v-for="(item,index) of dataList" class="parent">
|
||||
<template v-slot:title>
|
||||
<h3 class="title">{{item.declarationLabel}}</h3>
|
||||
</template>
|
||||
<h3>{{item.requirementDescription}}</h3>
|
||||
<h3>{{item.occurTime}}</h3>
|
||||
<view class="card-actions-item" @click="actionsClick(item.id)">
|
||||
<button size="mini">详情</button>
|
||||
</view>
|
||||
</uni-card>
|
||||
<uni-load-more status="已经没有更多数据了"></uni-load-more>
|
||||
</uni-section>
|
||||
</view>
|
||||
<view class="container">
|
||||
<uni-section title="异常隐患申报记录" type="line" class="mb-10">
|
||||
<template v-slot:right>
|
||||
<button size="mini" type="primary" @click.stop="addNew">新增</button>
|
||||
</template>
|
||||
</uni-section>
|
||||
|
||||
<view class="filters">
|
||||
<uni-data-select v-model="queryParams.declarationType" :localdata="selectList" placeholder="申报类型" />
|
||||
<uni-datetime-picker type="daterange" v-model="dateRange" :clear-icon="true" start="1990-01-01" end="2099-12-31" />
|
||||
<button class="ml-6" size="mini" type="primary" @click="handleQuery">搜索</button>
|
||||
<button class="ml-6" size="mini" @click="resetQuery">重置</button>
|
||||
</view>
|
||||
|
||||
<uni-card v-for="item in dataList" :key="item.id" :title="item.declarationLabel || '异常隐患申报'" @click="onCardClick($event, item)">
|
||||
<uni-row class="row" :width="730">
|
||||
<uni-col :span="16">
|
||||
<view>
|
||||
<text class="uni-body">申报人:{{ item.applyUser || '-' }}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text class="uni-body">申报时间:{{ formatDate(item.occurTime) }}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text class="uni-body">备注:{{ item.remark || '-' }}</text>
|
||||
</view>
|
||||
</uni-col>
|
||||
<uni-col :span="8">
|
||||
<view class="thumbs">
|
||||
<image v-for="(img,idx) in firstThreeImages(item.declarationImg)" :key="idx" :src="imageUrl(img)" mode="aspectFill" class="thumb" />
|
||||
</view>
|
||||
</uni-col>
|
||||
</uni-row>
|
||||
</uni-card>
|
||||
<uni-load-more :status="loadStatus" />
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
listData
|
||||
} from '@/api/system/dict/data.js'
|
||||
import {
|
||||
listSafetyDeclaration
|
||||
} from "@/api/sidebar/sidebar.js"
|
||||
import formatTime from '@/utils/formatTime.js'
|
||||
import { listSafetyDeclaration } from '@/api/sidebar/sidebar.js';
|
||||
import { listData } from '@/api/system/dict/data.js';
|
||||
import config from '@/config';
|
||||
|
||||
export default {
|
||||
name: "FilingLog",
|
||||
data() {
|
||||
return {
|
||||
dataList: [],
|
||||
queryParams: {
|
||||
pageNum: 1, // 初始页码设为1
|
||||
pageSize: 10
|
||||
},
|
||||
isLoading: false, // 添加一个标志位,用于防止重复请求
|
||||
typeDataList: [],
|
||||
total: 0
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
actionsClick(e) {
|
||||
uni.navigateTo({
|
||||
url: `/pages/work/sidebar/safetyDeclaratio/index?id=` + e
|
||||
})
|
||||
},
|
||||
async getList() {
|
||||
if (this.isLoading) return; // 如果已经在加载中,则不执行
|
||||
this.isLoading = true;
|
||||
const res = await listSafetyDeclaration(this.queryParams);
|
||||
if (this.typeDataList.length == 0) {
|
||||
this.typeDataList = await listData({
|
||||
dictType: "hs_declaration_type"
|
||||
});
|
||||
}
|
||||
this.total = res.total
|
||||
let processedDataList = res.rows.map(item => {
|
||||
const matchedType = this.typeDataList.rows.find(type => type.dictValue == item.declarationType);
|
||||
const time = formatTime(item.occurTime);
|
||||
return {
|
||||
...item,
|
||||
occurTime: time,
|
||||
declarationLabel: matchedType ? matchedType.dictLabel : "未知类型"
|
||||
};
|
||||
});
|
||||
// 合并新旧数据
|
||||
this.dataList = [...this.dataList, ...processedDataList];
|
||||
},
|
||||
onLoad(options) {
|
||||
this.getList();
|
||||
},
|
||||
},
|
||||
onReachBottom() {
|
||||
this.isLoading = false;
|
||||
//上拉到底时触发,onReachBottom函数跟生命周期同级
|
||||
let allTotal = this.queryParams.pageNum * this.queryParams.pageSize
|
||||
console.log("allTotal",allTotal);
|
||||
console.log("this.total",this.total);
|
||||
if (allTotal < this.total) {
|
||||
this.queryParams.pageNum++;
|
||||
// this.queryParams.page++//当前条数小于总条数 则增加请求页数
|
||||
this.getList() //调用加载数据方法
|
||||
setTimeout(() => {
|
||||
//结束下拉刷新
|
||||
uni.stopPullDownRefresh();
|
||||
}, 1000);
|
||||
} else {
|
||||
console.log('已加载全部数据')
|
||||
}
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
this.queryParams.pageNum=1;
|
||||
this.isLoading = false;
|
||||
//下拉刷新触发,onPullDownRefresh函数跟生命周期同级
|
||||
this.dataList = []
|
||||
this.getList().then(res=>{
|
||||
setTimeout(() => {
|
||||
//结束下拉刷新
|
||||
uni.stopPullDownRefresh();
|
||||
}, 1000);
|
||||
})
|
||||
}
|
||||
}
|
||||
export default {
|
||||
name: "FilingLog",
|
||||
data() {
|
||||
return {
|
||||
loadStatus: 'more',
|
||||
loading: false,
|
||||
total: 0,
|
||||
dataList: [],
|
||||
selectList: [],
|
||||
dateRange: [],
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
declarationType: null,
|
||||
params: {}
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.initDict()
|
||||
this.getList()
|
||||
},
|
||||
// 触底加载更多(页面滚动到底部)
|
||||
onReachBottom() {
|
||||
if (this.loadStatus !== 'more' || this.loading) return
|
||||
this.loadStatus = 'loading'
|
||||
this.queryParams.pageNum += 1
|
||||
this.fetchList({ append: true })
|
||||
},
|
||||
// 页面重新显示时自动刷新列表(新增返回后生效)
|
||||
onShow() {
|
||||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
async initDict() {
|
||||
try {
|
||||
const typeData = await listData({ dictType: 'hs_declaration_type' })
|
||||
this.selectList = typeData.rows.map(i => ({ value: i.dictValue, text: i.dictLabel }))
|
||||
} catch (e) {
|
||||
console.error('获取字典数据失败:', e)
|
||||
this.selectList = []
|
||||
}
|
||||
},
|
||||
imageUrl(path) {
|
||||
if (!path) return ''
|
||||
return config.baseUrl + path
|
||||
},
|
||||
firstThreeImages(declarationImg) {
|
||||
if (!declarationImg) return []
|
||||
if (typeof declarationImg === 'string') {
|
||||
return declarationImg.split(',').slice(0, 3)
|
||||
}
|
||||
return declarationImg.slice(0, 3)
|
||||
},
|
||||
formatDate(val) {
|
||||
if (!val) return ''
|
||||
try {
|
||||
const d = new Date(val)
|
||||
const y = d.getFullYear()
|
||||
const m = String(d.getMonth() + 1).padStart(2, '0')
|
||||
const dd = String(d.getDate()).padStart(2, '0')
|
||||
const hh = String(d.getHours()).padStart(2, '0')
|
||||
const mm = String(d.getMinutes()).padStart(2, '0')
|
||||
const ss = String(d.getSeconds()).padStart(2, '0')
|
||||
return `${y}-${m}-${dd} ${hh}:${mm}:${ss}`
|
||||
} catch (e) {
|
||||
return val
|
||||
}
|
||||
},
|
||||
buildParams() {
|
||||
if (this.dateRange && this.dateRange.length === 2) {
|
||||
this.queryParams.params = {
|
||||
beginTime: this.dateRange[0],
|
||||
endTime: this.dateRange[1]
|
||||
}
|
||||
} else {
|
||||
this.queryParams.params = {}
|
||||
}
|
||||
},
|
||||
async fetchList({ append = false } = {}) {
|
||||
try {
|
||||
this.loading = true
|
||||
this.buildParams()
|
||||
const res = await listSafetyDeclaration(this.queryParams)
|
||||
const rows = res?.rows || []
|
||||
// 若接口提供 total 字段则使用,否则根据 pageSize 判断是否还有更多
|
||||
this.total = typeof res?.total === 'number' ? res.total : (append ? this.dataList.length + rows.length : rows.length)
|
||||
if (append) {
|
||||
this.dataList = this.dataList.concat(rows)
|
||||
} else {
|
||||
this.dataList = rows
|
||||
}
|
||||
// 根据是否还有更多数据设置加载状态
|
||||
if (typeof res?.total === 'number') {
|
||||
this.loadStatus = this.dataList.length < this.total ? 'more' : 'noMore'
|
||||
} else {
|
||||
// 当本次返回数量等于 pageSize,默认还有下一页
|
||||
const hasMore = rows.length === this.queryParams.pageSize
|
||||
this.loadStatus = hasMore ? 'more' : 'noMore'
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('获取列表失败:', e)
|
||||
this.loadStatus = 'noMore'
|
||||
} finally {
|
||||
this.loading = false
|
||||
}
|
||||
},
|
||||
async getList() {
|
||||
// 初始化查询第一页
|
||||
this.queryParams.pageNum = 1
|
||||
this.loadStatus = 'loading'
|
||||
await this.fetchList({ append: false })
|
||||
},
|
||||
onCardClick(type, item) {
|
||||
// 仅在内容区域点击时跳转(title/extra也可按需)
|
||||
if (!item) return
|
||||
this.goDetail(item)
|
||||
},
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1
|
||||
this.getList()
|
||||
},
|
||||
resetQuery() {
|
||||
this.queryParams = {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
declarationType: null,
|
||||
params: {}
|
||||
}
|
||||
this.dateRange = []
|
||||
this.getList()
|
||||
},
|
||||
addNew() {
|
||||
this.$tab.navigateTo('/pages/work/sidebar/safetyDeclaratio/index')
|
||||
},
|
||||
goDetail(item) {
|
||||
const id = item?.id
|
||||
if (!id) return
|
||||
this.$tab.navigateTo(`/pages/work/sidebar/filingDetail/index?id=${id}`)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 10px;
|
||||
background-color: #f8f9fa;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.work-container {
|
||||
margin-left: 4px
|
||||
}
|
||||
.filters {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
margin-bottom: 15px;
|
||||
padding: 15px;
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.thumbs {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
|
||||
.thumb {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 8px;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
}
|
||||
|
||||
.parent {
|
||||
position: relative;
|
||||
.row {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-bottom: 5px;
|
||||
font-weight:600;
|
||||
color: rgb(153, 153, 153);
|
||||
}
|
||||
.uni-body {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-weight:bold;
|
||||
padding: 3rpx;
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
// 工具类
|
||||
.mb-10 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-actions-item {
|
||||
display: inline-block;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
right: 30px;
|
||||
button {
|
||||
border-radius: 10px;
|
||||
}
|
||||
}
|
||||
.ml-6 {
|
||||
margin-left: 6px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user