提交 d1c60abe authored 作者: coderBryanFu's avatar coderBryanFu

update

上级 b6341181
...@@ -77,6 +77,14 @@ const routes = [ ...@@ -77,6 +77,14 @@ const routes = [
title: "智能写报" title: "智能写报"
} }
}, },
{
path: "/chat",
name: "chat",
component: Chat,
meta: {
title: "智能问答"
}
},
{ {
path: "/", path: "/",
...@@ -447,167 +455,167 @@ const routes = [ ...@@ -447,167 +455,167 @@ const routes = [
}, },
// 市场准入限制首页 // 市场准入限制首页
{ {
path: "/marketAccessRestrictions", path: "/marketAccessRestrictions",
name: "MarketAccessRestrictions", name: "MarketAccessRestrictions",
component: MarketAccessRestrictions, component: MarketAccessRestrictions,
meta: { meta: {
title: "市场准入限制" title: "市场准入限制"
} }
}, },
{ {
path: "/marketAccessLayout", path: "/marketAccessLayout",
name: "MarketAccessLayout", name: "MarketAccessLayout",
component: MarketAccessLayout, component: MarketAccessLayout,
redirect: "/marketAccessLayout/overview", redirect: "/marketAccessLayout/overview",
meta: { meta: {
title: "市场准入限制布局" title: "市场准入限制布局"
}, },
children: [ children: [
{ {
path: "overview", path: "overview",
name: "MarketAccessOverview", name: "MarketAccessOverview",
component: MarketAccessOverview, component: MarketAccessOverview,
meta: { meta: {
title: "调查概况" title: "调查概况"
} }
}, },
{ {
path: "case", path: "case",
name: "MarketAccessCase", name: "MarketAccessCase",
component: MarketAccessCase, component: MarketAccessCase,
meta: { meta: {
title: "调查案件" title: "调查案件"
} }
} }
] ]
}, },
{ {
path: "/marketSingleCaseLayout", path: "/marketSingleCaseLayout",
name: "MarketSingleCaseLayout", name: "MarketSingleCaseLayout",
component: MarketSingleCaseLayout, component: MarketSingleCaseLayout,
redirect: "/marketSingleCaseLayout/overview", redirect: "/marketSingleCaseLayout/overview",
meta: { meta: {
title: "单次调查案件布局" title: "单次调查案件布局"
}, },
children: [ children: [
{ {
path: "overview", path: "overview",
name: "MarketSingleCaseOverview", name: "MarketSingleCaseOverview",
component: MarketSingleCaseOverview, component: MarketSingleCaseOverview,
meta: { meta: {
title: "调查简介" title: "调查简介"
} }
}, },
{ {
path: "deepdig", path: "deepdig",
name: "MarketSingleCaseDeepdig", name: "MarketSingleCaseDeepdig",
component: MarketSingleCaseDeepdig, component: MarketSingleCaseDeepdig,
meta: { meta: {
title: "深度挖掘" title: "深度挖掘"
} }
} }
] ]
}, },
// 出口管制转移过来的页面 // 出口管制转移过来的页面
{ {
path: "/exportControl/analysis", path: "/exportControl/analysis",
name: "analysis", name: "analysis",
component: () => import("@/views/exportControl/analysis/index.vue"), component: () => import("@/views/exportControl/analysis/index.vue"),
meta: { meta: {
title: "分析页" title: "分析页"
} }
}, },
{ {
path: "/exportControl/infoplatform", path: "/exportControl/infoplatform",
name: "infoplatform", name: "infoplatform",
component: () => import("@/views/exportControl/infoPlatform/index.vue"), component: () => import("@/views/exportControl/infoPlatform/index.vue"),
meta: { meta: {
title: "信息平台" title: "信息平台"
} }
}, },
{ {
path: "/exportControl/rulelimit", path: "/exportControl/rulelimit",
name: "rulelimit", name: "rulelimit",
component: () => import("@/views/exportControl/ruleLimit/index.vue"), component: () => import("@/views/exportControl/ruleLimit/index.vue"),
meta: { meta: {
title: "规则限制" title: "规则限制"
} }
}, },
{ {
path: "/exportControl/ruledetail", path: "/exportControl/ruledetail",
name: "ruledetail", name: "ruledetail",
component: () => import("@/views/exportControl/ruleDetail/index.vue"), component: () => import("@/views/exportControl/ruleDetail/index.vue"),
meta: { meta: {
title: "规则详情" title: "规则详情"
} }
}, },
{ {
path: "/exportControl/researchfunding", path: "/exportControl/researchfunding",
name: "researchfunding", name: "researchfunding",
component: () => import("@/views/exportControl/researchFunding/index.vue"), component: () => import("@/views/exportControl/researchFunding/index.vue"),
meta: { meta: {
title: "科研资助" title: "科研资助"
} }
}, },
// 投融资限制 // 投融资限制
{ {
path: "/finance", path: "/finance",
name: "finance", name: "finance",
component: Finance, component: Finance,
meta: { meta: {
title: "投融资限制" title: "投融资限制"
} }
}, },
// 新闻事件分析 // 新闻事件分析
{ {
path: "/newsAnalysis", path: "/newsAnalysis",
name: "newsAnalysis", name: "newsAnalysis",
component: NewsAnalysis, component: NewsAnalysis,
meta: { meta: {
title: "新闻事件分析" title: "新闻事件分析"
} }
}, },
// 门户 // 门户
{ {
path: "/portal1", path: "/portal1",
name: "portal1", name: "portal1",
component: Portal1, component: Portal1,
meta: { meta: {
title: "门户1" title: "门户1"
} }
}, },
{ {
path: "/portal2", path: "/portal2",
name: "portal2", name: "portal2",
component: Portal2, component: Portal2,
meta: { meta: {
title: "门户2" title: "门户2"
} }
}, },
// 综合搜索 // 综合搜索
{ {
path: "/comprehensiveSearch", path: "/comprehensiveSearch",
name: "comprehensiveSearch", name: "comprehensiveSearch",
component: ComprehensiveSearch, component: ComprehensiveSearch,
meta: { meta: {
title: "综合搜索" title: "综合搜索"
} }
}, },
{ {
path: "/searchResults", path: "/searchResults",
name: "searchResults", name: "searchResults",
component: SearchResults, component: SearchResults,
meta: { meta: {
title: "搜索结果" title: "搜索结果"
} }
} }
]; ];
const router = createRouter({ const router = createRouter({
......
...@@ -441,6 +441,7 @@ onUnmounted(() => { ...@@ -441,6 +441,7 @@ onUnmounted(() => {
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 16px; gap: 16px;
margin-bottom: 10px;
.left { .left {
width: 300px; width: 300px;
height: 880px; height: 880px;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="wrapper"> <div class="wrapper">
<div class="header"> <div class="header">
<!-- <span>首页 </span>> <span>综合检索 </span> --> <!-- <span>首页 </span>> <span>综合检索 </span> -->
<div class="header-item">首页</div> <div class="header-item back-item" @click="handleBackHome">首页</div>
<div class="header-item">></div> <div class="header-item">></div>
<div class="header-item">综合检索</div> <div class="header-item">综合检索</div>
</div> </div>
...@@ -129,6 +129,13 @@ import Img3 from "./assets/images/box3-img3.png"; ...@@ -129,6 +129,13 @@ import Img3 from "./assets/images/box3-img3.png";
import Img4 from "./assets/images/box3-img4.png"; import Img4 from "./assets/images/box3-img4.png";
import Img5 from "./assets/images/box3-img5.png"; import Img5 from "./assets/images/box3-img5.png";
// 返回首页
const handleBackHome = () => {
router.push({
path: "/overview"
});
};
const headerInfoList = ref([ const headerInfoList = ref([
{ {
name: "美国", name: "美国",
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
</div> </div>
<div class="divider"></div> <div class="divider"></div>
<div style="display: flex;height: 320px;width: calc(100% - 40px) ;margin: 20px;" id="char9"> <div style="display: flex;height: 360px;width: calc(100% - 40px) ;margin: 20px;" id="char9">
</div> </div>
...@@ -145,6 +145,7 @@ onMounted(() => { ...@@ -145,6 +145,7 @@ onMounted(() => {
.thematic-box { .thematic-box {
margin-top: 64px; margin-top: 64px;
height: 578px; height: 578px;
margin-bottom: 100px;
box-sizing: border-box; box-sizing: border-box;
border: 1px solid rgba(255, 255, 255, 1); border: 1px solid rgba(255, 255, 255, 1);
border-radius: var(---, 10px); border-radius: var(---, 10px);
...@@ -152,7 +153,6 @@ onMounted(() => { ...@@ -152,7 +153,6 @@ onMounted(() => {
box-shadow: 0px 0px 20px 0px rgba(25, 69, 130, 0.1); box-shadow: 0px 0px 20px 0px rgba(25, 69, 130, 0.1);
background: linear-gradient(180.00deg, rgba(246, 250, 255, 1), rgba(246, 250, 255, 0) 100%); background: linear-gradient(180.00deg, rgba(246, 250, 255, 1), rgba(246, 250, 255, 0) 100%);
.divide { .divide {
width: 100%; width: 100%;
margin: 0 auto; margin: 0 auto;
......
...@@ -230,6 +230,7 @@ const warningList = ref([ ...@@ -230,6 +230,7 @@ const warningList = ref([
background: #055fc2; background: #055fc2;
color: #fff; color: #fff;
font-size: 20px; font-size: 20px;
font-weight: 700;
line-height: 48px; line-height: 48px;
text-align: center; text-align: center;
} }
......
...@@ -31,7 +31,7 @@ const getMultiLineChart = (dataX, dataY1, dataY2, dataY3, dataY4, dataY5, dataY6 ...@@ -31,7 +31,7 @@ const getMultiLineChart = (dataX, dataY1, dataY2, dataY3, dataY4, dataY5, dataY6
return { return {
tooltip: { trigger: 'axis', axisPointer: { type: 'cross' } }, tooltip: { trigger: 'axis', axisPointer: { type: 'cross' } },
grid: { top: '5%', right: '20%', bottom: '0%', left: '0%', containLabel: true }, grid: { top: '5%', right: '0%', bottom: '0%', left: '0%', containLabel: true },
xAxis: { type: 'category', boundaryGap: false, data: dataX }, xAxis: { type: 'category', boundaryGap: false, data: dataX },
yAxis: { type: 'value', splitLine: { lineStyle: { color: '#ebebeb' } } }, yAxis: { type: 'value', splitLine: { lineStyle: { color: '#ebebeb' } } },
legend: { show: false }, // 隐藏官方 legend legend: { show: false }, // 隐藏官方 legend
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论