123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <template>
- <view class="uni-container uni-container-bg">
- <view class="container">
- <!-- <uni-section title="" padding style="background-color: #F5F7F9;">
- <view class="example-body">
- <view class="tag-view" style="display: flex;flex-wrap: wrap;">
- <uni-tag style="margin: 5px;cursor: pointer;padding: 5px;" v-for="(item,index) in tagLabel"
- :key="index" :inverted="true" :text="item.label" type="primary"
- @click="setInverted(item.value,item.rotues)" :class="{bg:item.value==clicKValue}" />
- </view>
- </view>
- </uni-section> -->
- <view style="margin-bottom: 20rpx;">
- <u-tabs :list="items" @click="onClickItem" activeStyle="color:#4CB2B6" inactiveStyle="color:#000"
- :current="current" :scrollable="true" lineWidth="60" lineColor="#4CB2B6"></u-tabs>
- <view style="height: 2rpx;background-color: #E5E5E5;margin-top: 10rpx;"></view>
- </view>
- <component :is="selectedTag" v-if="selectedTag!=''">
- </component>
- <view class="" v-else-if="fireInspection">
- <u-list @scrolltolower="scrolltolower" v-if="tableData.length>0 && isLoaded">
- <view class="top">
- <view class="">
- <u-search placeholder="请输入任务名称" bgColor="#edf6f9" borderColor="#4cb2b6" v-model="taskname"
- :showAction="false"></u-search>
- <view class="search-time">
- <uni-datetime-picker v-model="kewords" type="daterange" @custom="changeLog" />
- </view>
- </view>
- <view class="search-icon">
- <u-icon name="search" color="#4CB2B6" size="42" @click="changeLog"></u-icon>
- </view>
- </view>
- <u-list-item v-for="(item, index) in tableData" :key="index" @click.native="onClick(item)" link>
- <uni-row class="demo-uni-row padding-tb-sm" :gutter="20" width="100%">
- <uni-col :span="24" class="text-xl font-weight-700"
- v-if="my==''">{{ item.task_name }}</uni-col>
- <!-- <u-badge v-if="item.isdenger==1" :value="1011" numberType="overflow" isDot
- customStyle="margin-right:40px" /> -->
- <u-icon v-if="item.isdenger==1&&my==''" name="warning-fill" color="#ff5647" size="28"
- customStyle="margin-right:20px"></u-icon>
- </uni-row>
- <uni-row class="demo-uni-row padding-bottom-sm" :gutter="20" width="100%">
- <uni-col :span="24" class="text-cut text-grey1">任务介绍:{{ item.insp_name }}</uni-col>
- <u-icon v-if="item.isdenger==1&&my!=''" name="warning-fill" color="#ff5647" size="28"
- customStyle="margin-right:20px"></u-icon>
- </uni-row>
- <uni-row class="demo-uni-row padding-bottom-sm" :gutter="20" width="100%">
- <uni-col :span="24" class="text-cut text-grey1">详情描述:{{ item.description }}</uni-col>
- </uni-row>
- <uni-row class="demo-uni-row padding-bottom-sm" :gutter="20" width="100%">
- <uni-col :span="24" class="text-cut text-grey1">提交时间:{{ item.inspect_time}}</uni-col>
- <!-- <uni-col :span="16" class="text-cut text-grey1">提交时间:{{ item.cutofftime }}</uni-col>
- <uni-col :span="8" class="justify-end flex ">
- <u-button class="margin-right-sm" size="small" color="#4CB2B6" style="width: 160rpx; "
- > 查看 </u-button>
- <u-button size="small" color="red" style="width: 160rpx;">删除</u-button>
- </uni-col> -->
- </uni-row>
- <!-- <uni-row class="demo-uni-row padding-bottom-sm" :gutter="20" width="100%">
- <uni-col :span="24" class="text-cut text-grey1">
- <u-avatar-group :urls="item.url" size="35" gap="0.4" maxCount='5' @showMore="onClick(item)">
- </u-avatar-group>
- </uni-col>
- </uni-row> -->
- </u-list-item>
- </u-list>
- <view v-else-if="tableData.length==0 && isLoaded" style="text-align: center;">
- <view class="text-gray" style="padding-top: 20px;">
- <img :src="tan90" alt="暂无数据" />
- </view>
- </view>
- <!-- 加载中 -->
- <isLodingModel></isLodingModel>
- </view>
- </view>
- </view>
- </template>
- <script>
- let that = null;
- import {
- getInspecthisPage,
- getSelfInspecthisPage
- } from '@/api/task';
- import {
- getInsHisImgurl,
- } from '@/api/check_record';
- import {
- shijianc
- } from '@/utils/common.js'
- import config from '@/config'
- const baseUrlImg = config.baseUrlImg
- export default {
- components: {
- Drill: () => import('@/pagesB/components/drill/index.vue'),
- FpdDetection: () => import('@/pagesB/components/fpd_detection/fpd_detection.vue'),
- FireSpecial: () => import('@/pagesB/components/fireSpecial/index.vue'),
- FireWork: () => import('@/pagesB/components/fireWork/index.vue')
- },
- data() {
- return {
- items: [{
- name: '消防检查结果'
- }, {
- name: '检查项培训演练'
- }, {
- name: '消防设施维护和检测'
- }, {
- name: '特种作业人员'
- }, {
- name: '动火审批'
- }],
- isLoaded: false,
- tan90: `${baseUrlImg}/tan90.png`,
- // 数据
- tableData: [],
- taskname: '',
- // 每页数据量
- pageSize: 20,
- kewords: [],
- // 当前页
- pageNo: 1,
- // 数据总量
- total: 0,
- // tableData数据加载中
- loading: false,
- statusList: {
- 0: '未完成',
- 1: '已完成',
- 2: '审核中',
- 3: '审核未通过'
- },
- my: '',
- title: '暂无数据',
- tagLabel: [{
- value: 0,
- rotues: '',
- label: '消防检查结果'
- },
- {
- value: 1,
- rotues: 'Drill',
- label: '检查项培训演练'
- },
- {
- value: 2,
- rotues: 'fpd-detection',
- label: '消防设施维护和检测'
- },
- {
- value: 3,
- rotues: 'fire-special',
- label: '特种作业人员'
- },
- {
- value: 4,
- rotues: 'fire-work',
- label: '动火审批'
- },
- ],
- drill: false,
- fireService: false,
- special: false,
- hotApproval: false,
- fireInspection: true,
- clicKValue: 0, //点击的样式
- selectedTag: '',
- current: ''
- };
- },
- watch: {
- loading: {
- handler(newLength, oldLength) {
- this.$modal.isLoadingModel(this.loading)
- },
- immediate: true
- }
- },
- // 在 vue页面,向起始页通过事件传递数据
- onLoad: function(option) {
- if (option.my) {
- this.my = option.my
- }
- },
- onShow() {
- this.tableData = []
- this.getData(1);
- this.selectedTag = ''
- this.fireInspection = true
- this.current = 0
- },
- methods: {
- // tab头部点击
- onClickItem(e) {
- if (this.current !== e.index) {
- this.current = e.index
- }
- this.fireInspection = false;
- switch (e.index) {
- case 0:
- this.fireInspection = true //消防检查结果
- this.selectedTag = ''
- break;
- case 1:
- this.drill = true //培训与演练
- this.selectedTag = 'Drill'
- break;
- case 2:
- this.fireService = true //消防设施维护和检测
- this.selectedTag = 'FpdDetection'
- break;
- case 3:
- this.special = true //特种作业人员
- this.selectedTag = 'FireSpecial'
- break;
- case 4:
- this.hotApproval = true //动火审批
- this.selectedTag = 'FireWork'
- break;
- default:
- break;
- }
- },
- setInverted(value, rotues) { //标签的点击事件
- this.fireInspection = false;
- // this.drill = false;
- // this.fireService = false;
- // this.special = false;
- // this.hotApproval = false;
- switch (value) {
- case 0:
- this.fireInspection = true //消防检查结果
- break;
- case 1:
- // this.drill = true //培训与演练
- // break;
- // case 2:
- // this.fireService = true //消防设施维护和检测
- // break;
- // case 3:
- // this.special = true //特种作业人员
- // break;
- // case 4:
- // this.hotApproval = true //动火审批
- // break;
- // default:
- // break;
- }
- this.clicKValue = value
- this.selectedTag = rotues;
- },
- changeLog(e) {
- this.title = ''
- this.isLoaded = false
- this.tableData = []
- if (this.kewords.length > 0 && this.kewords[0].indexOf(":") === -1) {
- this.kewords[0] = this.kewords[0] + ' 00:00:00'
- this.kewords[1] = this.kewords[1] + ' 23:59:59'
- }
- this.getData(1)
- },
- // =================数据转换==================
- statusListTran(val) {
- //status状态转换
- return this.statusList[val];
- },
- // ================================
- // 获取数据
- getData(pageNo, value = '') {
- this.loading = true;
- this.pageNo = pageNo;
- let formChuan = {
- pageNo: this.pageNo,
- pageSize: this.pageSize,
- userId: this.$store.state.user.id,
- inspectTime: this.kewords,
- taskName: this.taskname
- }
- if (this.my == 'onlymy') {
- getSelfInspecthisPage(formChuan).then(response => {
- // 为数据赋值:通过展开运算符的形式,进行新旧数据的拼接
- this.isLoaded = true
- this.tableData = [...this.tableData, ...response.data.records];
- this.tableData.map(i => {
- i.inspect_time = shijianc(i.inspect_time)
- })
- // this.tableData = response.data.list;
- this.total = response.data.total;
- this.loading = false;
- });
- } else {
- getInspecthisPage(formChuan).then(response => {
- this.isLoaded = true
- // 为数据赋值:通过展开运算符的形式,进行新旧数据的拼接
- this.tableData = [...this.tableData, ...response.data.list];
- this.tableData.map(i => {
- i.inspect_time = shijianc(i.inspect_time)
- })
- // this.tableData = response.data.list;
- this.total = response.data.total;
- this.loading = false;
- });
- }
- },
- onClick(val) {
- this.isLoaded = false
- if (this.my == "myonly") {
- uni.navigateTo({
- url: `/pagesB/fire/check_record/picture/picture?items=${JSON.stringify(val)}`
- });
- } else {
- uni.navigateTo({
- url: `/pagesB/fire/check_record/picture/picture?id=${val.id}`
- });
- }
- },
- gotoDetails(val) {
- this.isLoaded = false
- var url = '';
- if (val.status == 1) {
- //主动检查详情
- url = '/pagesA/fire/check_active/check_details/check_details?id=' + val.id;
- } else if (val.status == 2) {
- //每日巡检详情
- url = '/pages/s9Unit/daily_inspection/inspection_details/inspection_details?id=' + val.id;
- } else if (val.status == 3) {
- url = '/pagesA/fire/hidden_trouble/trouble_details/trouble_details?id=' + val.id;
- } else if (val.status == 4) {
- url = '/pagesA/fire/check_tasks/tasks_details/tasks_details?id=' + val.id;
- } else {}
- uni.navigateTo({
- url: url
- });
- },
- gotoPersonnelDetails(val) {
- this.isLoaded = false
- uni.navigateTo({
- url: '/pagesB/fire/check_record/personnel_record/personnel_record?id=' + val.id
- });
- },
- // 触底的事件
- scrolltolower() {
- // 判断是否还有下一页数据
- if (this.pageNo * this.pageSize >= this.total) return uni.showToast({
- title: `数据加载完毕`
- });
- // 判断是否正在请求其它数据,如果是,则不发起额外的请求
- if (this.loading) return;
- this.pageNo += 1;
- this.getData(this.pageNo);
- }
- // 触底的事件
- // onReachBottom() {
- // // 判断是否还有下一页数据
- // if (this.pageNo * this.pageSize >= this.total) return uni.showToast({
- // title: `数据加载完毕`
- // })
- // // 判断是否正在请求其它数据,如果是,则不发起额外的请求
- // if (this.loading) return
- // this.pageNo += 1
- // this.getData(this.pageNo)
- // }
- }
- };
- </script>
- <style scoped lang="scss">
- .uni-container {
- height: 100vh;
- }
- page{
- background-color:#F5F7F9 ;
- }
- .top {
- display: flex;
- align-items: center;
- width: 90%;
- margin-left: 5%;
- justify-content: space-between;
- .search-time {
- display: flex;
- align-items: center;
- margin-top: 40rpx;
- margin-bottom: 20rpx;
- .time-item {
- margin-right: 20rpx;
- }
- }
- }
- ::v-deep .u-icon__icon {
- top: 2px !important;
- padding-left: 3px !important;
- }
- ::v-deep .uni-section-header {
- padding: 0 !important;
- }
- .bg {
- background-color: #bdbdbd;
- }
- </style>
|