|
@@ -41,6 +41,7 @@ import { updatePwd } from "@/view/system/quisk";
|
|
|
import { computed, ref, watch } from "vue";
|
|
|
import { addCaseScenes } from "@/view/originalPhoto/quisk";
|
|
|
import { windowOpen } from "@/util";
|
|
|
+import { ui18n } from '@/i18n'
|
|
|
|
|
|
refreshRole();
|
|
|
const caseId = computed(() => {
|
|
@@ -73,7 +74,7 @@ const handlemtk = () => {
|
|
|
};
|
|
|
const handleSee = () => {
|
|
|
let url = getUrlSrc({type: 99}, caseId.value)
|
|
|
- windowOpen({url,title: '预览案件'});
|
|
|
+ windowOpen({url,title: ui18n.t('sceneHome.caseView')});
|
|
|
};
|
|
|
const logout = async () => {
|
|
|
if (await confirm("确定要退出登录吗?")) {
|