This commit is contained in:
duanxiaohai 2024-11-11 16:05:22 +08:00
commit bd991a0bf6
7 changed files with 48 additions and 23 deletions

BIN
dist.zip Normal file

Binary file not shown.

View File

@ -75,6 +75,7 @@ import {
import { useRouter, useRoute } from "vue-router";
const router = useRouter();
const routers = useRoute();
import tools from "@/utils/tools";
//
const back = () => {
router.back();
@ -106,8 +107,19 @@ const to = (url) => {
router.push({
path: `${url}`,
});
data.nowTab = url;
data.menushow = false;
if (url == "/home/index/map") {
let menu = tools.data.get("menu");
if(menu && menu.indexOf('ggfw:ystp') != -1){
data.nowTab = url;
data.menushow = false;
}
}else{
data.nowTab = url;
data.menushow = false;
}
// data.nowTab = url;
// data.menushow = false;
};
const onMenu = (val) => {
console.log(val);

View File

@ -1,7 +1,8 @@
import { createRouter, createWebHashHistory } from "vue-router";
import http from "@/utils/request.js";
import tools from "@/utils/tools";
import { namespaceContextKey } from "element-plus";
// import { namespaceContextKey } from "element-plus";
import { ElMessage, ElMessageBox } from "element-plus";
const routerHistory = createWebHashHistory();
const router = createRouter({
@ -138,6 +139,7 @@ const router = createRouter({
});
router.beforeEach((to, form, next) => {
let menu = tools.data.get("menu");
// var token = getCookie('lytoken')
// // console.log('token', token)
// if (token == '') {
@ -159,13 +161,17 @@ router.beforeEach((to, form, next) => {
// next();
// }
// console.log(55555, to.fullPath);
// if (to.fullPath == '/home/index/map') {
// next('/home/index')
// } else {
// }
next();
if (to.fullPath == '/home/index/map' ) {
if(!menu || menu.indexOf('ggfw:ystp') == -1){
ElMessage.error("您无权限访问该模块,若有需求请联系大数据中心!");
}else{
next();
}
} else {
next();
}
// next();
});
export default router;

View File

@ -2,7 +2,7 @@ import axios from "axios";
import { ElMessage } from "element-plus";
import tools from "@/utils/tools";
import router from "../router";
axios.defaults.baseURL = 'https://jzzf.longyou.gov.cn:998/'
// axios.defaults.baseURL = 'https://jzzf.longyou.gov.cn:998/'
axios.defaults.timeout = 120000;
// HTTP request 拦截器

View File

@ -137,7 +137,7 @@ const getCookie = (cname) => {
};
//
const login = () => {
let backurl=tools.data.get("backUrl");
let backurl = tools.data.get("backUrl");
dd.getAuthCode()
.then((res) => {
// let auth__code = env == "pc" ? res.auth_code : res.code;
@ -151,8 +151,9 @@ const login = () => {
// var token = getCookie("lytoken");
tools.data.set("token", response.data);
tools.data.set("type", 1);
getMenu();
if (backurl) {
window.location.href= backurl;
window.location.href = backurl;
tools.data.remove("backUrl");
}
} else {
@ -202,17 +203,17 @@ const login = () => {
// console.log("Decrypted Text:", decodedText);
var tokenU = decodedText;
if (getCookie("lytoken")) {
} else {
document.cookie = `lytoken=${tokenU}`;
}
var token = getCookie("lytoken");
tools.data.set("token", token);
tools.data.set("type", 2);
if (backurl) {
window.location.href= backurl;
tools.data.remove("backUrl");
}
getMenu();
if (backurl) {
window.location.href = backurl;
tools.data.remove("backUrl");
}
} else {
var tokenPd = getCookie("lytoken");
if (!tokenPd) {
@ -220,11 +221,17 @@ const login = () => {
"http://220.191.238.50:996/api/login?returnURL=" +
window.location.href;
} else {
getMenu();
}
}
});
};
//
const getMenu = () => {
http.get(`/api/ggfwyth/account/roleMenu`).then((res) => {
tools.data.set("menu", res.data);
});
};
onUnmounted(() => {
//
stopDrag();

View File

@ -1611,7 +1611,7 @@ const movemode = () => {
selectedOverlay = null;
sceneMove = null;
movepoy = null;
select = null;
// select = null;
arrJWD = [[[]]];
};
//

View File

@ -795,9 +795,9 @@ onMounted(() => {});
}
}
// :deep(.el-table--enable-row-hover .el-table__body tr:hover > td) {
// background-color: #2f4b74 !important;
// }
:deep(.el-table--enable-row-hover .el-table__body tr:hover > td) {
background-color: #2f4b74 !important;
}
:deep(.el-table__body tr.hover-row > td.el-table__cell) {
background-color: #2f4b74;
}