Compare commits
4 Commits
05964a73e8
...
a7ac2e8a1e
Author | SHA1 | Date |
---|---|---|
guoyue | a7ac2e8a1e | |
guoyue | 42af2e980b | |
guoyue | dd100d3867 | |
guoyue | 5f3aad2539 |
File diff suppressed because it is too large
Load Diff
|
@ -312,7 +312,7 @@
|
|||
<span>{{ statusText[record.status] || '' }}</span>
|
||||
</template>
|
||||
<template v-if="column.dataIndex === 'operation'">
|
||||
<a @click="
|
||||
<a :class="record.status != 1 ? 'disabled-text' : ''" @click="
|
||||
openVideo(
|
||||
record.channelCode ||
|
||||
record.channelId ||
|
||||
|
@ -758,7 +758,8 @@ const openVideo = (id, item) => {
|
|||
rowClickData.value = item
|
||||
// 单个预览
|
||||
if (item && item.status != 1) {
|
||||
return message.warning('当前设备离线, 不可预览!')
|
||||
return
|
||||
// return message.warning('当前设备离线, 不可预览!')
|
||||
}
|
||||
console.log('打开视频', id)
|
||||
const param = {
|
||||
|
@ -2367,4 +2368,13 @@ video::-webkit-media-controls {
|
|||
bottom: 30px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.disabled-text {
|
||||
cursor: not-allowed;
|
||||
opacity: 0.5;
|
||||
color: #666666;
|
||||
&:hover {
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -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('操作失败!')
|
||||
}
|
||||
|
|
|
@ -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])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue