| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- <!--
- * @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-section title="工单统计" type="circle">
- <uni-group>
- <uni-row>
- <uni-col :span="12">
- <view class="list-item-block">
- <view class="line">
- <view class="text" style="color: gray;">工单共有:<span
- style="margin-left: 10px;color: cornflowerblue;">{{countInfo.orderCount}}</span>
- </view>
- </view>
- <view class="line">
- <view class="text" style="color: gray;">待处理工单共有:<span
- style="margin-left: 10px;color: cornflowerblue;">{{countInfo.orderProcessingCount}}</span>
- </view>
- </view>
- <view class="line">
- <view class="text" style="color: gray;">完结工单共有:<span
- style="margin-left: 10px;color: cornflowerblue;">{{countInfo.closeOrderCount}}</span>
- </view>
- </view>
- </view>
- </uni-col>
- <uni-col :span="12">
- <view class="list-item-block">
- <view class="line">
- <view class="text" style="color: gray;">未接工单共有:<span
- style="margin-left: 10px;color: cornflowerblue;">{{countInfo.orderUnconfirmCount}}</span>
- </view>
- </view>
- <view class="line">
- <view class="text" style="color: gray;">待完结审批共有:<span
- style="margin-left: 10px;color: cornflowerblue;">{{countInfo.closeApproveOrderCount}}</span>
- </view>
- </view>
- </view>
- </uni-col>
- </uni-row>
- </uni-group>
- </uni-section>
- <uni-section title="工单查询" type="circle">
- <view class="search-block">
- <view style="margin-top: 10px;padding-left: 10px;padding-right: 10px;">
- <view class="select-checkbox">
- <uni-data-checkbox v-model="orderStatusOption" :localdata="orderStatusItems">
- </uni-data-checkbox>
- </view>
- </view>
- <view class="submit-btn">
- <button type="default" @click="search">查 询</button>
- </view>
- </view>
- </uni-section>
- <uni-section title="工单列表信息" type="circle">
- <uni-list>
- <uni-list-item v-for="item in list" :key="item.id" showArrow clickable
- @click="toOrderProcessDetail(item)">
- <template v-slot:body>
- <view class="list-item-block">
- <view class="line">
- <uni-icons class="input-uni-icon" type="refresh" size="18" color="lightblue" />
- <view class="text" style="color: gray;">工单状态:<span
- style="margin-left: 10px;color: cornflowerblue;">{{item.orderStatusName}}</span>
- </view>
- </view>
- <view class="line">
- <uni-icons class="input-uni-icon" type="personadd" size="18" color="lightblue" />
- <view class="text" style="color: gray;">创建人:<span
- style="margin-left: 10px;color: cornflowerblue;">{{item.createOrderPersonName}}</span>
- </view>
- </view>
- <view class="line">
- <uni-icons class="input-uni-icon" type="calendar" size="18" color="lightblue" />
- <view class="text" style="color: gray;">创建时间:<span
- style="margin-left: 10px;color: cornflowerblue;">{{item.createTime}}</span>
- </view>
- </view>
- <view class="line">
- <uni-icons class="input-uni-icon" type="help" size="18" color="lightblue" />
- <view class="text text-ellipsis" style="color: gray;width: 90%;"
- @click="toOrderProcessDetail(item)">故障问题描述:<span class="text-underline"
- style="margin-left: 10px;color: cornflowerblue;">{{item.orderDesc}}</span>
- </view>
- </view>
- </view>
- </template>
- </uni-list-item>
- </uni-list>
- </uni-section>
- <uni-group>
- <view class="pagination-block">
- <uni-pagination show-icon :pageSize="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: {},
- data() {
- return {
- title: '工单管理',
- permission: {
- 'admin': false,
- 'orgAdmin': false,
- 'companyAdmin': false,
- 'companyServciePerson': false,
- },
- postName: '',
- searchorderstatus: ['0'],
- searchwarnstatus: [],
- orderStatusItems: [{
- 'value': 0,
- 'text': '全部'
- }, {
- 'value': 1,
- 'text': '未接工单'
- }, {
- 'value': 2,
- 'text': '待处理工单'
- }, {
- 'value': 6,
- 'text': '待完结审批工单'
- }, {
- 'value': 7,
- 'text': '工单完结'
- }],
- orderStatusOption: 0,
- countInfo: {
- orderCount: 0,
- orderUnconfirmCount: 0,
- orderProcessingCount: 0,
- closeApproveOrderCount: 0,
- closeOrderCount: 0,
- },
- warnKindItems: [{
- 'value': 0,
- 'text': '全部'
- }, {
- 'value': 1,
- 'text': '离线'
- }, {
- 'value': 2,
- 'text': '时钟异常'
- }, {
- 'value': 3,
- 'text': '雨量漏报'
- }, {
- 'value': 4,
- 'text': '水位漏报'
- }, {
- 'value': 5,
- 'text': '5分钟上报延时'
- }, {
- 'value': 6,
- 'text': '雨量小时上报延时'
- }, {
- 'value': 7,
- 'text': '水位小时上报延时'
- }, {
- 'value': 8,
- 'text': '雨量疑似异常值'
- }],
- warnKindOption: 0,
- selectUnconfirm: 0,
- selectProcess: 0,
- pageSize: 10,
- pageCurrent: 1,
- total: 0,
- list: [],
- regionTree: [],
- regionCode: '',
- selectedTreeNode: '',
- searchRtuNameVal: '',
- searchRtuCodeVal: '',
- query: {},
- inputStyles: {
- color: '#808080',
- borderColor: '#d3d3d3'
- }
- }
- },
- computed: {
- },
- onLoad(option) {
- this.permission.admin = false;
- this.permission.orgAdmin = false;
- this.permission.companyAdmin = false;
- this.permission.companyServciePerson = false;
- 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;
- if (this.userInfo.post_id == '1706859505948098562') {
- this.postName = "engineer";
- } else if (this.userInfo.post_id == '1730535542909140993') {
- this.postName = "servicePerson";
- }
- }
- this.getCountInfo();
- this.pageCurrent = 1;
- this.getPage()
- },
- onShow() {
- this.permission.admin = false;
- this.permission.orgAdmin = false;
- this.permission.companyAdmin = false;
- this.permission.companyServciePerson = false;
- 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;
- if (this.userInfo.post_id == '1706859505948098562') {
- this.postName = "engineer";
- } else if (this.userInfo.post_id == '1730535542909140993') {
- this.postName = "servicePerson";
- }
- }
- },
- methods: {
- //返回上一页
- toBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- onBackPress() {
- // #ifdef APP-PLUS
- plus.key.hideSoftKeybord();
- // #endif
- },
- // 分页触发
- pageChange(e) {
- this.pageCurrent = e.current;
- this.getPage()
- },
- //行政区划选择
- onTreeNodeClick(node) {
- console.log(JSON.stringify(node))
- },
- onTreePopupOpened(e) {
- console.log(JSON.stringify(e))
- },
- onTreePopupClosed(e) {
- console.log(JSON.stringify(e))
- },
- onTreeChange(e) {
- console.log(JSON.stringify(e))
- let nodes = e.detail.value;
- if (nodes.length > 0) {
- let node = nodes[nodes.length - 1];
- this.regionCode = node.value;
- this.query = {};
- this.query['adCode'] = this.regionCode;
- this.searchRtuNameVal = '';
- this.searchRtuCodeVal = '';
- this.pageCurrent = 1;
- this.getPage();
- this.getCountInfo(this.regionCode);
- } else {
- this.regionCode = '';
- this.query = {};
- this.searchRtuNameVal = '';
- this.searchRtuCodeVal = '';
- this.pageCurrent = 1;
- this.getPage();
- this.getCountInfo(this.regionCode);
- }
- },
- onCreateOrderClick() {
- let url = '/pages/check-order/order-add';
- uni.navigateTo({
- url: url
- })
- },
- toOrderProcessDetail(item) {
- let url = '/pages/check-order/processcheckorderlistview?orderType=' + item.orderType + '&orderId=' + item
- .id + '&orderClose=' + item.orderClose + '&orderRate=' + item.orderRate;
- uni.navigateTo({
- url: url
- })
- },
- //录入查询
- search() {
- this.pageCurrent = 1;
- let params = {};
- params['orderStatusOption'] = this.orderStatusOption;
- this.getPage(params);
- },
- searchRtuNameValClear(e) {
- if (e == null || e.length == 0) {
- this.searchRtuNameVal = '';
- if (this.searchRtuNameVal.length == 0) {
- let params = {};
- if (this.searchRtuCodeVal.length > 0) {
- params['rtuCode'] = this.searchRtuCodeVal;
- }
- this.getPage(params);
- }
- }
- },
- searchRtuCodeValClear(e) {
- if (e == null || e.length == 0) {
- this.searchRtuCodeVal = '';
- if (this.searchRtuCodeVal.length == 0) {
- let params = {};
- if (this.searchRtuNameVal.length > 0) {
- params['rtuName'] = this.searchRtuNameVal;
- }
- this.getPage(params);
- }
- }
- },
- call(phone) {
- console.log(phone)
- uni.showModal({
- content: '是否需要拨打[' + phone + ']?',
- showCancel: true,
- success(res) {
- if (res.confirm) {
- uni.makePhoneCall({
- phoneNumber: phone
- });
- }
- }
- });
- },
- onDetailViewClick(id) {
- let url = '/pages/check-order/orderprocessreportdetail?orderId=' + id;
- uni.navigateTo({
- url: url
- })
- },
- onCheckOrderChangeClick(item) {
- let contactUserName = '无';
- if (item.orderConfirm == 1) {
- contactUserName = item.contactUserName;
- }
- let url = '/pages/check-order/orderprocesschange?orderId=' + item.id + "&contactUserName=" +
- contactUserName;
- uni.navigateTo({
- url: url
- })
- },
- onLocationClick(item) {
- if (item.lat && item.lat) {
- let lat = item.lat;
- let lng = item.lng;
- let name = item.rtuName;
- let add = '';
- if (item.locationDesc) {
- add = item.locationDesc;
- }
- uni.openLocation({
- latitude: Number(lat),
- longitude: Number(lng),
- name: name,
- address: "",
- success() {}
- })
- } else {
- uni.showModal({
- content: '经纬度为空,请确认!',
- showCancel: true,
- success(res) {
- if (res.confirm) {
- }
- }
- });
- }
- },
- onManuallyCloseOrderClick(id) {
- uni.navigateTo({
- url: '/pages/check-order/manuallyclosecheckorder?id=' + id
- })
- },
- onComfireCheckOrderClick(id) {
- let url =
- '/pages/check-order/order-confirm?id=' + id;
- uni.navigateTo({
- url: url
- })
- },
- orderStatusOptionChange: function(evt) {
- console.log(JSON.stringify(evt))
- console.log(this.orderStatusOption)
- this.pageCurrent = 1;
- let params = {};
- this.getPage(params);
- },
- warnKindOptionChange: function(evt) {
- let params = {};
- this.pageCurrent = 1;
- this.getPage(params);
- },
- getRegionTree() {
- var that = this;
- http.request({
- url: '/galaxy-business/baseinfo/region/tree',
- method: 'GET',
- }).then(res => {
- if (res.data != null) {
- that.regionTree = res.data;
- that.regionCode = that.regionTree[0].id;
- that.selectedTreeNode = that.regionTree[0].id;
- that.query = {};
- that.query['adCode'] = that.regionCode;
- that.getPage();
- that.getCountInfo(that.regionCode);
- }
- }).catch(err => {
- console.log(err)
- })
- },
- getCountInfo() {
- let that = this;
- http.request({
- url: '/galaxy-business/order/count',
- method: 'GET',
- }).then(res => {
- that.countInfo = res.data;
- })
- },
- getPage(params = {}) {
- const current = this.pageCurrent;
- const size = this.pageSize;
- let postData = Object.assign(params, this.query);
- let that = this;
- http.request({
- url: '/galaxy-business/order/page',
- method: 'GET',
- params: {
- current,
- size,
- },
- data: postData,
- }).then(res => {
- if (res.data.records != null) {
- that.list = res.data.records;
- }
- this.total = res.data.total;
- }).catch(err => {
- console.log(err)
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .select-checkbox {
- margin-top: 0px;
- margin-bottom: 5px;
- padding-left: 15px;
- }
- </style>
|