BUG修改
This commit is contained in:
parent
83f44d040d
commit
4827fc5784
|
@ -271,6 +271,7 @@
|
||||||
const flag = ref(false)
|
const flag = ref(false)
|
||||||
const list = ref(JSON.parse(localStorage.getItem('applyList')))
|
const list = ref(JSON.parse(localStorage.getItem('applyList')))
|
||||||
const applyAll = router.currentRoute.value.query.applyAll
|
const applyAll = router.currentRoute.value.query.applyAll
|
||||||
|
const num = ref(0)
|
||||||
if (!applyAll) {
|
if (!applyAll) {
|
||||||
list.value.map((item) => {
|
list.value.map((item) => {
|
||||||
item.arr.map((val) => {
|
item.arr.map((val) => {
|
||||||
|
@ -291,7 +292,6 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const num = ref(0)
|
|
||||||
console.log(
|
console.log(
|
||||||
'list',
|
'list',
|
||||||
list.value
|
list.value
|
||||||
|
@ -447,12 +447,18 @@
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
submitApply(obj).then((res) => {
|
submitApply(obj).then((res) => {
|
||||||
applySuccess.value = false
|
// applySuccess.value = false
|
||||||
console.log('摄像头申请================>', res)
|
console.log('摄像头申请================>', res)
|
||||||
if (item.id) {
|
if (item.id) {
|
||||||
sgcDel({ ids: [item.id] }).then((res) => {
|
sgcDel({ ids: [item.id] }).then((res) => {
|
||||||
if (res.data.msg === 'success') {
|
if (res.data.msg === 'success') {
|
||||||
mybus.emit('getSgcNum')
|
mybus.emit('getSgcNum')
|
||||||
|
router.push({
|
||||||
|
path: '/DetailsPageconetent',
|
||||||
|
query: {
|
||||||
|
select: '组件服务',
|
||||||
|
},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -517,7 +523,7 @@
|
||||||
// proxy.$http['post']('/act/running/startOfBusinessKey', data)
|
// proxy.$http['post']('/act/running/startOfBusinessKey', data)
|
||||||
startOfBusinessKey(data)
|
startOfBusinessKey(data)
|
||||||
.then(({ data: res }) => {
|
.then(({ data: res }) => {
|
||||||
applySuccess.value = false
|
// applySuccess.value = false
|
||||||
if (res.code !== 0) {
|
if (res.code !== 0) {
|
||||||
if (callbacks.startProcessErrorCallback) {
|
if (callbacks.startProcessErrorCallback) {
|
||||||
callbacks.startProcessErrorCallback(res.data)
|
callbacks.startProcessErrorCallback(res.data)
|
||||||
|
|
Loading…
Reference in New Issue