qa-regulatory-gwj-app/pages/general-hidden-management/ignore-hidden/detail-list.vue

252 lines
8.3 KiB
Vue
Raw Normal View History

2023-11-07 10:08:37 +08:00
<template>
<view class="content">
<view class="search card">
<u--input
class="ml-10"
prefixIcon="search"
placeholder="请输入关键字"
border="surround"
v-model="hiddendescr"
2023-11-07 10:08:37 +08:00
clearable
shape="circle"
></u--input>
2024-10-10 10:14:31 +08:00
<view class="bth-mini ml-10">
<u-button type="success" text="确定" @click="resetList"></u-button>
2024-07-27 15:13:42 +08:00
</view>
2023-11-07 10:08:37 +08:00
</view>
<u-popup :show="popupShow" @close="popupShow = false" mode="right" :customStyle="{width:'85vw'}">
<view class="card">
2024-10-10 10:14:31 +08:00
<view class="pl-10 pr-10">
<u--form labelPosition="left">
<u-form-item label="隐患发现开始时间" borderBottom>
<u--text :text="start || '请选择'"
2024-10-10 10:14:31 +08:00
@click="startDataShow = true"></u--text>
<u-datetime-picker :show="startDataShow"
mode="datetime"
:value="Number(new Date())"
@cancel="startDataShow = false"
@confirm="startDataConfirm"></u-datetime-picker>
</u-form-item>
<u-form-item label="隐患发现结束时间" borderBottom>
<u--text :text="end || '请选择'"
2024-10-10 10:14:31 +08:00
@click="endDataShow = true"></u--text>
<u-datetime-picker :show="endDataShow"
mode="datetime"
:value="Number(new Date())"
@cancel="endDataShow = false"
@confirm="endDataConfirm"></u-datetime-picker>
</u-form-item>
<u-form-item label="发现人" borderBottom>
<u--input
inputAlign="right"
placeholder="请输入发现人"
border="none"
v-model="creatorName"
2024-10-10 10:14:31 +08:00
clearable
></u--input>
</u-form-item>
<u-form-item label="确认人" borderBottom>
<u--input
inputAlign="right"
placeholder="请输入确认人"
border="none"
v-model="keyConfirmUser"
2024-10-10 10:14:31 +08:00
clearable
></u--input>
</u-form-item>
<u-form-item label="发现人部门" borderBottom>
<u--text :text="departmentName || '请选择'" @click="showTree('tkitree')"></u--text>
2024-10-10 10:14:31 +08:00
<tki-tree ref="tkitree" :range="deptRange" rangeKey="name" selectParent
@confirm="confirmTree($event,'dept')"/>
</u-form-item>
<u-form-item label="隐患类型" borderBottom>
<u--text :text="hiddenTypeName || '请选择'" @click="showTree('tkitree1')"></u--text>
2024-10-10 10:14:31 +08:00
<tki-tree ref="tkitree1" :range="HazardTypeRange" rangeKey="name" selectParent children-name="nodes"
@confirm="confirmTree($event,'type')"/>
</u-form-item>
</u--form>
</view>
2023-11-07 10:08:37 +08:00
<view class="mt-10 flex-between">
2024-10-10 10:14:31 +08:00
<view class="flex1">
<u-button type="info" text="重置" @click="reset"></u-button>
</view>
<view class="ml-10 flex1">
<u-button type="primary" text="查询" @click="resetList"></u-button>
</view>
2023-11-07 10:08:37 +08:00
</view>
</view>
</u-popup>
<u-list @scrolltolower="scrolltolower" v-if="list.length > 0">
<u-list-item v-for="(item, index) in list" :key="index">
<view>
<view class="flex-between main-title">
<text>{{ item.hiddendescr }}</text>
<u-tag :text="item.hiddenlevelName" type="warning"></u-tag>
2023-11-07 10:08:37 +08:00
</view>
<view class="flex-between mt-10 subtitle">
<text>
来源
<template v-if="item.source === 1"></template>
<template v-if="item.source === 2 || item.source === 3"></template>
<template v-if="item.source === 4">()</template>
<template v-if="item.source === 5">()</template>
<template v-if="item.source === 6"></template>
2023-11-07 10:08:37 +08:00
</text>
</view>
<view class="flex-between mt-10 subtitle">
<text>隐患发现人{{ item.hiddenDiscoverer }}</text>
<text>隐患发现时间{{ item.discoverytime }}</text>
2023-11-07 10:08:37 +08:00
</view>
<view class="flex-between mt-10 subtitle">
<text>隐患确认人{{ item.confirmUserName }}</text>
2024-07-27 15:13:42 +08:00
</view>
<view class="see_btn">
2024-10-10 10:14:31 +08:00
<u-button type="primary" text="查看" size="mini"
@click="fnNavigatorDetail(item.hiddenId)"></u-button>
2023-11-07 10:08:37 +08:00
</view>
</view>
</u-list-item>
</u-list>
<empty v-else></empty>
2024-10-10 10:14:31 +08:00
<fab-button type="search" @click="popupShow = true"/>
2023-11-07 10:08:37 +08:00
</view>
</template>
<script>
import {getCorpinfoDeptListTree, getHiddenType, getIgnoreHiddenList} from "@/api";
2023-11-07 10:08:37 +08:00
import tkiTree from "@/components/tki-tree/tki-tree.vue"
2024-10-10 10:14:31 +08:00
import FabButton from "@/components/fab_button/index.vue";
2023-11-07 10:08:37 +08:00
export default {
2024-10-10 10:14:31 +08:00
components: {FabButton, tkiTree},
2023-11-07 10:08:37 +08:00
data() {
return {
hiddendescr: '',
2023-11-07 10:08:37 +08:00
pageSize: 10,
currentPage: 1,
totalPage: 0,
list: [],
companyId: '',
2023-11-07 10:08:37 +08:00
popupShow: false,
startDataShow: false,
endDataShow: false,
deptRange: [],
HazardTypeRange: [],
keyFindUserDept: '',
departmentName: '',
start: '',
keyConfirmUser: '',
creatorName: '',
end: '',
hiddenType: '',
hiddenTypeName: '',
2023-11-07 10:08:37 +08:00
}
},
onLoad(event) {
this.companyId = event.companyId;
2023-11-07 10:08:37 +08:00
this.resetList()
this.fnGetDept()
this.fnGetHiddenType()
},
methods: {
async fnGetDept() {
let resData = await getCorpinfoDeptListTree({'CORPINFO_ID': this.companyId});
2023-11-07 10:08:37 +08:00
this.deptRange = JSON.parse(resData.zTreeNodes)
},
async fnGetHiddenType() {
let resData = await getHiddenType();
this.HazardTypeRange = JSON.parse(resData.zTreeNodes)
},
async getData() {
this.popupShow = false
let { varList, page } = await getIgnoreHiddenList({
companyId: this.companyId,
keyFindUserDept: this.keyFindUserDept,
dates: this.start != null && this.start !== '' && this.end != null && this.end !== '' ? [this.start, this.end] : null,
keyConfirmUser: this.keyConfirmUser,
creatorName: this.creatorName,
keyHiddenType: this.hiddenType != null && this.hiddenType !== '' ? [this.hiddenType] : null,
hiddendescr: this.hiddendescr,
2023-11-07 10:08:37 +08:00
showCount: this.pageSize,
currentPage: this.currentPage,
});
this.list = [...this.list, ...varList];
this.totalPage = page.totalPage;
2023-11-07 10:08:37 +08:00
},
resetList() {
this.pageSize = 10
this.currentPage = 1
this.list = []
this.getData()
},
fnNavigatorDetail(hiddenId) {
2023-11-07 10:08:37 +08:00
uni.$u.route({
url: '/pages/general-hidden-management/ignore-hidden/detail',
params: {
hiddenId,
2023-11-07 10:08:37 +08:00
}
})
},
scrolltolower() {
this.currentPage++;
if (this.totalPage >= this.currentPage) this.getData();
},
showTree(ref) {
this.$refs[ref]._show()
},
2024-10-10 10:14:31 +08:00
confirmTree(e, type) {
if (type === 'dept') {
this.keyFindUserDept = e[0].id
this.departmentName = e[0].name
2024-10-10 10:14:31 +08:00
} else if (type === 'type') {
this.hiddenType = e[0].id
this.hiddenTypeName = e[0].name
2023-11-07 10:08:37 +08:00
}
},
2024-10-10 10:14:31 +08:00
startDataConfirm(e) {
this.start = uni.$u.timeFormat(e.value, 'yyyy-mm-dd hh:MM')
2023-11-07 10:08:37 +08:00
this.startDataShow = false
},
2024-10-10 10:14:31 +08:00
endDataConfirm(e) {
this.end = uni.$u.timeFormat(e.value, 'yyyy-mm-dd hh:MM')
2023-11-07 10:08:37 +08:00
this.endDataShow = false
},
reset() {
this.popupShow = false
this.keyword = ''
this.keyConfirmUser = ''
this.creatorName = ''
this.start = ''
this.end = ''
this.keyFindUserDept = ''
this.departmentName = ''
this.hiddenType = ''
this.hiddenTypeName = ''
2023-11-07 10:08:37 +08:00
this.resetList()
}
}
}
</script>
2024-07-27 15:13:42 +08:00
<style scoped lang="scss">
2024-10-10 10:14:31 +08:00
.search {
2024-07-27 15:13:42 +08:00
display: flex;
2024-10-10 10:14:31 +08:00
.ml-10 {
2024-07-27 15:13:42 +08:00
margin-left: 10rpx;
}
2024-10-10 10:14:31 +08:00
.bth-mini {
2024-07-27 15:13:42 +08:00
width: 100rpx;
}
}
2024-10-10 10:14:31 +08:00
.see_btn {
2024-07-27 15:13:42 +08:00
width: 100rpx;
float: right;
}
2023-11-07 10:08:37 +08:00
</style>