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