Commit f70e13da authored by liang's avatar liang

暂停运营公告

parent b11d0211
This diff is collapsed.
...@@ -27,6 +27,7 @@ module.exports = { ...@@ -27,6 +27,7 @@ module.exports = {
routesWhiteList: [ routesWhiteList: [
// "/login", // "/login",
"/404", "/404",
"/403",
"/401", "/401",
"/sso", "/sso",
"/test", "/test",
......
...@@ -6,6 +6,10 @@ import EmptyLayout from "@/layouts/EmptyLayout" ...@@ -6,6 +6,10 @@ import EmptyLayout from "@/layouts/EmptyLayout"
Vue.use(VueRouter) Vue.use(VueRouter)
export const constantRoutes = [ export const constantRoutes = [
{
path: "/home",
redirect: "/403",
},
{ {
path: "/home", path: "/home",
name: "Home", name: "Home",
...@@ -87,6 +91,11 @@ export const constantRoutes = [ ...@@ -87,6 +91,11 @@ export const constantRoutes = [
name: "401", name: "401",
component: () => import("@/views/401"), component: () => import("@/views/401"),
hidden: true, hidden: true,
}, {
path: "/403",
name: "403",
component: () => import("@/views/403"),
hidden: true,
}, },
{ {
path: "/404", path: "/404",
......
<template>
<div class="notice">
<header><h3>GECA网站暂停运营公告</h3></header>
<main>
<article>
全体用户:<br />
<p>
感谢您一直以来对国家消化道早癌防治中心联盟早期胃癌筛查项目的支持和厚爱!
</p>
<p>
由于网站维护的需要,本网站将于2024年9月30日23时59分暂停使用。后续开放时间待通知。
</p>
<p>
若您有任何疑问或建议,请登录账户后用微信扫页面左下角二维码加入问题反馈群向我们反馈。
</p>
<p>
若您有专科专病临床研究数字化应用或数据服务等其他需求,请联系:上海市计算技术研究所有限公司
(秦艳13052028226) 。
</p>
<p>
再次感谢广大用户的支持与理解,同时也对此次暂停运营给成的不便深表款意!
</p>
</article>
</main>
</div>
</template>
<style scoped>
.notice {
color: #000;
width: 700px;
margin: 100px auto;
h3 {
font-size: 30px;
}
}
header {
text-align: center;
}
article {
line-height: 50px;
font-size: 18px;
p {
text-indent: 2em;
}
}
</style>
...@@ -89,7 +89,8 @@ module.exports = { ...@@ -89,7 +89,8 @@ module.exports = {
proxy: { proxy: {
"/api": { "/api": {
// target: "http://192.168.31.140:11021/", // target: "http://192.168.31.140:11021/",
target: "https://ds.cixincloud.com/geca-api/", // target: "https://ds.cixincloud.com/geca-api/",
target: "https://geca.cixincloud.cn/geca-api/",
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
"^/api": "", "^/api": "",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment