fix: 修复资源下载出现服务器异常问题

main
wu.jian2 2 years ago
parent 1185dce0ee
commit da2f929ae2

@ -39,7 +39,7 @@ export default {
}, },
computed: { computed: {
title () { title () {
if (this.$route.query.edit) return '大屏设计器' if (this.$route.query.edit) return '大屏设计器'
return window?.BS_CONFIG?.starter?.title return window?.BS_CONFIG?.starter?.title
}, },
logo () { logo () {
@ -112,10 +112,10 @@ export default {
path: tab.path, path: tab.path,
query: { edit: 1 } query: { edit: 1 }
}) })
}else{ } else {
this.$router.push({ this.$router.push({
path: tab.path path: tab.path
}) })
} }
} }
} }
@ -140,6 +140,8 @@ export default {
background-position: center right; background-position: center right;
.logo-title { .logo-title {
//
user-select: none;
font-size: 30px; font-size: 30px;
position: absolute; position: absolute;
z-index: 23; z-index: 23;

@ -280,7 +280,7 @@ export default {
window.open(screen.url, '_blank') window.open(screen.url, '_blank')
}, },
downLoad (screen) { downLoad (screen) {
this.$dataRoomAxios.download(`/bigScreen/file/download/${screen.id}`, true) this.$dataRoomAxios.download(`/bigScreen/file/download/${screen.id}`)
}, },
del (screen) { del (screen) {
this.$confirm('确定删除该资源?', '提示', { this.$confirm('确定删除该资源?', '提示', {

Loading…
Cancel
Save