From b61e7cf80318a7eee4a7258c336440e45e296b6f Mon Sep 17 00:00:00 2001 From: "851673013@qq.com" <851673013@qq.com> Date: Fri, 17 Jun 2022 18:04:49 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=BA=95=E9=83=A8=E6=9B=B4?= =?UTF-8?q?=E6=8D=A2=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/public/index.html | 1 + front/public/static/config/footerData.js | 28 ++++++++++++++++ front/src/views/home/details.vue | 6 ++-- front/src/views/newHome/components/Footer.vue | 33 +++++++++---------- 4 files changed, 47 insertions(+), 21 deletions(-) create mode 100644 front/public/static/config/footerData.js diff --git a/front/public/index.html b/front/public/index.html index b24bd3d0..c5160956 100644 --- a/front/public/index.html +++ b/front/public/index.html @@ -60,6 +60,7 @@ + diff --git a/front/public/static/config/footerData.js b/front/public/static/config/footerData.js new file mode 100644 index 00000000..f03e6e35 --- /dev/null +++ b/front/public/static/config/footerData.js @@ -0,0 +1,28 @@ +/* + * @Author: zhangfeihu + * @Date: 2022-06-16 16:37:31 + * @LastEditors: 851673013@qq.com 851673013@qq.com + * @LastEditTime: 2022-06-16 17:10:48 + * @FilePath: \qiantai\front\public\static\config\footerData.js + * @Description: 底部菜单数据配置配置 + */ +const footerDataList = { + company: { + left: '青岛市大数据发展管理局建设', + right: '海信网络科技股份有限公司' + }, + address: [ + { + name: '鲁IC备00000000号', + value: '政府标识码3702000106', + }, + { + name: '版权所有:青岛市大数据发展管理局', + value: '地址:山东省青岛市香港中路17号市级机关办公楼', + }, + { + name: '电话:0532-8561234', + value: '传真:0532-2145122', + }, + ] +} diff --git a/front/src/views/home/details.vue b/front/src/views/home/details.vue index 408b3160..f273607c 100644 --- a/front/src/views/home/details.vue +++ b/front/src/views/home/details.vue @@ -16,7 +16,7 @@ - + @@ -25,7 +25,7 @@ import HomeHeader from '@/views/home/components/header' import { defineComponent, reactive, ref } from 'vue' import DetailsView from './components/DetailsView.vue' - import AbilityToRecommendBottom from '@/views/home/components/AbilityToRecommendBottom' + import HomeFooter from '@/views/newHome/components/Footer' import AlgorithmDetails from '@/views/detailsAll/AlgorithmDetails' import ApplicationDetails from '@/views/detailsAll/ApplicationDetails' import { selectOne } from '@/api/home' @@ -36,7 +36,7 @@ components: { HomeHeader, DetailsView, - AbilityToRecommendBottom, + HomeFooter, AlgorithmDetails, ApplicationDetails, }, diff --git a/front/src/views/newHome/components/Footer.vue b/front/src/views/newHome/components/Footer.vue index 4609ed53..5bba928b 100644 --- a/front/src/views/newHome/components/Footer.vue +++ b/front/src/views/newHome/components/Footer.vue @@ -1,13 +1,21 @@ +