qa-regulatory-gwj-vue/src/views/alarm/alarmDeviceMaintenance/components/list.vue

784 lines
28 KiB
Vue
Raw Normal View History

<template>
<div class="app-container">
<el-form label-width="100px">
<el-row>
<el-col :span="8">
<el-form-item label="指标源">
<el-input v-model="KEYWORDS" placeholder="请输入指标源名称"/>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label-width="10px">
<el-button v-waves type="primary" icon="el-icon-search" @click="getQuery">
搜索
</el-button>
<el-button type="success" icon="el-icon-view" size="mini" @click="getReset">
重置
</el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-table
v-loading="listLoading"
ref="multipleTable"
:row-key="getRowKey"
:data="varList"
:header-cell-style="{
'font-weight': 'bold',
'color': '#000'
}"
tooltip-effect="dark"
border
fit
highlight-current-row
>
<el-table-column
:reserve-selection="true"
type="selection"
width="55"
align="center"/>
<el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column prop="INDICATORSOURCE" label="指标源" align="center"/>
<el-table-column prop="ALARMTHRESHOLD" label="报警阈值" align="center"/>
<el-table-column prop="RECIPIENT_NAME" label="接受报警人" align="center"/>
<el-table-column prop="LONGITUDE" label="经纬度" align="center">
<template slot-scope="{row}">
{{ row.LONGITUDE ? row.LONGITUDE + '-' + row.LATITUDE : '未定位' }}
</template>
</el-table-column>
<el-table-column prop="TYPE" label="类型" align="center">
<template slot-scope="{row}">
{{ row.ISONLINE === '0' ? '指标分析' : '报警源接入' }}
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="300">
<template slot-scope="{row}">
<el-button type="primary" icon="el-icon-edit" size="mini" @click="handleEdit(row)"></el-button>
<el-button type="danger" icon="el-icon-delete" plain @click="handleDelete(row.ALARMDEVICEMAINTENANCE_ID)"></el-button>
</template>
</el-table-column>
</el-table>
<div class="page-btn-group">
<div>
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"></el-button>
</div>
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" />
</div>
<el-dialog :visible.sync="addForm.dialogAlarmInfo" :title="'填报报警信息'" width="1000px">
<el-form ref="addForm" :model="addForm.alarmInfo" :rules="addForm.rules" label-width="110px" style="width: 80%;">
<el-form-item label="报警源名称" prop="SOURCE_NAME">
<el-input v-model="addForm.alarmInfo.SOURCE_NAME" disabled placeholder="这里输入指标源..." />
</el-form-item>
<el-form-item label="报警值" prop="SOURCE_VALUE">
<el-input v-model="addForm.alarmInfo.SOURCE_VALUE" placeholder="这里输入报警值..." />
</el-form-item>
<el-form-item label="报警时间" prop="ALARM_TIME">
<el-date-picker
v-model="addForm.alarmInfo.ALARM_TIME"
type="datetime"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="选择日期时间"/>
</el-form-item>
<el-form-item label="经纬度:" prop="ALARM_AREA">
<el-input v-model="addForm.alarmInfo.ALARM_AREA" style="width:206px" placeholder="请选择" disabled/>
<el-button style="margin-left: 10px" type="primary" @click="handleMap"></el-button>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="back"> </el-button>
<el-button type="primary" @click="addAlarmInfo"> </el-button>
</div>
</el-dialog>
<el-dialog :visible.sync="dialogFormMap" title="定位" width="1050px" class="dy-dialog">
<div id="map" />
<div slot="footer" class="dialog-footer">
<span>经度</span>
<el-input v-model="addForm.info.LONGITUDE" style="width: 200px" placeholder="请输入内容" disabled />
<span>纬度</span>
<el-input v-model="addForm.info.LATITUDE" style="width: 200px" placeholder="请输入内容" disabled />
<el-button @click="dialogFormMap = false"> </el-button>
<el-button type="primary" @click="setPosition()"> </el-button>
</div>
</el-dialog>
<el-dialog v-loading="loading" :visible.sync="addForm.dialogVisible" :title="addForm.dialogType==='add'?'新增':'编辑'" width="1000px">
<el-form ref="addForm" :model="addForm.info" :rules="addForm.rules" label-width="110px" style="width: 80%;">
<el-form-item label="指标源" prop="INDICATORSOURCE">
<el-input v-model="addForm.info.INDICATORSOURCE" placeholder="这里输入指标源..." />
</el-form-item>
<el-form-item label="报警阈值" prop="ALARMTHRESHOLD">
<el-input v-model="addForm.info.ALARMTHRESHOLD" placeholder="这里输入报警阈值..." />
</el-form-item>
<el-form-item label="经纬度:" prop="LONGTITUDEANDLATITUDE">
<el-input v-model="addForm.info.LONGTITUDEANDLATITUDE" style="width:206px" placeholder="请选择" disabled/>
<el-button style="margin-left: 10px" type="primary" @click="handleMap"></el-button>
</el-form-item>
<el-divider content-position="left">接受报警人<el-button type="primary" size="mini" @click="addInspector"> </el-button></el-divider>
<el-form-item v-for="(item,index) in addForm.info.inspectorList" :key="index + (Math.random() + '').replace('.', '')" :label="(index+1)+'.'">
<div class="uo-flex">
<el-row :gutter="20">
<el-col :span="11">
<el-form-item label="接受报警人部门" prop="DEPARTMENT_ID" label-width="120px">
<SelectTree
ref="'deptTree'+index"
:clearable="false"
:options="treeDataInspectDept"
:props="defaultProps"
v-model="item.DEPARTMENT_ID"
placeholder="请选择接受报警人部门"
style="width: 100%"
@change="updateInspecteDept(item.DEPARTMENT_ID,index,item)"/>
</el-form-item>
</el-col>
<el-col :span="9">
<el-form-item label="接受报警人" prop="USER_ID" label-width="100px">
<el-select v-model="item.USER_ID" clearable placeholder="请选择接受报警人">
<el-option v-for="data in INSPECTOR_List[index]" :key="data.USER_ID" :label="data.NAME" :value="data.USER_ID" @click.native="changeHiddenUserList(item, data)" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="2">
<el-button plain size="mini" type="danger" icon="el-icon-delete" title="移除" @click="delInspectorRow(item,index)"/>
</el-col>
</el-row>
</div>
</el-form-item>
<el-form-item label="类型:" prop="TYPE">
<el-select v-model="addForm.info.TYPE" placeholder="请选择类型">
<el-option
v-for="item in typeList"
:key="item.value"
:label="item.name"
:value="item.value"
/>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="back"> </el-button>
<el-button type="primary" @click="confirm"> </el-button>
</div>
</el-dialog>
<el-dialog :visible.sync="addForm.dialogAlarm" :title="'填报报警信息'" width="1000px">
<el-form ref="addForm" :model="addForm.alarmInfo" :rules="addForm.rules" label-width="110px" style="width: 80%;">
<el-form-item label="报警源名称" prop="SOURCE_NAME">
<el-input v-model="addForm.alarmInfo.SOURCE_NAME" disabled placeholder="这里输入指标源..." />
</el-form-item>
<el-form-item label="报警值" prop="SOURCE_VALUE">
<el-input v-model="addForm.alarmInfo.SOURCE_VALUE" placeholder="这里输入报警值..." />
</el-form-item>
<el-form-item label="报警时间" prop="ALARM_TIME">
<el-date-picker
v-model="addForm.alarmInfo.ALARM_TIME"
type="datetime"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="选择日期时间"/>
</el-form-item>
<el-form-item label="经纬度:" prop="ALARM_AREA">
<el-input v-model="addForm.alarmInfo.ALARM_AREA" style="width:206px" placeholder="请选择" disabled/>
<el-button style="margin-left: 10px" type="primary" @click="handleMap"></el-button>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="back"> </el-button>
<el-button type="primary" @click="addAlarmInfo"> </el-button>
</div>
</el-dialog>
<el-dialog v-if="dialogVideo" :visible.sync="dialogVideo" :show-close="false" title="视频2" width="600px">
<iframe :src="VIDEOURL" width="100%" height="380" allowfullscreen allow="autoplay; fullscreen;microphone" style="position: relative;border:none"/>
<div slot="footer" class="dialog-footer">
<el-button @click="back"> </el-button>
</div>
</el-dialog>
<el-dialog v-if="dialogVideoHLS" :visible.sync="dialogVideoHLS" :before-close="handleBack" :show-close="false" title="视频" width="600px">
<div id="aLiVideoPlayer" class="prism-player"/>
<div slot="footer" class="dialog-footer">
<el-button @click="back"> </el-button>
</div>
</el-dialog>
<el-dialog v-if="dialogVideoAll" :visible.sync="dialogVideoAll" :before-close="handleBack" title="视频" width="1200px">
<!-- <iframe src="http://192.168.192.121:10800/?menu=no/#/screen" width="100%" height="500px" allowfullscreen allow="autoplay; fullscreen" style="position: relative;border:none"/>-->
<div style="display: flex;flex-wrap: wrap;justify-content: space-between">
<div v-for="(video,index) in videoList" :key="index" style="margin-bottom: 10px;width: 45%">
<div v-if="video.HLSVIDEOURL" :id="'aLiVideoPlayer'+index" class="prism-player"/>
</div>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="back"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import Pagination from '@/components/Pagination' // 通过 el-pagination二次打包
import { requestFN } from '@/utils/request'
import waves from '@/directive/waves' // waves directive
import TiandiMap from '../../../../components/TianMap/TiandiMap'
import SelectTree from '@/components/SelectTree'
export default {
components: { Pagination, TiandiMap, SelectTree },
directives: { waves },
data() {
return {
map: null,
marker: null,
BMap: '',
clientHeight: 500,
inputLocation: '',
msg: 'add',
config: config,
loading: false,
listLoading: true,
dialogForm: false,
dialogImageUrl: '',
dialogVisible: false,
dialogSelect: false,
add: true,
del: true,
edit: true,
dialogFormMap: false,
listQuery: {
page: 1,
limit: 20
},
total: 0,
typeList: [{ name: '指标分析', value: '0' }, { name: '报警源接入', value: '1' }],
KEYWORDS: '',
dates: [],
varList: [],
LATITUDE: '',
LONGITUDE: '',
zoom: 10,
rules: {
VIDEONAME: [{ required: true, message: '视频名称不能为空', trigger: 'blur' }],
CODE: [{ required: true, message: '摄像头编号不能为空', trigger: 'blur' }]
},
dialogVideo: false,
dialogVideoHLS: false,
dialogVideoBack: false,
dialogVideoAll: false,
treeDataInspectDept: [],
defaultProps: {
value: 'id',
children: 'nodes',
label: 'name'
},
INSPECTOR_List: [],
RESPONSIBLE_USER_List: [{ NAME: JSON.parse(sessionStorage.getItem('user')).NAME, USER_ID: JSON.parse(sessionStorage.getItem('user')).USER_ID }], // 隐患责任人
addForm: {
dialogType: 'add', // 增or改
dialogVisible: false,
dialogAlarm: false,
rules: {
LONGITUDE: [{ required: true, message: '不可为空', trigger: 'blur' }],
LATITUDE: [{ required: true, message: '不可为空', trigger: 'blur' }],
RECIPIENT: [{ required: true, message: '不可为空', trigger: 'blur' }],
TYPE: [{ required: true, message: '不可为空', trigger: 'blur' }]
},
info: {
ALARMDEVICEMAINTENANCE_ID: '',
INDICATORSOURCE: '',
ALARMTHRESHOLD: '',
LONGTITUDEANDLATITUDE: '',
LONGITUDE: '',
LATITUDE: '',
RECIPIENT: '',
inspectorList: [{ DEPARTMENT_ID: '', USER_ID: '' }], // 接受报警人
TYPE: ''
},
alarmInfo: {
ALARMINFORMATION_ID: '',
ALARMDEVICEMAINTENANCE_ID: '',
SOURCE_NAME: '',
SOURCE_VALUE: '',
ALARM_TIME: '',
ALARM_AREA: '',
LONGITUDE: '',
LATITUDE: ''
}
}
}
},
created() {
this.getList()
this.getDict()
},
methods: {
// 获取人员列表
getInspectorList(DEPARTMENT_ID, i) {
if (DEPARTMENT_ID) {
requestFN(
'/user/listAllManageAndCorp',
{
CURRENT_INSPECTED_DEPARTMENT_ID: this.CURRENT_INSPECTED_DEPARTMENT_ID,
DEPARTMENT_ID: DEPARTMENT_ID,
NOMAIN: '1'
}
).then((data) => {
this.INSPECTOR_List[i] = data.userList
this.$forceUpdate()
}).catch((e) => {
})
}
},
updateInspecteDept(id, i, item) {
// 获取人员列表
if (id) {
requestFN(
'/user/listAllManageAndCorp',
{
DEPARTMENT_ID: id
}
).then((data) => {
this.INSPECTOR_List[i] = data.userList
this.$forceUpdate()
}).catch((e) => {
})
}
this.addForm.info.inspectorList[i].USER_ID = ''
this.addForm.info.inspectorList[i].USER_SIDE = ''
this.getInspectorList(id, i)
},
// 删除接受报警人
delInspectorRow(row, index) {
if (this.validStr(row.DEPARTMENT_ID) || this.validStr(row.USER_ID)) {
this.$confirm('确定要移除第' + (index + 1) + '个接受报警人吗?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.addForm.info.inspectorList.splice(index, 1)
this.INSPECTOR_List.splice(index, 1)
}).catch(() => {
})
} else {
this.addForm.info.inspectorList.splice(index, 1)
this.INSPECTOR_List.splice(index, 1)
}
},
addInspector() {
console.log(this.addForm.info.inspectorList)
this.addForm.info.inspectorList.push({ DEPARTMENT_ID: '', USER_ID: '' })
this.INSPECTOR_List.push([])
},
/* 改为从接受报警人中选取 */
changeHiddenUserList(item, data) {
item.USER_SIDE = data.USER_SIDE
for (let i = 0; i < this.addForm.info.inspectorList.length; i++) {
this.INSPECTOR_List[i].forEach(item => {
if (this.addForm.info.inspectorList[i].USER_ID === item.USER_ID) {
const index = this.RESPONSIBLE_USER_List.findIndex(vector => vector.USER_ID === item.USER_ID)
if (index < 0) {
this.RESPONSIBLE_USER_List.push(item)
}
}
})
}
},
// 搜索
getReset() {
this.KEYWORDS = ''
this.listQuery = {
page: 1,
limit: 20
}
this.total = 0
this.getQuery()
},
/**
* 初始化天地图对象
*/
initTDT() {
return new Promise((resolve, reject) => {
if (window.T) {
console.log('天地图初始化成功...')
resolve(window.T)
reject('error')
}
}).then(T => {
window.T = T
})
},
/**
* 初始化地图
* @param {*} lng 经度
* @param {*} lat 纬度
* @param {*} zoom 缩放比例(1~18)
*/
initMap(lng, lat, zoom) {
this.initTDT().then((T) => {
const imageURL = 'http://t0.tianditu.gov.cn/img_w/wmts?' + 'SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=w&FORMAT=tiles' + '&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&tk=e8a16137fd226a62a23cc7ba5c9c78ce'
// 创建自定义图层对象
this.lay = new window.T.TileLayer(imageURL, { minZoom: 1, maxZoom: 18 })
// 初始化地图对象
this.map = new window.T.Map('map')
this.initCenter(lng, lat, zoom)
})
},
initCenter(lng, lat, zoom) {
// 设置显示地图的中心点和级别
if (!this.addForm.info.LONGITUDE && !this.addForm.info.LATITUDE) {
this.map.centerAndZoom(new window.T.LngLat(119.58, 39.94), zoom)
this.marker && this.map.removeOverLay(this.marker)
} else {
this.map.centerAndZoom(new window.T.LngLat(lng, lat), zoom)
this.marker && this.map.removeOverLay(this.marker)
this.addForm.info.LONGITUDE = lng
this.addForm.info.LATITUDE = lat
this.marker = new window.T.Marker(new window.T.LngLat(lng, lat))
// 向地图上添加标注
this.map.addOverLay(this.marker)
}
// 创建卫星和路网的混合视图
this.map.setMapType(window.TMAP_HYBRID_MAP)
// 允许鼠标滚轮缩放地图
this.map.enableScrollWheelZoom()
// 允许鼠标移动地图
this.map.enableInertia()
// 向地图上添加标注
this.map.addEventListener('click', this.MapClick)
},
MapClick(event) {
this.marker && this.map.removeOverLay(this.marker)
this.addForm.info.LONGITUDE = event.lnglat.getLng()
this.addForm.info.LATITUDE = event.lnglat.getLat()
this.marker = new window.T.Marker(new window.T.LngLat(event.lnglat.getLng(), event.lnglat.getLat()))
// 向地图上添加标注
this.map.addOverLay(this.marker)
},
handleMap() {
this.dialogFormMap = true
this.$nextTick(() => {
if (!this.map) this.initMap(this.addForm.info.LONGITUDE, this.addForm.info.LATITUDE, 16)
else this.initCenter(this.addForm.info.LONGITUDE, this.addForm.info.LATITUDE, 16)
})
},
getRowKey(row) {
return row.ALARMDEVICEMAINTENANCE_ID
},
// 搜索
getQuery() {
this.$refs.multipleTable.clearSelection()
this.getList()
},
setPosition() {
this.addForm.info.LONGTITUDEANDLATITUDE = this.addForm.info.LONGITUDE + '-' + this.addForm.info.LATITUDE
this.addForm.alarmInfo.LONGITUDE = this.addForm.info.LONGITUDE
this.addForm.alarmInfo.LATITUDE = this.addForm.info.LATITUDE
this.addForm.alarmInfo.ALARM_AREA = this.addForm.info.LONGITUDE + '-' + this.addForm.info.LATITUDE
this.dialogFormMap = false
},
// 获取列表
getList() {
this.listLoading = true
requestFN(
'/alarmDeviceMaintenance/listForManager?showCount=' + this.listQuery.limit + '&currentPage=' + this.listQuery.page,
{
KEYWORDS: this.KEYWORDS
}
).then((data) => {
this.listLoading = false
this.varList = data.varList
this.total = data.page.totalResult
}).catch((e) => {
this.listLoading = false
})
},
// 添加
handleAdd() {
this.resetAddForm()
this.addForm.dialogType = 'add'
this.addForm.dialogVisible = true
},
handleAlarm(row) {
this.resetAddForm()
this.addForm.alarmInfo = {
...this.addForm.alarmInfo,
ALARMDEVICEMAINTENANCE_ID: row.ALARMDEVICEMAINTENANCE_ID,
SOURCE_NAME: row.INDICATORSOURCE,
ALARM_AREA: row.LONGITUDE + '-' + row.LATITUDE,
LATITUDE: row.LATITUDE,
LONGITUDE: row.LONGITUDE
}
this.addForm.dialogAlarm = true
},
handleEdit(row) {
this.resetAddForm()
this.INSPECTOR_List = []
this.addForm.info = {
...this.addForm.info,
ALARMDEVICEMAINTENANCE_ID: row.ALARMDEVICEMAINTENANCE_ID,
INDICATORSOURCE: row.INDICATORSOURCE,
ALARMTHRESHOLD: row.ALARMTHRESHOLD,
RECIPIENT: row.RECIPIENT,
TYPE: row.TYPE,
LONGTITUDEANDLATITUDE: row.LONGITUDE + '-' + row.LATITUDE,
inspectorList: [], // 接受报警人
LATITUDE: row.LATITUDE,
LONGITUDE: row.LONGITUDE
}
if (row.DEPT_IDS !== '' && row.DEPT_IDS !== null) {
this.loading = true
const deptList = row.DEPT_IDS.split(',')
const userList = row.USER_IDS.split(',')
console.log(deptList)
console.log(userList)
let info = {}
for (let i = 0; i < deptList.length; i++) {
if (deptList[i]) {
requestFN(
'/user/listAllManageAndCorp',
{
CURRENT_INSPECTED_DEPARTMENT_ID: this.CURRENT_INSPECTED_DEPARTMENT_ID,
DEPARTMENT_ID: deptList[i],
NOMAIN: '1'
}
).then((data) => {
this.INSPECTOR_List[i] = data.userList
const tempUserList = data.userList
for (let k = 0; k < tempUserList.length; k++) {
if (tempUserList[k].USER_ID === userList[i]) {
info = { DEPARTMENT_ID: deptList[i], USER_ID: userList[i] }
this.addForm.info.inspectorList[i] = info
this.$forceUpdate()
return
}
}
}).catch((e) => {
this.loading = false
})
}
}
}
this.loading = false
this.addForm.dialogType = 'edit'
this.addForm.dialogVisible = true
},
resetAddForm() {
this.ALARMDEVICEMAINTENANCE_ID = ''
this.addForm.info = {
ALARMDEVICEMAINTENANCE_ID: '',
inspectorList: [{ DEPARTMENT_ID: '', USER_ID: '' }], // 接受报警人
INDICATORSOURCE: '',
ALARMTHRESHOLD: '',
RECIPIENT: '',
TYPE: '',
LATITUDE: '',
LONGITUDE: ''
}
this.addForm.dialogType = ''
},
addAlarmInfo() {
this.$refs.addForm.validate(valid => {
if (valid) {
requestFN(
'/alarmInformation/add',
{
...this.addForm.alarmInfo
}
).then((data) => {
this.$message.success('保存成功')
this.getList()
this.addForm.dialogAlarm = false
}).catch((e) => {
})
} else {
return false
}
})
},
confirm() {
console.log(this.addForm.info.inspectorList)
let flag = false
this.addForm.info.inspectorList.forEach(item => {
if (!this.validStr(item.USER_ID)) {
flag = true
return
}
})
if (flag) {
this.$message({
message: '接受报警人不能为空',
type: 'warning'
})
return false
}
this.$refs.addForm.validate(valid => {
for (var x in this.addForm.info.inspectorList) {
var vector = 0
for (var y in this.addForm.info.inspectorList) {
if (this.addForm.info.inspectorList[y].USER_ID === this.addForm.info.inspectorList[x].USER_ID) vector++
}
if (vector > 1) {
this.$message.error('检查人重复!请检查相关数据')
return
}
}
if (valid) {
this.$set(this.addForm.info, 'INSPECTORJSON', JSON.stringify(this.addForm.info.inspectorList))
requestFN(
'/alarmDeviceMaintenance/' + this.addForm.dialogType,
{
...this.addForm.info
}
).then((data) => {
this.$message.success('保存成功')
this.getList()
this.addForm.dialogVisible = false
}).catch((e) => {
})
} else {
return false
}
})
},
handleDelete(id) {
this.$confirm('确定要删除吗?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.listLoading = true
requestFN(
'/alarmDeviceMaintenance/delete',
{
ALARMDEVICEMAINTENANCE_ID: id
}
).then((data) => {
if (data.result === 'success') {
this.$message({
message: '删除成功',
type: 'success'
})
} else {
this.$message.error(data.msg)
}
this.listLoading = false
this.varList = []
this.listQuery.page = 1
this.getList()
}).catch((e) => {
this.listLoading = false
})
}).catch(() => {
})
},
batchDel() {
const _selectData = this.$refs.multipleTable.selection
if (_selectData == null || _selectData.length == 0) {
this.$message({
message: '请选中要删除的项...',
type: 'error'
})
return false
}
const ids = _selectData.map((item, index) => {
return item.GATEVIDEO_ID
}).join(',')
this.$confirm('确定要删除选中的数据吗?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.listLoading = true
requestFN(
'/gateVideo/deleteAll',
{
DATA_IDS: ids
}
).then(() => {
this.listLoading = false
this.varList = []
this.listQuery.page = 1
this.$refs.multipleTable.clearSelection()
this.getList()
}).catch((e) => {
this.listLoading = false
})
}).catch(() => {
})
},
goKeyReset() {
this.KEYWORDS = ''
this.getList()
},
back() {
if (this.addForm.dialogAlarm) this.addForm.dialogAlarm = false
if (this.addForm.dialogVisible) this.addForm.dialogVisible = false
if (this.dialogVideo) this.dialogVideo = false
if (this.dialogVideoBack) this.dialogVideoBack = false
if (this.dialogVideoAll) {
this.dialogVideoAll = false
for (let i = 0; i < this.playerList.length; i++) {
this.playerList[i].dispose()
}
}
if (this.dialogForm) this.dialogForm = false
if (this.dialogVideoHLS) {
this.dialogVideoHLS = false
this.player.dispose()
}
},
// 获取数据字典数据
getDict: function() {
requestFN(
'/dictionaries/getLevels',
{
DICTIONARIES_ID: '60e6481d96e44a5390ff5c347c4d1ffe' // 检查类型
}
).then((data) => {
this.INSPECTION_TYPE_List = data.list
}).catch((e) => {
})
requestFN(
'/corpDepartment/listTreeCorpDept',
{}
).then((data) => {
this.treeData = this.listTransTree(JSON.parse(data.zTreeNodes), 'id', 'pId', 'nodes')
}).catch((e) => {
})
requestFN(
'/corpDepartment/listTreeManageAndCorp',
{}
).then((data) => {
this.treeDataInspectDept = this.listTransTree(JSON.parse(data.zTreeNodes), 'id', 'pId', 'nodes')
}).catch((e) => {
})
}
}
}
</script>
<style>
.ui-foot-xuan {
width: 100%;
margin-top: 10px;
position: inherit;
height: 60px;
line-height: 60px;
background-color: #f1f1f1;
text-align: center;
}
#map{
width: 1000px;
height: 500px;
}
</style>