qa-regulatory-gwj-app/pages/branch-self-report/index/index.vue

128 lines
3.2 KiB
Vue
Raw Normal View History

2023-11-07 10:08:37 +08:00
<template>
<view class="content">
<view class="search card">
<u--input
prefixIcon="search"
placeholder="请输入关键字"
border="surround"
v-model="companyName"
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>
</view>
2024-07-27 15:13:42 +08:00
2023-11-07 10:08:37 +08:00
</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.companyName }}</text>
2023-11-07 10:08:37 +08:00
</view>
<view class="flex-between mt-10 subtitle">
<text>
属地
<template v-if="item.companyProvince">{{ item.companyProvince }}</template>
<template v-if="item.companyCity"> -- {{ item.companyCity }}</template>
<template v-if="item.companyArea"> -- {{ item.companyArea }}</template>
2023-11-07 10:08:37 +08:00
</text>
</view>
<view class="flex-between mt-10 subtitle">
<text>检查清单数{{ item.checkInspectionsCount }}</text>
<text>检查次数{{ item.checkCount }}</text>
2023-11-07 10:08:37 +08:00
</view>
<view class="flex-between mt-10 subtitle">
<text>忽略{{ item.ignoreHiddenCount }}</text>
<text>轻微{{ item.minorHiddenCount }}</text>
<text>一般{{ item.generalHiddenCount }}</text>
<text>较大{{ item.largeHiddenCount }}</text>
2023-11-07 10:08:37 +08:00
</view>
<view class="flex-between mt-10 subtitle">
<text>重大隐患{{ item.seriousHiddenCount }}</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.companyId)"></u-button>
2023-11-07 10:08:37 +08:00
</view>
</view>
</u-list-item>
</u-list>
<empty v-else></empty>
</view>
</template>
<script>
import { getInspectionReportCorpInfoList } from "@/api";
2023-11-07 10:08:37 +08:00
export default {
data() {
return {
companyName: '',
limit: 10,
curPage: 1,
2023-11-07 10:08:37 +08:00
totalPage: 0,
list: [],
}
},
computed: {
userInfo() {
return this.$store.getters.getUserInfo
}
},
onLoad() {
this.resetList()
},
2024-10-10 10:14:31 +08:00
methods: {
async getData() {
let { page } = await getInspectionReportCorpInfoList({
companyName: this.companyName,
curPage: this.curPage,
limit: this.limit,
2023-11-07 10:08:37 +08:00
});
this.list = [...this.list, ...page.list];
this.totalPage = page.totalPage;
2023-11-07 10:08:37 +08:00
},
resetList() {
this.limit = 10
this.curPage = 1
2023-11-07 10:08:37 +08:00
this.list = []
this.getData()
},
fnNavigatorDetail(companyId) {
2023-11-07 10:08:37 +08:00
uni.$u.route({
url: '/pages/branch-self-report/index/inspection-records',
params: {
companyId,
2023-11-07 10:08:37 +08:00
}
})
},
scrolltolower() {
this.curPage++;
if (this.totalPage >= this.curPage) this.getData();
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
.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>