qa-regulatory-gwj-app/pages/safety-environmental-inspec.../initiate/list.vue

206 lines
6.3 KiB
Vue
Raw Normal View History

2023-11-07 10:08:37 +08:00
<template>
<view class="content">
<view class="search card">
<u--text suffixIcon="arrow-down" text="筛选" @click="showPicker"></u--text>
<u--input
prefixIcon="search"
placeholder="请输入关键字"
border="surround"
v-model="keyword"
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-picker :show="show" :columns="columns" keyName="name" @cancel="show = false" @confirm="confirmPicker"></u-picker>
<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.INSPECTED_CORPINFO_ID_NAME }}</text>
</view>
<view class="flex-between mt-10 subtitle">
<text>检查发起人{{ item.INSPECTION_ORIGINATOR_NAME }}</text>
<text>检查类型{{ item.INSPECTION_TYPE_NAME }}</text>
</view>
<view class="flex-between mt-10 subtitle">
<text>检查时间 {{ item.INSPECTION_TIME_START }} {{ item.INSPECTION_TIME_END }} </text>
</view>
<view class="flex-between mt-10 subtitle">
<text>
状态
<template v-if="item.INSPECTION_STATUS == '0'"></template>
<template v-else-if="item.INSPECTION_STATUS == '1'">检查人核实中</template>
<template v-else-if="item.INSPECTION_STATUS == '2'">待被检查人确认</template>
<template v-else-if="item.INSPECTION_STATUS == '3'">待指派</template>
<template v-else-if="item.INSPECTION_STATUS == '4'">指派中</template>
<template v-else-if="item.INSPECTION_STATUS == '5'">指派完成</template>
<template v-else-if="item.INSPECTION_STATUS == '6'">检查待验收</template>
<template v-else-if="item.INSPECTION_STATUS == '7'">检查已验收</template>
<template v-else-if="item.INSPECTION_STATUS == '8'">已归档</template>
<template v-else-if="item.INSPECTION_STATUS == '-1'">检查人核实打回</template>
<template v-else-if="item.INSPECTION_STATUS == '-2'">被检查人申辩</template>
</text>
</view>
2024-07-27 15:13:42 +08:00
<view class="mt-10 see_btn">
<view class="wrap">
2024-10-10 10:14:31 +08:00
<u-button type="primary" text="查看" size="mini"
2024-07-27 15:13:42 +08:00
@click="fnNavigatorDetail(item.INSPECTION_ID, 'view')"></u-button>
</view>
2024-10-10 10:14:31 +08:00
<view class="wrap ml-10">
<u-button type="primary" text="流程图" size="mini"
@click="showFlowChart(item.INSPECTION_ID)"></u-button>
</view>
<view class="wrap ml-10" v-if="item.INSPECTION_STATUS === '-1'">
<u-button type="primary" text="编辑" size="mini"
@click="fnNavigatorDetail(item.INSPECTION_ID,'edit')"></u-button>
</view>
<view class="wrap ml-10" v-if="item.INSPECTION_STATUS === '-2'">
<u-button type="primary" text="申辩处理" size="mini"
@click="fnNavigatorPlead(item.INSPECTION_ID)"></u-button>
</view>
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 @click="fnNavigatorDetail('', 'add')" />
2023-11-07 10:08:37 +08:00
</view>
</template>
<script>
import {getSafetyenvironmentalList} from "../../../api";
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,
},
2023-11-07 10:08:37 +08:00
data() {
return {
show: false,
columns: [
[
{id: '', name: '请选择'},
{id: '0', name: '待检查人核实'},
{id: '1', name: '检查人核实中'},
{id: '2', name: '待被检查人确认'},
{id: '3', name: '已归档'},
{id: '4', name: '指派中'},
{id: '5', name: '指派完成'},
{id: '6', name: '待验收'},
{id: '7', name: '已验收'},
{id: '-1', name: '检查人核实打回'},
{id: '-2', name: '被检查人申辩'}
]
],
keyword: '',
INSPECTION_STATUS: '',
pageSize: 10,
currentPage: 1,
totalPage: 0,
list: [],
}
},
computed: {
userInfo() {
return this.$store.getters.getUserInfo
}
},
onShow() {
this.resetList()
},
methods: {
async getData() {
console.info(this.userInfo)
let resData = await getSafetyenvironmentalList({
loginUserId: this.userInfo.USER_ID,
supDeparIds: this.userInfo.supDeparIds,
roleLevel: this.userInfo.roleLevel,
KEYWORDS: this.keyword,
INSPECTION_STATUS: this.INSPECTION_STATUS,
showCount: this.pageSize,
currentPage: this.currentPage,
});
this.list = [...this.list, ...resData.varList];
this.totalPage = resData.page.totalPage;
},
resetList() {
this.pageSize = 10
this.currentPage = 1
this.list = []
this.getData()
},
showPicker() {
this.show = true;
},
confirmPicker(e) {
this.INSPECTION_STATUS = e.value[0].id
this.show = false;
this.resetList()
},
fnNavigatorDetail(INSPECTION_ID, type) {
uni.$u.route({
url: '/pages/safety-environmental-inspection/initiate/detail',
params: {
INSPECTION_ID,
type
}
})
},
fnNavigatorPlead(INSPECTION_ID) {
uni.$u.route({
url: '/pages/safety-environmental-inspection/initiate/plead',
params: {
INSPECTION_ID,
}
})
},
scrolltolower() {
this.currentPage++;
if (this.totalPage >= this.currentPage) this.getData();
},
showFlowChart(id) {
uni.navigateTo({
2024-10-10 10:14:31 +08:00
url: '/pages/safety-environmental-inspection/initiate/steps?ID=' + id
2023-11-07 10:08:37 +08:00
});
},
}
}
</script>
2024-07-27 15:13:42 +08:00
<style scoped lang="scss">
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
.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
display: flex;
justify-content: flex-end;
2024-10-10 10:14:31 +08:00
.wrap {
//width: 200rpx;
2024-07-27 15:13:42 +08:00
margin: 0 10rpx;
}
}
2023-11-07 10:08:37 +08:00
</style>