149 lines
4.7 KiB
Vue
149 lines
4.7 KiB
Vue
<template>
|
||
<view class="content">
|
||
<view class="search card">
|
||
<u--input
|
||
prefixIcon="search"
|
||
placeholder="请输入关键字"
|
||
border="surround"
|
||
v-model="keyword"
|
||
clearable
|
||
shape="circle"
|
||
></u--input>
|
||
<div class="bth-mini ml-10">
|
||
<u-button type="success" text="确定" @click="resetList"></u-button>
|
||
</div>
|
||
|
||
</view>
|
||
<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>
|
||
<view class="flex-end mt-10">
|
||
<view class="see_btn">
|
||
<u-button type="primary" text="查看" size="mini"
|
||
@click="fnNavigatorDetail(item.INSPECTION_ID,item.INSPECTION_USER_ID,item.INSPECTION_INSPECTOR_ID,'view')"></u-button>
|
||
</view>
|
||
<view class="see_btn ml-10"
|
||
v-if="!validStr(item.INSPECTION_USER_SIGN_TIME) && (item.INSPECTION_STATUS == '0' || item.INSPECTION_STATUS == '1')">
|
||
<u-button type="primary" text="核实" size="mini"
|
||
@click="fnNavigatorDetail(item.INSPECTION_ID,item.INSPECTION_USER_ID,item.INSPECTION_INSPECTOR_ID,'verify')"></u-button>
|
||
</view>
|
||
|
||
</view>
|
||
</view>
|
||
</u-list-item>
|
||
</u-list>
|
||
<empty v-else></empty>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import {getSafetyenvironmentalinspectorList} from "../../../api";
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
keyword: '',
|
||
INSPECTION_STATUS: '',
|
||
pageSize: 10,
|
||
currentPage: 1,
|
||
totalPage: 0,
|
||
list: [],
|
||
}
|
||
},
|
||
computed: {
|
||
userInfo() {
|
||
return this.$store.getters.getUserInfo
|
||
}
|
||
},
|
||
onShow() {
|
||
this.resetList()
|
||
},
|
||
methods: {
|
||
validStr(str) {
|
||
if (str != null && str != '' && typeof (str) != 'undefined' && str != 'undefined' && str != 0 && str != 'null') {
|
||
return true
|
||
}
|
||
return false
|
||
},
|
||
async getData() {
|
||
let resData = await getSafetyenvironmentalinspectorList({
|
||
INSPECTION_USER_ID: this.userInfo.USER_ID,
|
||
KEYWORDS: this.keyword,
|
||
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()
|
||
},
|
||
fnNavigatorDetail(INSPECTION_ID, INSPECTION_USER_ID, INSPECTION_INSPECTOR_ID, type) {
|
||
uni.$u.route({
|
||
url: '/pages/safety-environmental-inspection/inspector-confirms/detail',
|
||
params: {
|
||
INSPECTION_ID,
|
||
INSPECTION_USER_ID,
|
||
INSPECTION_INSPECTOR_ID,
|
||
type
|
||
}
|
||
})
|
||
},
|
||
scrolltolower() {
|
||
this.currentPage++;
|
||
if (this.totalPage >= this.currentPage) this.getData();
|
||
},
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.search {
|
||
display: flex;
|
||
|
||
.ml-10 {
|
||
margin-left: 10rpx;
|
||
}
|
||
|
||
.bth-mini {
|
||
width: 100rpx;
|
||
}
|
||
|
||
}
|
||
|
||
.see_btn {
|
||
//width: 200rpx;
|
||
margin: 0 5rpx;
|
||
}
|
||
|
||
</style>
|