呼叫管理
This commit is contained in:
@@ -1,19 +1,235 @@
|
||||
<template>
|
||||
<view>
|
||||
|
||||
<view class="zd_container">
|
||||
<nav-bar title="任务管理"></nav-bar>
|
||||
<view class="zd_content">
|
||||
<view class="zd_wrapper grid-wraper">
|
||||
<view class="locate_block" v-for="e in areaArr" :key="e.region_code">
|
||||
<view class="locate_name" @click="getPonit (e)">
|
||||
<view class="title_1">{{e.region_name}}</view>
|
||||
<view class="iconfont open_icon" :class="{'is_reverse': e.checked === true}"></view>
|
||||
</view>
|
||||
<view v-show="e.checked === true" class="site_block" ref="liCon">
|
||||
<view class="site_item" v-for="(el, i) in e.pointArr" :key="i">
|
||||
<view class="site_item_box">
|
||||
<text class="title_2">站点</text>
|
||||
<view class="site_item_box_inner_r" @click="setcode(el)">
|
||||
<text>{{el.device_name}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="submit-bar">
|
||||
<view class="dot_item">
|
||||
<view class="p1">起始点</view>
|
||||
<view class="p2">设备号:{{sObj.device_name}}</view>
|
||||
</view>
|
||||
<view class="dot_item">
|
||||
<view class="p1">目标点</view>
|
||||
<view class="p2">设备号:{{nObj.device_name}}</view>
|
||||
</view>
|
||||
<view class="btn_block">
|
||||
<button class="submit-button" :class="{'btn-disabled': JSON.stringify(sObj) === '{}' && JSON.stringify(nObj) === '{}'}" @click="cancle">清空</button>
|
||||
<button class="submit-button" :class="{'btn-disabled': JSON.stringify(sObj) === '{}' || JSON.stringify(nObj) === '{}'}" :disabled="disabled1" @click="toSure">确认</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NavBar from '@/components/NavBar.vue'
|
||||
import {queryArea, queryPointByArea, callTask} from '@/utils/getData2.js'
|
||||
export default {
|
||||
components: {
|
||||
NavBar
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
// interTime: this.$store.getters.setTime,
|
||||
// timer: null,
|
||||
areaArr: [],
|
||||
pointArr: [],
|
||||
regobj: {},
|
||||
disabled1: false,
|
||||
sObj: {},
|
||||
nObj: {},
|
||||
isS: false
|
||||
};
|
||||
},
|
||||
created () {
|
||||
this.initArea()
|
||||
},
|
||||
// beforeDestroy () {
|
||||
// clearInterval(this.timer)
|
||||
// },
|
||||
methods: {
|
||||
// refresh (e) {
|
||||
// this.timer = setInterval(() => {
|
||||
// this.initPonit(e)
|
||||
// }, this.interTime)
|
||||
// },
|
||||
async initArea () {
|
||||
let res = await queryArea()
|
||||
this.areaArr = [...res.result]
|
||||
this.areaArr.map(el => {
|
||||
this.$set(el, 'checked', false)
|
||||
this.$set(el, 'pointArr', [])
|
||||
})
|
||||
if (this.areaArr.length > 0) {
|
||||
this.getPonit(this.areaArr[0])
|
||||
}
|
||||
},
|
||||
async initPonit (e) {
|
||||
let res = await queryPointByArea(e.region_code)
|
||||
this.regobj = e
|
||||
this.areaArr.map(el => {
|
||||
if (el.region_code === e.region_code) {
|
||||
this.$set(el, 'pointArr', [...res.result])
|
||||
}
|
||||
})
|
||||
},
|
||||
getPonit (e) {
|
||||
// clearInterval(this.timer)
|
||||
this.areaArr.map(el => {
|
||||
if (el.region_code !== e.region_code) {
|
||||
el.checked = false
|
||||
}
|
||||
if (el.region_code === e.region_code) {
|
||||
e.checked = !e.checked
|
||||
}
|
||||
})
|
||||
if (e.checked) {
|
||||
this.initPonit(e)
|
||||
// this.refresh(e)
|
||||
}
|
||||
},
|
||||
setcode (el) {
|
||||
if (this.isS === false) {
|
||||
this.sObj = el
|
||||
this.isS = true
|
||||
} else if (this.isS) {
|
||||
this.nObj = el
|
||||
this.isS = false
|
||||
}
|
||||
},
|
||||
/** 清空点位选择 */
|
||||
cancle () {
|
||||
this.sObj = {}
|
||||
this.nObj = {}
|
||||
this.disabled1 = false
|
||||
},
|
||||
toSure () {
|
||||
this.disabled1 = true
|
||||
if (JSON.stringify(this.sObj) === '{}' || JSON.stringify(this.nObj) === '{}') {
|
||||
this.disabled1 = false
|
||||
return
|
||||
}
|
||||
this._callTask()
|
||||
},
|
||||
async _callTask () {
|
||||
try {
|
||||
let res = await callTask(this.sObj.device_code, this.nObj.device_code)
|
||||
this.cancle()
|
||||
uni.showToast({
|
||||
title: res.desc,
|
||||
icon: 'none'
|
||||
})
|
||||
// clearInterval(this.timer)
|
||||
// this.timer = null
|
||||
// setTimeout(() => {
|
||||
// this.refresh()
|
||||
// this.cancle()
|
||||
// }, 2000)
|
||||
} catch (err) {
|
||||
this.disabled1 = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus">
|
||||
|
||||
@import '../../common/style/mixin.styl';
|
||||
.zd_content
|
||||
padding-bottom 152rpx
|
||||
.locate_block
|
||||
width 100%
|
||||
.locate_name
|
||||
position relative
|
||||
_wh(100%,48rpx)
|
||||
.title_1
|
||||
_font(32rpx,48rpx,#000,500)
|
||||
.open_icon
|
||||
position absolute
|
||||
right 0
|
||||
top 0
|
||||
_wh(48rpx,48rpx)
|
||||
_font(40rpx,48rpx,$red,,right)
|
||||
transition all .3s
|
||||
transform rotateZ(-90deg)
|
||||
&:before
|
||||
content: "\e6db";
|
||||
.is_reverse
|
||||
transform rotateZ(90deg)
|
||||
.site_block
|
||||
_wh(100%,auto)
|
||||
overflow hidden
|
||||
transition height .3s
|
||||
_fj(flex-start,,,wrap)
|
||||
padding-bottom 10rpx
|
||||
.site_item
|
||||
_wh(32%,100rpx)
|
||||
padding 0 10rpx
|
||||
margin-top 12rpx
|
||||
background-color #e5e5e5
|
||||
border-radius 5px
|
||||
overflow hidden
|
||||
_fj(center)
|
||||
&:nth-child(3n+2)
|
||||
margin-left 2%
|
||||
margin-right 2%
|
||||
.site_item_box
|
||||
_wh(100%, 80rpx)
|
||||
_fj()
|
||||
.title_2
|
||||
width 36rpx
|
||||
_font(28rpx,40rpx,#000,500)
|
||||
.site_item_box_inner_r
|
||||
_fj(center)
|
||||
_wh(calc(100% - 36rpx), 100%)
|
||||
background-color #fff
|
||||
border-radius 3px
|
||||
padding 0 5rpx
|
||||
overflow hidden
|
||||
text
|
||||
_font(28rpx,40rpx,#999,,center)
|
||||
.submit-bar
|
||||
justify-content space-between
|
||||
padding 10rpx
|
||||
.dot_item
|
||||
width 35%
|
||||
background-color #e5e5e5
|
||||
_fj(center,,column)
|
||||
.p1
|
||||
_wh(100%, 52rpx)
|
||||
_font(30rpx,52rpx,,,center)
|
||||
border-bottom 1rpx solid #fff
|
||||
overflow hidden
|
||||
.p2
|
||||
_wh(100%, 80rpx)
|
||||
_fj(center)
|
||||
padding 0 5rpx
|
||||
_font(30rpx,40rpx,,,center)
|
||||
overflow hidden
|
||||
word-break break-all
|
||||
.btn_block
|
||||
_fj(,,column)
|
||||
align-content: flex-end
|
||||
.submit-button
|
||||
line-height 56rpx
|
||||
margin 0
|
||||
&:nth-child(1)
|
||||
margin-bottom 10rpx
|
||||
</style>
|
||||
|
||||
@@ -37,32 +37,50 @@ export const authority = () => {
|
||||
* 站点管理
|
||||
*/
|
||||
// 1.1查询所有区域信息
|
||||
export const queryArea = () => request({
|
||||
url:'api/hand/queryArea',
|
||||
data: {}
|
||||
})
|
||||
// export const queryArea = () => {
|
||||
// let res = {
|
||||
// result: [{region_code: '1', region_name: 'A1'}, {region_code: '2', region_name: 'A2'}, {region_code: '3', region_name: 'A2'}, {region_code: '4', region_name: 'A10'}]
|
||||
// }
|
||||
// return res
|
||||
// }
|
||||
// export const queryArea = () => request({
|
||||
// url:'api/hand/queryArea',
|
||||
// data: {}
|
||||
// })
|
||||
export const queryArea = () => {
|
||||
let res = {
|
||||
result: [{region_code: '1', region_name: 'A1'}, {region_code: '2', region_name: 'A2'}, {region_code: '3', region_name: 'A2'}, {region_code: '4', region_name: 'A10'}]
|
||||
}
|
||||
return res
|
||||
}
|
||||
// 1.2根据区域查询设备编号及状态
|
||||
export const queryPointByArea = (code) => request({
|
||||
url:'api/hand/queryPointByArea',
|
||||
data: {
|
||||
areaCode: code
|
||||
}
|
||||
})
|
||||
// export const queryPointByArea = () => {
|
||||
// let res = {
|
||||
// result: [{
|
||||
// device_code: '1',
|
||||
// device_name: 'JLDFJLLJ'
|
||||
// }]
|
||||
// }
|
||||
// return res
|
||||
// }
|
||||
// export const queryPointByArea = (code) => request({
|
||||
// url:'api/hand/queryPointByArea',
|
||||
// data: {
|
||||
// areaCode: code
|
||||
// }
|
||||
// })
|
||||
export const queryPointByArea = () => {
|
||||
let res = {
|
||||
result: [{
|
||||
device_code: '1',
|
||||
device_name: 'JLDFJLLJ'
|
||||
}, {
|
||||
device_code: '12',
|
||||
device_name: 'JLDFJLLJ'
|
||||
}, {
|
||||
device_code: '13',
|
||||
device_name: 'JLDFJLLJ'
|
||||
}, {
|
||||
device_code: '14',
|
||||
device_name: 'JLDFJLLJ'
|
||||
}, {
|
||||
device_code: '15',
|
||||
device_name: 'JLDFJLLJ'
|
||||
}, {
|
||||
device_code: '16',
|
||||
device_name: 'JLDFJLLJ'
|
||||
}, {
|
||||
device_code: '17',
|
||||
device_name: 'JLDFJLLJ'
|
||||
}]
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
/**
|
||||
* 呼叫管理
|
||||
|
||||
Reference in New Issue
Block a user