提交 664303a2 authored 作者: coderBryanFu's avatar coderBryanFu

update

上级 f8e9daac
......@@ -9,23 +9,23 @@ const overViewRoutes = [
// path: "/",
// redirect: "/overview"
// },
{
path: "/overview",
name: "overView",
component: overView,
meta: {
title: "中美科技博弈概览"
}
},
// GJ概览页面路由
{
path: "/gjOverview",
name: "gjOverView",
component: gjOverView,
meta: {
title: "国家概览"
}
},
// {
// path: "/overview",
// name: "overView",
// component: overView,
// meta: {
// title: "中美科技博弈概览"
// }
// },
// // GJ概览页面路由
// {
// path: "/gjOverview",
// name: "gjOverView",
// component: gjOverView,
// meta: {
// title: "国家概览"
// }
// },
]
......
......@@ -120,10 +120,10 @@
{{ News.hotspotTag }}
</div>
</div>
<img
<!-- <img
:src="News.hotspotPicture ? News.hotspotPicture : DefaultOrgIcon"
style="width: 96px; height: 96px"
/>
/> -->
</div>
<div
style="/* 矩形 351 */ width: 664px; height: 1px; background: rgba(234, 236, 238, 1)"
......@@ -1426,7 +1426,7 @@ onUnmounted(() => {
justify-content: space-between;
.title-text {
/* 美国白宫发布关于进一步延长TikTok执法宽限期的行政令 */
width: 547px;
width: 660px;
// height: 26px;
}
......@@ -1534,7 +1534,7 @@ onUnmounted(() => {
font-family: Source Han Sans CN;
font-style: bold;
font-size: 16px;
font-weight: 400;
font-weight: 700;
line-height: 24px;
letter-spacing: 0px;
text-align: left;
......
......@@ -52,8 +52,8 @@
</div>
</div> -->
<div class="home-main">
<div class="home-main-header" v-show="!isShow">
<div class="home-main-header-center">
<div class="home-main-header">
<div class="home-main-header-center" v-show="!isShow">
<el-input
v-model="searchBillText"
@keyup.enter="handleSearch"
......@@ -89,7 +89,7 @@
<div class="item-footer">分析报告</div>
</div>
</div> -->
<div class="home-main-header-btn-box">
<div class="home-main-header-btn-box" v-show="!isShow">
<div class="btn" @click="handleToPosi('position1')">
<div class="btn-text">{{ "最新动态" }}</div>
<div class="btn-icon">
......@@ -719,7 +719,9 @@
<div class="right-main" v-loading="loading">
<div class="right-main-box" v-for="(item, index) in bills" :key="index">
<div class="header">
<div class="title" @click="handleClickToDetailO(item)" :title="item.name">{{ item.name }}</div>
<div class="title" @click="handleClickToDetailO(item)" :title="item.name">
{{ item.name }}
</div>
<div class="en-title" :title="item.eName">{{ item.eName }}</div>
</div>
<div class="main">
......@@ -1768,6 +1770,7 @@ onUnmounted(() => {
height: 144px;
background: #fff;
overflow: hidden;
box-shadow: 0px 0px 20px 0px rgba(25, 69, 130, 0.3);
.home-main-header-center {
margin-top: 20px;
margin-left: 200px;
......@@ -1859,9 +1862,7 @@ onUnmounted(() => {
}
}
.scrollHomeBox {
width: 100%;
height: calc(100% - 144px);
overflow-y: auto;
}
.home-box {
position: relative;
......
......@@ -44,15 +44,7 @@
</div>
<div class="home-main" :class="{ scrollHomeMain: isShow }" ref="containerRef">
<div class="home-main-header">
<!-- <div class="home-main-header-top" v-show="!isShow">
<div class="header-left">
<HeaderMenu></HeaderMenu>
</div>
<div class="header-right">
<headerInfo curTitleName="政令"></headerInfo>
</div>
</div> -->
<div class="home-main-header-center" v-show="!isShow">
<div class="home-main-header-center">
<el-input
v-model="searchDecreeText"
@keyup.enter="handleSearch"
......
......@@ -34,8 +34,8 @@
</div>
<div class="main">
<InsDetail v-if="activeTabName === '机构详情'"></InsDetail>
<Deepdig v-else-if="activeTabName === '深度挖掘'"></Deepdig>
<Sanction v-else></Sanction>
<!-- <Deepdig v-else-if="activeTabName === '深度挖掘'"></Deepdig>
<Sanction v-else></Sanction> -->
</div>
</div>
</template>
......@@ -49,6 +49,7 @@ import Sanction from "./sanction/index.vue";
import { getGovOrgBasicInfo } from "@/api/institution/index";
import DefaultIcon2 from "@/assets/icons/default-icon2.png";
import { ElMessage } from "element-plus";
const route = useRoute();
......@@ -94,6 +95,10 @@ const tabList = ref([
]);
const handleClickTab = val => {
if(val.name === '深度挖掘' || val.name === '对华制裁') {
ElMessage.warning('当前功能开发中,敬请期待!')
return
}
activeTabName.value = val.name;
window.sessionStorage.setItem("institutionActiveTabName", val.name);
};
......
......@@ -155,12 +155,12 @@ const route = useRoute();
// 基本信息
const basicInfo = ref({
image: Img,
shijian: "1948年",
dizhi: "华盛顿特区宪法大道1401号赫伯特·C·胡佛大楼 ",
zhize: "国际贸易、进出口管制、经济数据统计及专利商标管理",
xiashujigou: "工业与安全局、国际贸易管理局、专利商标局等",
zhicaishouduan: "实体清单、军事最终用户清单、​​“301条款”关税、​​“232条款”关税、特别指定国民清单"
image: DefaultIcon2,
shijian: "",
dizhi: " ",
zhize: "",
xiashujigou: "",
zhicaishouduan: ""
});
const handleGetBasicInfo = async () => {
const params = {
......
......@@ -2,7 +2,12 @@
<div class="home-wrapper">
<div class="search-header" v-show="isShow">
<div class="home-main-header-center">
<el-input v-model="searchExportControlText" style="width: 800px; height: 100%" placeholder="搜索出口管制" />
<el-input
v-model="searchExportControlText"
@keyup.enter="handleSearch"
style="width: 800px; height: 100%"
placeholder="搜索出口管制"
/>
<div class="search">
<div class="search-icon">
<img src="@/assets/icons/search-icon.png" alt="" />
......@@ -408,7 +413,7 @@
</el-col>
</el-row>
<el-row :gutter="20" style="width: 1600px; margin: 0 auto; margin-top: 39px;">
<el-row :gutter="20" style="width: 1600px; margin: 0 auto; margin-top: 39px">
<CustomTitle id="position4" title="资源库" style="margin-top: 0px" />
<div class="resource-tabs">
<div
......@@ -3389,6 +3394,7 @@ const handleMediaClick = item => {
height: 144px;
background: #fff;
overflow: hidden;
box-shadow: 0px 0px 20px 0px rgba(25, 69, 130, 0.3);
.home-main-header-center {
margin-top: 20px;
margin-left: 200px;
......
......@@ -52,7 +52,7 @@
<headerInfo curTitleName="科技智库"></headerInfo>
</div>
</div> -->
<div class="home-main-header-center" v-show="!isShow">
<div class="home-main-header-center">
<el-input
v-model="searchThinktankText"
@keyup.enter="handleSearch"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论