This commit is contained in:
jy
2025-06-17 20:06:32 +08:00
6 changed files with 9 additions and 17 deletions

View File

@ -156,6 +156,7 @@
right: 20px;
top: 22px;
font-size: 17px;
z-index: 9;
span {
color: #0bb7ff;
cursor: pointer;

View File

@ -203,8 +203,6 @@ import { qcckGet, qcckPost, qcckPut } from "@/api/qcckApi.js";
import * as rule from "@/utils/rules.js";
import TagSelectorDialog from "@/components/aboutTable/TagSelectorDialog.vue";
import DialogList from "./dialogList.vue";
import "@wangeditor/editor/dist/css/style.css"; // 引入 css
import { Editor, Toolbar } from "@wangeditor/editor-for-vue";
import { selectUserDeptPage } from "@/api/user-manage";
import {
ref,

View File

@ -160,7 +160,6 @@ import MyTable from "@/components/aboutTable/MyTable.vue";
import FormMessage from "@/components/aboutTable/FormMessage.vue";
import { qcckPost, qcckPut } from "@/api/qcckApi.js";
import DialogList from "@/views/backOfficeSystem/IntelligentControl/myControl/components/ui/dialogList.vue";
import moment from "moment";
const { D_GS_BK_CZYQ, D_GS_BK_CZJSDWLX, D_GS_BK_DJ, D_GS_BK_YZ, D_GS_BK_SJLX } =
proxy.$dict(
"D_GS_BK_CZYQ",

View File

@ -26,7 +26,6 @@
:key="pageData.keyCount"
:tableConfiger="pageData.tableConfiger"
:controlsWidth="pageData.controlsWidth"
@chooseData="chooseData"
>
<template #bqYs="{ row }">
<DictTag :value="row.bqYs" :tag="false" :options="D_GS_SSYJ" />

View File

@ -80,7 +80,6 @@
<el-icon color="#fff" style="top:2px;"><Notification/></el-icon><i class="ml10" style="color: #fff;">{{iv}}</i>
</div>
</el-popover>
<span class="ml10 mr10"><img @click.stop="handleBtns('后台')" src="@/assets/images/meun.png" alt=""></span>
</div>
</ul>

View File

@ -128,16 +128,12 @@ const loginRules = ref({
const handleClose = () => {};
const refreshToken = (e) => {
store
.dispatch("user/refreshToken", { deptId: e, jwtToken: authorization.value })
.then((res) => {
store.dispatch("user/refreshToken", { deptId: e, jwtToken: authorization.value}).then((res) => {
loading.value = false;
store.commit("user/setDeptId", e);
// window.location.href = '/'// 登录后操作
window.location.href = '/'// 登录后操作
router.push("/");
})
.catch(() => {
}).catch(() => {
loading.value = false;
});
};