摄像头申请流程
This commit is contained in:
parent
c4b6faaa6d
commit
0f6b37e52e
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2020-07-07 16:03:23
|
* @Date: 2020-07-07 16:03:23
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-27 14:22:56
|
* @LastEditTime: 2022-06-30 11:05:52
|
||||||
* @Description: 数据资源参数配置
|
* @Description: 数据资源参数配置
|
||||||
*/
|
*/
|
||||||
const newLocation = 'qingdao'
|
const newLocation = 'qingdao'
|
||||||
|
@ -14,6 +14,8 @@ const whoShow = {}
|
||||||
const launchedDataNumObject = {}
|
const launchedDataNumObject = {}
|
||||||
// 导航数据
|
// 导航数据
|
||||||
const navListManagement = {}
|
const navListManagement = {}
|
||||||
|
// 基础设施
|
||||||
|
const infrastructure = {}
|
||||||
// 区市站点数据
|
// 区市站点数据
|
||||||
const mapTestNum = {}
|
const mapTestNum = {}
|
||||||
// 底部数据
|
// 底部数据
|
||||||
|
@ -21,6 +23,8 @@ const footerDataList = {}
|
||||||
// qingdao
|
// qingdao
|
||||||
if (newLocation === 'qingdao') {
|
if (newLocation === 'qingdao') {
|
||||||
whoShow.itShowQingDao = true
|
whoShow.itShowQingDao = true
|
||||||
|
infrastructure.deptName = '青岛市大数据发展管理局'
|
||||||
|
infrastructure.deptId = '1067246875800000066'
|
||||||
navListManagement.navList = [
|
navListManagement.navList = [
|
||||||
{ name: '共享门户', key: 'home' },
|
{ name: '共享门户', key: 'home' },
|
||||||
{ name: '能力集市', key: 'DetailsPageconetent' },
|
{ name: '能力集市', key: 'DetailsPageconetent' },
|
||||||
|
|
|
@ -16,7 +16,17 @@
|
||||||
<span>{{ val.resourceName }}</span>
|
<span>{{ val.resourceName }}</span>
|
||||||
<span>{{ val.type }}</span>
|
<span>{{ val.type }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="description">{{ val.description || '--' }}</div>
|
<div class="description">
|
||||||
|
{{
|
||||||
|
val.description ||
|
||||||
|
(val.note1 &&
|
||||||
|
JSON.parse(val.note1)[0].channelName +
|
||||||
|
'等' +
|
||||||
|
JSON.parse(val.note1).length +
|
||||||
|
'个摄像头') ||
|
||||||
|
'--'
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
<div class="remove" @click="removeFunction(val)"></div>
|
<div class="remove" @click="removeFunction(val)"></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -48,7 +58,7 @@
|
||||||
//移除方法
|
//移除方法
|
||||||
const removeFunction = (data) => {
|
const removeFunction = (data) => {
|
||||||
dataForm.value.map((val) => {
|
dataForm.value.map((val) => {
|
||||||
val.arr = val.arr.filter((item) => item.resourceId !== data.resourceId)
|
val.arr = val.arr.filter((item) => item.id !== data.id)
|
||||||
})
|
})
|
||||||
dataForm.value = dataForm.value.filter((val) => val.arr.length !== 0)
|
dataForm.value = dataForm.value.filter((val) => val.arr.length !== 0)
|
||||||
}
|
}
|
||||||
|
|
|
@ -378,17 +378,44 @@
|
||||||
}
|
}
|
||||||
let ids = []
|
let ids = []
|
||||||
formName.system = []
|
formName.system = []
|
||||||
|
console.log('list==================', list.value)
|
||||||
list.value.map((val) => {
|
list.value.map((val) => {
|
||||||
val.arr.map((item) => {
|
val.arr.map((item) => {
|
||||||
|
if (item.type !== '基础设施') {
|
||||||
formName.system.push({
|
formName.system.push({
|
||||||
resourceId: item.resourceId,
|
resourceId: item.resourceId,
|
||||||
resourceName: item.resourceName,
|
resourceName: item.resourceName,
|
||||||
})
|
})
|
||||||
console.log(item.id)
|
console.log(item.id)
|
||||||
ids.push(item.id)
|
ids.push(item.id)
|
||||||
|
} else {
|
||||||
|
let obj = {}
|
||||||
|
Object.assign(obj, formName)
|
||||||
|
console.log('摄像头===============>', obj, item)
|
||||||
|
obj.system = []
|
||||||
|
item.note1 = JSON.parse(item.note1)
|
||||||
|
item.note1.map((sxt) => {
|
||||||
|
obj.system.push({
|
||||||
|
resourceId: sxt.idtCameraChannel,
|
||||||
|
resourceName: sxt.channelName,
|
||||||
|
cameraId: sxt.channelId,
|
||||||
|
})
|
||||||
|
})
|
||||||
|
submitApply(obj).then((res) => {
|
||||||
|
console.log('摄像头申请================>', res)
|
||||||
|
if (item.id) {
|
||||||
|
sgcDel({ ids: [item.id] }).then((res) => {
|
||||||
|
if (res.data.msg === 'success') {
|
||||||
|
mybus.emit('getSgcNum')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
console.log('提交数据==========================>', formName, ids)
|
console.log('提交数据==========================>', formName, ids)
|
||||||
|
if (formName.system.length !== 0) {
|
||||||
submitApply(formName).then((res) => {
|
submitApply(formName).then((res) => {
|
||||||
applySuccess.value = false
|
applySuccess.value = false
|
||||||
message.success('操作成功!')
|
message.success('操作成功!')
|
||||||
|
@ -401,65 +428,7 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
// if (arr && arr.length !== 0) {
|
}
|
||||||
// console.log('提交')
|
|
||||||
// const obj = ref({})
|
|
||||||
// for (const key in formName) {
|
|
||||||
// if (key !== 'formNameSystem') {
|
|
||||||
// obj.value[key] = formName[key]
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// submitApply(obj.value).then((res) => {
|
|
||||||
// applySuccess.value = false
|
|
||||||
// message.success('操作成功!')
|
|
||||||
// console.log('能力申请================>', res)
|
|
||||||
// if (ids) {
|
|
||||||
// sgcDel({ ids: ids }).then((res) => {
|
|
||||||
// if (res.data.msg === 'success') {
|
|
||||||
// mybus.emit('getSgcNum')
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// } else {
|
|
||||||
// lastestPage({
|
|
||||||
// key: dataForm.processDefinitionKey,
|
|
||||||
// })
|
|
||||||
// .then(({ data: res }) => {
|
|
||||||
// if (res.code !== 0) {
|
|
||||||
// return message.error(res.msg)
|
|
||||||
// }
|
|
||||||
// if (!res.data.list || res.data.list.length <= 0) {
|
|
||||||
// return message.error('没有查询到流程,请先设计流程')
|
|
||||||
// }
|
|
||||||
// // proxy.$http['post'](formUrl, rootObj[formName])
|
|
||||||
// tabilityapplication(formName)
|
|
||||||
// .then(({ data: res }) => {
|
|
||||||
// if (res.code !== 0) {
|
|
||||||
// message.error(res.msg)
|
|
||||||
// if (callbacks.formSaveErrorCallback) {
|
|
||||||
// callbacks.formSaveErrorCallback(res)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// if (callbacks.formSaveSuccessCallback) {
|
|
||||||
// callbacks.formSaveSuccessCallback(res)
|
|
||||||
// }
|
|
||||||
// if (!res.data.businessKey) {
|
|
||||||
// return message.error('业务KEY为空,无法启动流程')
|
|
||||||
// // startProcess(dataForm.processDefinitionKey, null, rootObj[formName])
|
|
||||||
// } else {
|
|
||||||
// startProcess(
|
|
||||||
// dataForm.processDefinitionKey,
|
|
||||||
// res.data.businessKey
|
|
||||||
// // rootObj[formName]
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// .catch(() => {})
|
|
||||||
// })
|
|
||||||
// .catch(() => {})
|
|
||||||
// // })
|
|
||||||
// }
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
<i class="boundary"></i>
|
<i class="boundary"></i>
|
||||||
<p>
|
<p>
|
||||||
已选
|
已选
|
||||||
<span>{{ allClick.length }}</span>
|
<span>{{ selectedRowKeys.length }}</span>
|
||||||
个
|
个
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -86,7 +86,9 @@
|
||||||
@change="handleTableChange"
|
@change="handleTableChange"
|
||||||
:row-selection="{
|
:row-selection="{
|
||||||
selectedRowKeys: selectedRowKeys,
|
selectedRowKeys: selectedRowKeys,
|
||||||
onChange: onSelectChange,
|
// onChange: onSelectChange,
|
||||||
|
onSelect: onSelectChange,
|
||||||
|
onSelectAll: onSelectAll,
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
|
@ -115,6 +117,7 @@
|
||||||
import VideoSurveillance from '@/views/home/videoSurveillance'
|
import VideoSurveillance from '@/views/home/videoSurveillance'
|
||||||
import { getCategoryTreePage } from '@/api/personalCenter'
|
import { getCategoryTreePage } from '@/api/personalCenter'
|
||||||
import { dataType } from 'element-plus/es/components/table-v2/src/common'
|
import { dataType } from 'element-plus/es/components/table-v2/src/common'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
import { ref, reactive, onMounted } from 'vue'
|
import { ref, reactive, onMounted } from 'vue'
|
||||||
import {
|
import {
|
||||||
getCameraByParentId,
|
getCameraByParentId,
|
||||||
|
@ -124,6 +127,7 @@
|
||||||
import { sgcInsert } from '@/api/home'
|
import { sgcInsert } from '@/api/home'
|
||||||
import { message } from 'ant-design-vue'
|
import { message } from 'ant-design-vue'
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
|
const router = useRouter()
|
||||||
const options = reactive({
|
const options = reactive({
|
||||||
width: '700px', //播放器宽度
|
width: '700px', //播放器宽度
|
||||||
height: '400px', //播放器高度
|
height: '400px', //播放器高度
|
||||||
|
@ -189,6 +193,7 @@
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
const selectedList = ref([])
|
const selectedList = ref([])
|
||||||
|
const selectedRowKeys = ref([])
|
||||||
const tabList = ref([
|
const tabList = ref([
|
||||||
{
|
{
|
||||||
title: '设施类型',
|
title: '设施类型',
|
||||||
|
@ -317,8 +322,35 @@
|
||||||
getCamera()
|
getCamera()
|
||||||
}
|
}
|
||||||
// 一键申请
|
// 一键申请
|
||||||
|
const dept = reactive({})
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
if (infrastructure) {
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
dept.deptId = infrastructure.deptId
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
dept.deptName = infrastructure.deptName
|
||||||
|
}
|
||||||
const apply = () => {
|
const apply = () => {
|
||||||
console.log('一键申请')
|
console.log('一键申请', selectedList.value)
|
||||||
|
let arr = [
|
||||||
|
{
|
||||||
|
arr: [
|
||||||
|
{
|
||||||
|
description: '',
|
||||||
|
note1: JSON.stringify(selectedList.value),
|
||||||
|
resourceId: '1522550195055828996',
|
||||||
|
resourceName: '摄像头列表',
|
||||||
|
type: '基础设施',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
deptId: dept.deptId,
|
||||||
|
deptName: dept.deptName,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
localStorage.setItem('applyList', JSON.stringify(arr))
|
||||||
|
router.push({
|
||||||
|
path: '/apply',
|
||||||
|
})
|
||||||
}
|
}
|
||||||
// 添加至购物车
|
// 添加至购物车
|
||||||
const addShopCar = () => {
|
const addShopCar = () => {
|
||||||
|
@ -367,11 +399,43 @@
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
const allClick = ref([])
|
const allClick = ref([])
|
||||||
const onSelectChange = (selectedRowKeys, selectedRows) => {
|
const onSelectChange = (record, selected, selectedRows, nativeEvent) => {
|
||||||
console.log('hahhahah', selectedRowKeys, selectedRows)
|
console.log('hahhahah', record, selected, selectedRows, nativeEvent)
|
||||||
selectedList.value = selectedRows
|
if (selected) {
|
||||||
|
selectedList.value.push(record)
|
||||||
|
selectedRowKeys.value.push(record.channelCode)
|
||||||
|
} else {
|
||||||
|
selectedList.value = selectedList.value.filter(
|
||||||
|
(item) => item.idtCameraChannel !== record.idtCameraChannel
|
||||||
|
)
|
||||||
|
selectedRowKeys.value.splice(
|
||||||
|
selectedRowKeys.value.indexOf(record.channelCode),
|
||||||
|
1
|
||||||
|
)
|
||||||
|
}
|
||||||
|
console.log('已选中======================>', selectedList.value)
|
||||||
|
// selectedList.value = selectedRows
|
||||||
// allClick.value = selectedRowKeys
|
// allClick.value = selectedRowKeys
|
||||||
}
|
}
|
||||||
|
const onSelectAll = (selected, selectedRows, changeRows) => {
|
||||||
|
if (selected) {
|
||||||
|
changeRows.map((val) => {
|
||||||
|
selectedList.value.push(val)
|
||||||
|
selectedRowKeys.value.push(val.channelCode)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
changeRows.map((val) => {
|
||||||
|
selectedList.value = selectedList.value.filter(
|
||||||
|
(item) => item.idtCameraChannel !== val.idtCameraChannel
|
||||||
|
)
|
||||||
|
selectedRowKeys.value.splice(
|
||||||
|
selectedRowKeys.value.indexOf(val.channelCode),
|
||||||
|
1
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
console.log('heiheiheiehiehei', selected, selectedRows, changeRows)
|
||||||
|
}
|
||||||
const handleTableChange = (val) => {
|
const handleTableChange = (val) => {
|
||||||
pagination.value.current = val.current
|
pagination.value.current = val.current
|
||||||
pagination.value.pageSize = val.pageSize
|
pagination.value.pageSize = val.pageSize
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<a-checkbox v-model:checked="checkAll" @change="onCheckAllChange">
|
<a-checkbox v-model:checked="checkAll" @change="onCheckAllChange">
|
||||||
全选
|
全选
|
||||||
</a-checkbox>
|
</a-checkbox>
|
||||||
<div @click="reverseSelection" class="reverseSelection">反选</div>
|
<!-- <div @click="reverseSelection" class="reverseSelection">反选</div> -->
|
||||||
<p>
|
<p>
|
||||||
已选:
|
已选:
|
||||||
<span class="num">{{ checkedListAbility.length || 0 }}</span>
|
<span class="num">{{ checkedListAbility.length || 0 }}</span>
|
||||||
|
@ -108,9 +108,7 @@
|
||||||
>
|
>
|
||||||
<template #title>
|
<template #title>
|
||||||
<span
|
<span
|
||||||
@click="
|
@click="showItem(item.id, item.type, item.delFlag)"
|
||||||
showItem(item.resourceId, item.type, item.delFlag)
|
|
||||||
"
|
|
||||||
style="cursor: pointer"
|
style="cursor: pointer"
|
||||||
class="name"
|
class="name"
|
||||||
>
|
>
|
||||||
|
@ -241,7 +239,7 @@
|
||||||
list.value.forEach((val) => {
|
list.value.forEach((val) => {
|
||||||
if (checkedList.value.indexOf(val.deptId) !== -1) {
|
if (checkedList.value.indexOf(val.deptId) !== -1) {
|
||||||
if (val.delFlag == 0) {
|
if (val.delFlag == 0) {
|
||||||
scArr.push({ resourceId: val.resourceId })
|
scArr.push({ id: val.id })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -267,9 +265,9 @@
|
||||||
}
|
}
|
||||||
if (val.children.length > 0) {
|
if (val.children.length > 0) {
|
||||||
val.children.map((item) => {
|
val.children.map((item) => {
|
||||||
if (checkedListAbility.value.indexOf(item.resourceId) == -1) {
|
if (checkedListAbility.value.indexOf(item.id) == -1) {
|
||||||
checkedListAbility.value.push(item.resourceId)
|
checkedListAbility.value.push(item.id)
|
||||||
val.checkedList.push(item.resourceId)
|
val.checkedList.push(item.id)
|
||||||
checkNum.value++
|
checkNum.value++
|
||||||
}
|
}
|
||||||
item.checked = true
|
item.checked = true
|
||||||
|
@ -301,13 +299,13 @@
|
||||||
if (val.children.length > 0) {
|
if (val.children.length > 0) {
|
||||||
val.children.map((item) => {
|
val.children.map((item) => {
|
||||||
// console.log('child=============>', checkedListAbility.value, item)
|
// console.log('child=============>', checkedListAbility.value, item)
|
||||||
if (checkedListAbility.value.indexOf(item.resourceId) > -1) {
|
if (checkedListAbility.value.indexOf(item.id) > -1) {
|
||||||
item.checked = false
|
item.checked = false
|
||||||
checkedListAbility.value.splice(
|
checkedListAbility.value.splice(
|
||||||
checkedListAbility.value.indexOf(item.resourceId),
|
checkedListAbility.value.indexOf(item.id),
|
||||||
1
|
1
|
||||||
)
|
)
|
||||||
val.checkedList.splice(val.checkedList.indexOf(item.resourceId), 1)
|
val.checkedList.splice(val.checkedList.indexOf(item.id), 1)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -347,8 +345,8 @@
|
||||||
if (val.children.length > 0) {
|
if (val.children.length > 0) {
|
||||||
val.children.map((item) => {
|
val.children.map((item) => {
|
||||||
item.checked = true
|
item.checked = true
|
||||||
checkedListAbility.value.push(item.resourceId)
|
checkedListAbility.value.push(item.id)
|
||||||
val.checkedList.push(item.resourceId)
|
val.checkedList.push(item.id)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
arr.push(val.deptId)
|
arr.push(val.deptId)
|
||||||
|
@ -446,23 +444,23 @@
|
||||||
item.checkAll == true ||
|
item.checkAll == true ||
|
||||||
checkedList.value.indexOf(item.deptId) > -1
|
checkedList.value.indexOf(item.deptId) > -1
|
||||||
) {
|
) {
|
||||||
if (checkedListAbility.value.indexOf(val.resourceId) == -1) {
|
if (checkedListAbility.value.indexOf(val.id) == -1) {
|
||||||
checkedListAbility.value.push(val.resourceId)
|
checkedListAbility.value.push(val.id)
|
||||||
item.checkedList.push(val.resourceId)
|
item.checkedList.push(val.id)
|
||||||
}
|
}
|
||||||
val.checked = true
|
val.checked = true
|
||||||
checkNum.value++
|
checkNum.value++
|
||||||
} else if (checkedListAbility.value.indexOf(val.resourceId) == -1) {
|
} else if (checkedListAbility.value.indexOf(val.id) == -1) {
|
||||||
val.checked = false
|
val.checked = false
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// console.log(
|
// console.log(
|
||||||
// '第二次加载++++++++++++++',
|
// '第二次加载++++++++++++++',
|
||||||
// checkedListAbility.value,
|
// checkedListAbility.value,
|
||||||
// val.resourceId
|
// val.id
|
||||||
// )
|
// )
|
||||||
if (
|
if (
|
||||||
checkedListAbility.value.indexOf(val.resourceId) > -1 ||
|
checkedListAbility.value.indexOf(val.id) > -1 ||
|
||||||
(item.load < Number(item.pageNum) &&
|
(item.load < Number(item.pageNum) &&
|
||||||
checkedListAll.value.indexOf(item.deptId) > -1)
|
checkedListAll.value.indexOf(item.deptId) > -1)
|
||||||
) {
|
) {
|
||||||
|
@ -515,9 +513,9 @@
|
||||||
if (item.checked) {
|
if (item.checked) {
|
||||||
if (item.children.length > 0) {
|
if (item.children.length > 0) {
|
||||||
item.children.map((val) => {
|
item.children.map((val) => {
|
||||||
if (checkedListAbility.value.indexOf(val.resourceId) == -1) {
|
if (checkedListAbility.value.indexOf(val.id) == -1) {
|
||||||
checkedListAbility.value.push(val.resourceId)
|
checkedListAbility.value.push(val.id)
|
||||||
item.checkedList.push(val.resourceId)
|
item.checkedList.push(val.id)
|
||||||
}
|
}
|
||||||
val.checked = true
|
val.checked = true
|
||||||
})
|
})
|
||||||
|
@ -535,12 +533,12 @@
|
||||||
} else {
|
} else {
|
||||||
if (item.children.length > 0) {
|
if (item.children.length > 0) {
|
||||||
item.children.map((val) => {
|
item.children.map((val) => {
|
||||||
if (checkedListAbility.value.indexOf(val.resourceId) > -1) {
|
if (checkedListAbility.value.indexOf(val.id) > -1) {
|
||||||
checkedListAbility.value.splice(
|
checkedListAbility.value.splice(
|
||||||
checkedListAbility.value.indexOf(val.resourceId),
|
checkedListAbility.value.indexOf(val.id),
|
||||||
1
|
1
|
||||||
)
|
)
|
||||||
item.checkedList.splice(item.checkedList.indexOf(val.resourceId), 1)
|
item.checkedList.splice(item.checkedList.indexOf(val.id), 1)
|
||||||
val.checked = false
|
val.checked = false
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -579,7 +577,7 @@
|
||||||
} else {
|
} else {
|
||||||
let all = true
|
let all = true
|
||||||
item.children.map((child) => {
|
item.children.map((child) => {
|
||||||
if (checkedListAbility.value.indexOf(child.resourceId) == -1) {
|
if (checkedListAbility.value.indexOf(child.id) == -1) {
|
||||||
all = false
|
all = false
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -596,17 +594,17 @@
|
||||||
item.checked = !item.checked
|
item.checked = !item.checked
|
||||||
if (item.checked) {
|
if (item.checked) {
|
||||||
checkNum.value++
|
checkNum.value++
|
||||||
if (checkedListAbility.value.indexOf(item.resourceId) == -1) {
|
if (checkedListAbility.value.indexOf(item.id) == -1) {
|
||||||
checkedListAbility.value.push(item.resourceId)
|
checkedListAbility.value.push(item.id)
|
||||||
val.checkedList.push(item.resourceId)
|
val.checkedList.push(item.id)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
checkNum.value--
|
checkNum.value--
|
||||||
checkedListAbility.value.splice(
|
checkedListAbility.value.splice(
|
||||||
checkedListAbility.value.indexOf(item.resourceId),
|
checkedListAbility.value.indexOf(item.id),
|
||||||
1
|
1
|
||||||
)
|
)
|
||||||
val.checkedList.splice(val.checkedList.indexOf(item.resourceId), 1)
|
val.checkedList.splice(val.checkedList.indexOf(item.id), 1)
|
||||||
}
|
}
|
||||||
// console.log('判断是否全选===============>', val, checkedListAll.value)
|
// console.log('判断是否全选===============>', val, checkedListAll.value)
|
||||||
if (val.checkedList.length == val.count) {
|
if (val.checkedList.length == val.count) {
|
||||||
|
@ -681,7 +679,7 @@
|
||||||
let arr = []
|
let arr = []
|
||||||
list.value.map((val) => {
|
list.value.map((val) => {
|
||||||
val.arr = val.children.filter(
|
val.arr = val.children.filter(
|
||||||
(item) => checkedListAbility.value.indexOf(item.resourceId) > -1
|
(item) => checkedListAbility.value.indexOf(item.id) > -1
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
arr = list.value.filter((val) => val.arr.length !== 0)
|
arr = list.value.filter((val) => val.arr.length !== 0)
|
||||||
|
|
Loading…
Reference in New Issue