西海岸-基础设施:点击消息通知列表中的数据,跳转到流程详情页面

This commit is contained in:
guoyue 2022-10-18 14:11:20 +08:00
parent 5f3aad2539
commit dd100d3867
2 changed files with 14 additions and 26 deletions

View File

@ -262,35 +262,27 @@ const goPage = (item) => {
}
}
}
let isQingDao = whoShow.itShowQingDao;
//
const read = (item) => {
if (selectData.value.length === 0 && !item) {
message.error('未选择消息!')
return
return message.error('未选择消息!')
}
console.log(selectData.value)
if (item) {
//
// ,
if (item.readStatus === 1) {
if(isQingDao) {
goPage(item)
}
//
return
return goPage(item)
}
mynoticeRead(item.id).then((res) => {
if (res.data.code == 0) {
message.success('通知已读!')
mybus.emit('getMynotice')
init()
if (isQingDao) {
//
setTimeout(() => {
goPage(item)
}, 1000)
}
//
setTimeout(() => {
goPage(item)
}, 1500)
} else {
message.error('操作失败!')
}

View File

@ -85,19 +85,15 @@ export default defineComponent({
}
onMounted(() => {
if (itShowXiHaiAn) {
handleClick(menuList[0])
if (type) {
console.log('type---------->', type)
let _obj = menuList.find(v => v.key == type)
handleClick(_obj)
} else {
if (type) {
console.log('type---------->', type)
let _obj = menuList.find(v => v.key == type)
handleClick(_obj)
if (menuList[1]) {
handleClick(menuList[1])
} else {
if (menuList[1]) {
handleClick(menuList[1])
}else {
handleClick(menuList[0])
}
handleClick(menuList[0])
}
}
})