| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <!--
- * @Title:
- * @Description: 运维公司技术员已巡检上报列表
- * @Author: swp
- * @Date: 2022-08-24 10:49:21
- * @LastEditors:
- * @LastEditTime: 2022-08-24 10:49:21
- -->
- <template>
- <view class="wrap">
- <uni-nav-bar dark :fixed="true" backgroundColor="#3F9EFF" statusBar="false" left-icon="left" left-text="返回"
- @clickLeft="toBack">
- <view class="nav-title">
- <text>{{title}}</text>
- </view>
- </uni-nav-bar>
- <view class="container">
- <uni-list>
- <uni-list-item v-for="item in list" :key="item.id">
- <template v-slot:body>
- <view class="list-item-block">
- <view class="items-line">
- <image class="item-title-run-status-icon" style="box-shadow:0 0 2px 2px lightblue"
- src="/static/images/list/inspection_item.png" mode="widthFix">
- </image>
- <text class="item-title-rtu-name">{{item.rtuName}}</text>
- <text class="item-title-rtu-code">[{{item.rtuCode}}]</text>
- </view>
- <view class="items-line">
- <uni-icons class="input-uni-icon" type="auth" size="18" color="lightblue" />
- <text class="item-text-lable">填报人:</text>
- <text v-if="rainSeasonKind ==1"
- class="item-text-content">{{item.beforeRainSeasonReportUserName}}</text>
- <text v-else-if="rainSeasonKind ==2"
- class="item-text-content">{{item.rainSeasonFirstReportUserName}}</text>
- <text v-else-if="rainSeasonKind ==3"
- class="item-text-content">{{item.rainSeasonSecondReportUserName}}</text>
- </view>
- <view class="items-line">
- <uni-icons class="input-uni-icon" type="calendar" size="18" color="lightblue" />
- <text class="item-text-lable">填报时间:</text>
- <text v-if="rainSeasonKind ==1"
- class="item-text-content">{{item.beforeRainSeasonReportTime}}</text>
- <text v-else-if="rainSeasonKind ==2"
- class="item-text-content">{{item.rainSeasonFirstReportTime}}</text>
- <text v-else-if="rainSeasonKind ==3"
- class="item-text-content">{{item.rainSeasonSecondReportTime}}</text>
- </view>
- <view class="item-button-group">
- <view v-if="rainSeasonKind ==1" class="item-button"
- @click="onBeforeRainDetailViewClick(item.beforeRainSeasonReportId)">
- <view class="items-line">
- <uni-icons class="input-uni-icon" type="info" size="18" color="coral" />
- <text class="button-text">巡检填报详情</text>
- </view>
- </view>
- <view v-if="rainSeasonKind ==2" class="item-button"
- @click="onRainFirstDetailViewClick(item.rainSeasonFirstReportId)">
- <view class="items-line">
- <uni-icons class="input-uni-icon" type="info" size="18" color="coral" />
- <text class="button-text">巡检填报详情</text>
- </view>
- </view>
- <view v-if="rainSeasonKind ==3" class="item-button"
- @click="onRainSencodDetailViewClick(item.rainSeasonSecondReportId)">
- <view class="items-line">
- <uni-icons class="input-uni-icon" type="info" size="18" color="coral" />
- <text class="button-text">巡检填报详情</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- </uni-list-item>
- </uni-list>
- <uni-group>
- <view class="pagination-block">
- <uni-pagination show-icon :page-size="pageSize" :current="pageCurrent" :total="total"
- @change="pageChange" />
- </view>
- </uni-group>
- </view>
- </view>
- </template>
- <script>
- import {
- role
- } from "@/api/role.js";
- import http from '@/http/api.js';
- export default {
- components: {
- },
- onLoad(option) {
- if (this.userInfo.role_name === role['admin']) {
- this.permission.admin = true;
- } else if (this.userInfo.role_name === role['orgAdmin']) {
- this.permission.orgAdmin = true;
- } else if (this.userInfo.role_name === role['companyAdmin']) {
- this.permission.companyAdmin = true;
- } else if (this.userInfo.role_name === role['companyServciePerson']) {
- this.permission.companyServciePerson = true;
- }
- this.rainSeasonKind = option.rainSeasonKind;
- this.query['servicePersonId'] = option.userId;
- this.query['rainSeasonKind'] = option.rainSeasonKind;
- console.log(JSON.stringify(this.query))
- if (this.rainSeasonKind == 1) {
- this.title = '汛前已巡检设备信息';
- } else if (this.rainSeasonKind == 2) {
- this.title = '汛中(一)已巡检设备信息';
- } else if (this.rainSeasonKind == 3) {
- this.title = '汛中(二)已巡检设备信息';
- }
- this.getPage();
- },
- data() {
- return {
- rainSeasonKind: 0,
- title: '已巡检设备信息',
- permission: {
- 'admin': false,
- 'orgAdmin': false,
- 'companyAdmin': false,
- 'companyServciePerson': false,
- },
- list: [],
- pageSize: 10,
- // 当前页
- pageCurrent: 1,
- // 数据总量
- total: 0,
- query: {},
- inputStyles: {
- color: '#808080',
- borderColor: '#d3d3d3'
- }
- }
- },
- computed: {
- },
- onShow() {
- },
- methods: {
- toBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- onBackPress() {
- // #ifdef APP-PLUS
- plus.key.hideSoftKeybord();
- // #endif
- },
- // 分页触发
- pageChange(e) {
- this.pageCurrent = e.current;
- this.getPage()
- },
- onBeforeRainDetailViewClick(id) {
- console.log("onDetailViewClick " + id)
- var url = '/pages/equipment-inspection/inspectionreportview?type=1&id=' + id;
- uni.navigateTo({
- url: url
- })
- },
- onRainFirstDetailViewClick(id) {
- console.log("onDetailViewClick " + id)
- var url = '/pages/equipment-inspection/inspectionreportview?type=2&id=' + id;
- uni.navigateTo({
- url: url
- })
- },
- onRainSencodDetailViewClick(id) {
- console.log("onDetailViewClick " + id)
- var url = '/pages/equipment-inspection/inspectionreportview?type=3&id=' + id;
- uni.navigateTo({
- url: url
- })
- },
- getPage(params = {}) {
- let that = this;
- const current = this.pageCurrent;
- const size = this.pageSize;
- let postData = Object.assign(this.query, params);
- http.request({
- url: '/galaxy-business/equipment/inspection/rain/page',
- method: 'GET',
- params: {
- current,
- size,
- },
- data: postData,
- }).then(res => {
- if (res.data != null) {
- if (res.data.records != null) {
- that.list = res.data.records;
- }
- this.total = res.data.total;
- }
- }).catch(err => {
- console.log(err)
- })
- },
- }
- }
- </script>
- <style>
- /* page {
- background-color: rgb(240, 242, 244);
- } */
- </style>
- <style lang="scss" scoped>
- </style>
|