From cab6a9cfa8ab0770c810a5cdfe7b4abc142a8cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=86=8A=E4=B8=BD=E5=90=9B?= <664953382@qq.com> Date: Thu, 30 Dec 2021 16:48:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=AF=E7=94=B1=E4=BF=AE=E6=94=B9=EF=BC=8C?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E7=A7=BB=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/styles/index.scss | 34 +++++++ src/components/Pagination/index.vue | 61 ++++++------ src/components/webHead/index.vue | 5 +- src/router/index.js | 39 ++++++++ src/views/website/about.vue | 93 +++++++++++++++++ src/views/website/activity.vue | 130 ++++++++++++++++++++++++ src/views/website/government.vue | 12 +++ src/views/website/innovate.vue | 149 ++++++++++++++++++++++++++++ src/views/website/large.vue | 12 +++ src/views/website/scientific.vue | 12 +++ src/views/website/small.vue | 12 +++ src/views/website/solution.vue | 9 ++ src/views/websiteLayout.vue | 3 +- 13 files changed, 537 insertions(+), 34 deletions(-) create mode 100644 src/views/website/about.vue create mode 100644 src/views/website/activity.vue create mode 100644 src/views/website/government.vue create mode 100644 src/views/website/innovate.vue create mode 100644 src/views/website/large.vue create mode 100644 src/views/website/scientific.vue create mode 100644 src/views/website/small.vue create mode 100644 src/views/website/solution.vue diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 29dd2b9..6145b6e 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -191,3 +191,37 @@ aside { .multiselect--active { z-index: 1000 !important; } +// 自定义全局样式 +.conter1000 { + width: 1000px; + margin: 0 auto; +} +// 2行文本省略号 +.text_hidden { + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + word-break: break-all; +} +.x_btns { + font-size: 16px !important; + color: #fff !important; + border-radius: 0 !important; + background-color: #0054ff !important; +} +.x16{ + font-size: 16px !important; +} +.x_fff{ + color: #fff !important; +} +.x_blue{ + color: #0054ff !important; +} +.x_border_blue{ + border: 1px solid #0054ff !important; +} +.x_bg_blue{ + background-color: #0054ff !important; +} diff --git a/src/components/Pagination/index.vue b/src/components/Pagination/index.vue index 1f96271..25fbb13 100644 --- a/src/components/Pagination/index.vue +++ b/src/components/Pagination/index.vue @@ -1,5 +1,5 @@