消息跳转:区分市局和西海岸
This commit is contained in:
parent
177cc4e9c7
commit
240784a3b2
|
@ -262,6 +262,8 @@ const goPage = (item) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
let isQingDao = whoShow.itShowQingDao;
|
||||||
|
|
||||||
// 更改消息状态
|
// 更改消息状态
|
||||||
const read = (item) => {
|
const read = (item) => {
|
||||||
if (selectData.value.length === 0 && !item) {
|
if (selectData.value.length === 0 && !item) {
|
||||||
|
@ -272,7 +274,9 @@ const read = (item) => {
|
||||||
if (item) {
|
if (item) {
|
||||||
// 已读状态
|
// 已读状态
|
||||||
if (item.readStatus === 1) {
|
if (item.readStatus === 1) {
|
||||||
|
if(isQingDao) {
|
||||||
goPage(item)
|
goPage(item)
|
||||||
|
}
|
||||||
// 跳转页面
|
// 跳转页面
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -281,10 +285,12 @@ const read = (item) => {
|
||||||
message.success('通知已读!')
|
message.success('通知已读!')
|
||||||
mybus.emit('getMynotice')
|
mybus.emit('getMynotice')
|
||||||
init()
|
init()
|
||||||
|
if (isQingDao) {
|
||||||
// 页面跳转
|
// 页面跳转
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
goPage(item)
|
goPage(item)
|
||||||
}, 1000)
|
}, 1000)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
message.error('操作失败!')
|
message.error('操作失败!')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue