能力申请 应用资源特殊处理

This commit is contained in:
a0049873 2022-07-19 10:22:16 +08:00
parent 0e5ca11c2a
commit ed5ed8c828
1 changed files with 30 additions and 23 deletions

View File

@ -454,11 +454,11 @@
if (res.data.msg === 'success') {
mybus.emit('getSgcNum')
router.push({
path: '/DetailsPageconetent',
query: {
select: '组件服务',
},
})
path: '/DetailsPageconetent',
query: {
select: '组件服务',
},
})
}
})
}
@ -468,29 +468,36 @@
})
console.log('提交数据==========================>', formName, ids)
if (formName.system.length !== 0) {
if (formName.applicationSystem.length == 0) {
formName.applicationSystem = ''
}
submitApply(formName).then((res) => {
// applySuccess.value = false
message.success('申请提交成功,请到消息中心查看!')
console.log('能力申请================>', res)
if (ids && ids.length > 0) {
sgcDel({ ids: ids }).then((res) => {
if (res.data.msg === 'success') {
mybus.emit('getSgcNum')
router.push({
path: '/DetailsPageconetent',
query: {
select: '组件服务',
},
})
}
})
if (res.data.code == 0) {
if (ids && ids.length > 0) {
sgcDel({ ids: ids }).then((res) => {
if (res.data.msg === 'success') {
mybus.emit('getSgcNum')
router.push({
path: '/DetailsPageconetent',
query: {
select: '组件服务',
},
})
}
})
} else {
router.push({
path: '/DetailsPageconetent',
query: {
select: '组件服务',
},
})
}
} else {
router.push({
path: '/DetailsPageconetent',
query: {
select: '组件服务',
},
})
message.error('申请失败!')
}
})
}