fangmingyue 1 년 전
부모
커밋
9f565dfd2e
27개의 변경된 파일546개의 추가작업 그리고 611개의 파일을 삭제
  1. BIN
      public/background.jpg
  2. 52
    0
      src/components/LeftMiddleRightImgTextPro/index.astro
  3. 21
    27
      src/components/Title/PartTitle.astro
  4. 4
    9
      src/components/Title/SubTitle.astro
  5. 6
    5
      src/layouts/Layout.astro
  6. 1
    1
      src/pages/[lang]/about/index.astro
  7. 57
    70
      src/pages/[lang]/index.astro
  8. 1
    1
      src/pages/[lang]/product/gov-ent-health/index.astro
  9. 1
    1
      src/pages/[lang]/product/others/index.astro
  10. 55
    51
      src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro
  11. 47
    63
      src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro
  12. 1
    0
      src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro
  13. 19
    22
      src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro
  14. 31
    43
      src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro
  15. 1
    1
      src/pages/[lang]/products-solutions/index.astro
  16. 36
    42
      src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro
  17. 1
    1
      src/pages/[lang]/products-solutions/industrial-internet/index.astro
  18. 1
    0
      src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro
  19. 46
    60
      src/pages/[lang]/products-solutions/lot/agriculture/index.astro
  20. 41
    58
      src/pages/[lang]/products-solutions/lot/building/index.astro
  21. 19
    25
      src/pages/[lang]/products-solutions/lot/community/index.astro
  22. 36
    44
      src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro
  23. 1
    1
      src/pages/[lang]/products-solutions/lot/index.astro
  24. 19
    22
      src/pages/[lang]/products-solutions/others/crm/index.astro
  25. 1
    0
      src/pages/[lang]/products-solutions/others/eshop/index.astro
  26. 46
    63
      src/pages/[lang]/products-solutions/others/house/index.astro
  27. 2
    1
      src/pages/[lang]/products-solutions/others/shigongli/index.astro

BIN
public/background.jpg 파일 보기


+ 52
- 0
src/components/LeftMiddleRightImgTextPro/index.astro 파일 보기

@@ -0,0 +1,52 @@
1
+---
2
+import Container from '@/components/Container.astro'
3
+import MediaCard from '@/components/MediaCard/MediaCard1.astro'
4
+
5
+const { listOrData, componentsBg, componentTitle, btnBottomDisplay, bhref } =
6
+  Astro.props
7
+---
8
+
9
+<div class=`py-5 ${componentsBg}`>
10
+  <Container title={componentTitle}>
11
+    <div class="row g-5">
12
+      {
13
+        listOrData.map((item, index) => (
14
+          <div class="col-md-4 col-sm-12" id={item.id}>
15
+            <MediaCard
16
+              link={item?.link}
17
+              thumb={item?.thumb}
18
+              title={item?.title}
19
+              subTitle={item?.subTitle}
20
+              more
21
+            />
22
+          </div>
23
+        ))
24
+      }
25
+    </div>
26
+    {
27
+      btnBottomDisplay && (
28
+        <div class="text-center pt-5">
29
+          <a class=" a-bottom-link" href={`${bhref}`}>
30
+            更多新闻资讯
31
+          </a>
32
+        </div>
33
+      )
34
+    }
35
+  </Container>
36
+</div>
37
+<style>
38
+  .a-bottom-link {
39
+    font-size: 20px;
40
+    padding: 12px 33px;
41
+    border: 2px solid #c7000b;
42
+    border-radius: 30px;
43
+    text-decoration: none;
44
+    color: #c7000b;
45
+    cursor: pointer;
46
+    display: inline-block;
47
+  }
48
+  .a-bottom-link:hover {
49
+    background-color: #c7000b;
50
+    color: white;
51
+  }
52
+</style>

+ 21
- 27
src/components/Title/PartTitle.astro 파일 보기

@@ -1,38 +1,32 @@
1 1
 ---
2
-
3
-const {
4
-  title,
5
-} = Astro.props;
2
+const { title } = Astro.props
6 3
 ---
7 4
 
8 5
 <h1 class="part-title">
9
-  <div class="title pb-4">
6
+  <div class="title pb-4 mb-3">
10 7
     {title}
11 8
   </div>
12 9
 </h1>
13 10
 
14
-
15 11
 <style lang="less">
16
-
17
-.part-title {
18
-  font-size: 48px;
19
-  line-height: 1.5;
20
-  text-align: center;
21
-
22
-  .title {
23
-    display: inline-block;
24
-    position: relative;
25
-
26
-    &::after {
27
-      content: '';
28
-      position: absolute;
29
-      bottom: 0;
30
-      left: 25%;
31
-      width: 50%;
32
-      min-height: 2px;
33
-      background-color: var(--bs-danger);
12
+  .part-title {
13
+    font-size: 48px;
14
+    line-height: 1.5;
15
+    text-align: center;
16
+
17
+    .title {
18
+      display: inline-block;
19
+      position: relative;
20
+
21
+      &::after {
22
+        content: '';
23
+        position: absolute;
24
+        bottom: 0;
25
+        left: 25%;
26
+        width: 50%;
27
+        min-height: 2px;
28
+        background-color: var(--bs-danger);
29
+      }
34 30
     }
35 31
   }
36
-}
37
-
38
-</style>
32
+</style>

+ 4
- 9
src/components/Title/SubTitle.astro 파일 보기

@@ -1,12 +1,7 @@
1 1
 ---
2
+const { text, lines = 0, class: className } = Astro.props
2 3
 
3
-const {
4
-  text,
5
-  lines = 0,
6
-  class: className,
7
-} = Astro.props
8
-
9
-let style = '';
4
+let style = ''
10 5
 if (lines == 1) {
11 6
   style = [
12 7
     'white-space: nowrap',
@@ -20,11 +15,11 @@ if (lines == 1) {
20 15
     '-webkit-box-orient: vertical',
21 16
     'overflow: hidden',
22 17
     'text-overflow: ellipsis',
18
+    'height:5vw',
23 19
   ].join(';')
24 20
 }
25
-
26 21
 ---
27 22
 
28 23
 <p class:list={['text-secondary lh-lg', className]} style={style}>
29
-{text}
24
+  {text}
30 25
 </p>

+ 6
- 5
src/layouts/Layout.astro 파일 보기

@@ -37,7 +37,7 @@ const { title } = Astro.props
37 37
         /* height: 100%; */
38 38
         margin: 0 !important;
39 39
         padding: 0 !important;
40
-        background-color: white;
40
+        background-color: #f8f8f8;
41 41
         /* background: transparent linear-gradient(0deg, #1f2935, #1f2935) 0 100%
42 42
           no-repeat; */
43 43
       }
@@ -55,12 +55,13 @@ const { title } = Astro.props
55 55
       .bg-even {
56 56
         background: white;
57 57
       }
58
-      .bg-blue {
59
-        background: #dee2ea;
58
+      .bg-img {
59
+        background: url('/public/background.jpg') no-repeat;
60
+        background-size: cover;
60 61
       }
61
-      .bg-grey {
62
+      /* .bg-grey {
62 63
         background: #f6f6f6;
63
-      }
64
+      } */
64 65
       .bg-l {
65 66
         background: #eee;
66 67
       }

+ 1
- 1
src/pages/[lang]/about/index.astro 파일 보기

@@ -107,7 +107,7 @@ const imgProData3 = {
107 107
     titleHeight="3.2"
108 108
     pt="4"
109 109
     px="5"
110
-    componentsBg="bg-blue"
110
+    componentsBg="bg-img"
111 111
     subPmb="5"
112 112
   />
113 113
   <ImgPro

+ 57
- 70
src/pages/[lang]/index.astro 파일 보기

@@ -16,6 +16,7 @@ import pageData from '@/data/homepage'
16 16
 
17 17
 import Container from '@/components/Container.astro'
18 18
 import MediaCard from '@/components/MediaCard/MediaCard1.astro'
19
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
19 20
 
20 21
 function getName(item = {}) {
21 22
   return (
@@ -105,83 +106,86 @@ const leftImgRightTextData = [
105 106
 const caseList = [
106 107
   {
107 108
     id: '1',
108
-    url: 'https://e.huawei.com/-/mediae/images/home/newsevents/events/events-finance-summit-2024.jpg',
109
-    children: {
110
-      title: '房源交易系统',
111
-      content: '房源交易业务支撑系统,涵盖新房、二手房、租房的功能管理模块。',
112
-    },
109
+    link: 'http://www.baidu.com',
110
+    thumb:
111
+      'https://e.huawei.com/-/mediae/images/home/newsevents/events/events-finance-summit-2024.jpg',
112
+    title: '房源交易系统',
113
+    subTitle: '房源交易业务支撑系统,涵盖新房、二手房、租房的功能管理模块。',
113 114
   },
114 115
   {
115 116
     id: '2',
116
-    url: 'https://e.huawei.com/-/mediae/images/home/newsevents/events/events-hpc2024.jpg',
117
-    children: {
118
-      title: '城的空间',
119
-      content:
120
-        '为提升售楼处的体验,提高数字化和智能化的进程,提高小区的品质和形象,引入售楼处和后续小区的私有化会所形象,专门为品质生活服务的需求应运而生。',
121
-    },
117
+    link: 'http://www.baidu.com',
118
+    thumb:
119
+      'https://e.huawei.com/-/mediae/images/home/newsevents/events/events-hpc2024.jpg',
120
+    title: '城的空间',
121
+    subTitle:
122
+      '为提升售楼处的体验,提高数字化和智能化的进程,提高小区的品质和形象,引入售楼处和后续小区的私有化会所形象,专门为品质生活服务的需求应运而生。',
122 123
   },
123 124
   {
124 125
     id: '3',
125
-    url: 'https://e.huawei.com/-/mediae/images/events/list/2307-storage-ai-product-launch-event-list.jpg',
126
-    children: {
127
-      title: '资源管理平台',
128
-      content:
129
-        '是针对集团性企业有众多供应商库和众多分公司,对于内部信息 不对称,资源拥有量不清楚的情况,做一个自有资源展示、交易平台。',
130
-    },
126
+    link: 'http://www.baidu.com',
127
+    thumb:
128
+      'https://e.huawei.com/-/mediae/images/events/list/2307-storage-ai-product-launch-event-list.jpg',
129
+    title: '资源管理平台',
130
+    subTitle:
131
+      '是针对集团性企业有众多供应商库和众多分公司,对于内部信息 不对称,资源拥有量不清楚的情况,做一个自有资源展示、交易平台。',
131 132
   },
132 133
   {
133 134
     id: '4',
134
-    url: 'https://e.huawei.com/-/mediae/images/events/list/2023-cn-data-storage-user-forum-list.jpg',
135
-    children: {
136
-      title: '智慧社区',
137
-      content:
138
-        '物业系统(停车系统、缴费系统、门禁系统、公告发布系统)、安防系统、管家系统(智能家居)、社区系统以及智能硬件模块对接,实现用户数据采 集、用户电子化管理、用户激活等功能。',
139
-    },
135
+    link: 'http://www.baidu.com',
136
+    thumb:
137
+      'https://e.huawei.com/-/mediae/images/events/list/2023-cn-data-storage-user-forum-list.jpg',
138
+    title: '智慧社区',
139
+    subTitle:
140
+      '物业系统(停车系统、缴费系统、门禁系统、公告发布系统)、安防系统、管家系统(智能家居)、社区系统以及智能硬件模块对接,实现用户数据采 集、用户电子化管理、用户激活等功能。',
140 141
   },
141 142
   {
142 143
     id: '5',
143
-    url: 'https://e.huawei.com/-/mediae/EBG2022/Events/list-230426-cn-smart-manufacturing-data-infrastructure.jpg',
144
-    children: {
145
-      title: '智慧消防控制平台',
146
-      content:
147
-        '展示大屏(分析),依赖动态且丰富的主题信息设计,配合 设计感强的大屏场景设计,从而展示数据及业务现状,达到 一定的数据应用价值。',
148
-    },
144
+    link: 'http://www.baidu.com',
145
+    thumb:
146
+      'https://e.huawei.com/-/mediae/EBG2022/Events/list-230426-cn-smart-manufacturing-data-infrastructure.jpg',
147
+    title: '智慧消防控制平台',
148
+    subTitle:
149
+      '展示大屏(分析),依赖动态且丰富的主题信息设计,配合 设计感强的大屏场景设计,从而展示数据及业务现状,达到 一定的数据应用价值。',
149 150
   },
150 151
   {
151 152
     id: '6',
152
-    url: 'https://e.huawei.com/-/mediae/images/events/list/220909-cn-longkou-intelligent-city.jpg',
153
-    children: {
154
-      title: '邓州市共享农机系统',
155
-      content:
156
-        '农机共享平台针对农业农村 局等管理单位提供管理运营 的功能,农业农村局等管理 单位,担任审核、运营及数 据管理的职能。',
157
-    },
153
+    link: 'http://www.baidu.com',
154
+    thumb:
155
+      'https://e.huawei.com/-/mediae/images/events/list/220909-cn-longkou-intelligent-city.jpg',
156
+    title: '邓州市共享农机系统',
157
+    subTitle:
158
+      '农机共享平台针对农业农村 局等管理单位提供管理运营 的功能,农业农村局等管理 单位,担任审核、运营及数 据管理的职能。',
158 159
   },
159 160
 ]
160 161
 
161 162
 const informationList = [
162 163
   {
163 164
     id: '1',
164
-    url: 'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-4.jpg',
165
-    children: {
166
-      title: '“因聚而生 数智有为”华为举办中国合作伙伴大会2024',
167
-      content: '',
168
-    },
165
+    link: 'http://www.baidu.com',
166
+    thumb:
167
+      'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-4.jpg',
168
+    title: '因聚而生 数智有为”华为举办中国合作伙伴大会2024',
169
+    subTitle:
170
+      '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
169 171
   },
170 172
   {
171 173
     id: '2',
172
-    url: 'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-1.jpg',
173
-    children: {
174
-      title: '华为连续四年获Gartner Peer Insights™ SD-WAN “客户之选”',
175
-      content: '',
176
-    },
174
+    link: 'http://www.baidu.com',
175
+    thumb:
176
+      'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-1.jpg',
177
+    title: '华为连续四年获Gartner Peer Insights™ SD-WAN “客户之选”',
178
+    subTitle:
179
+      '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
177 180
   },
178 181
   {
179 182
     id: '3',
180
-    url: 'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg',
181
-    children: {
182
-      title: '华为独家荣获Gartner Peer Insights™主存储全球“客户之选”',
183
-      content: '',
184
-    },
183
+    link: 'http://www.baidu.com',
184
+    thumb:
185
+      'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg',
186
+    title: '华为独家荣获Gartner Peer Insights™',
187
+    subTitle:
188
+      '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
185 189
   },
186 190
 ]
187 191
 ---
@@ -210,34 +214,17 @@ const informationList = [
210 214
     pt="4"
211 215
     px="5"
212 216
     contentHeight="17"
213
-    componentsBg="bg-blue"
214 217
     subPmb="5"
215 218
     btnDisplay={false}
216 219
     btn2={true}
217 220
   />
218
-
219
-  <LeftMiddleRightImgText
220
-    componentTitle="案例展示"
221
-    listOrData={caseList}
222
-    textAlign="text-center"
223
-    titleHeight="3.2"
224
-    pt="4"
225
-    px="5"
226
-    componentsBg="bg-grey"
227
-    subPmb="5"
228
-  />
229
-  <LeftMiddleRightImgText
230
-    componentTitle="最新资讯"
221
+  <LeftMiddleRightImgTextPro listOrData={caseList} componentTitle="案例展示" />
222
+  <LeftMiddleRightImgTextPro
231 223
     listOrData={informationList}
232
-    textAlign="text-center"
224
+    componentTitle="最新资讯"
233 225
     btnBottomDisplay={true}
234 226
     bhref=`/${lang}/news`
235
-    titleHeight="3.2"
236
-    pt="4"
237
-    px="5"
238
-    componentsBg="bg-blue"
239 227
   />
240
-
241 228
   <Container title="测试标题">
242 229
     <div class="row" style="--bs-gutter-x: 48px">
243 230
       <div class="col-md-4 col-sm-12 mt-4">

+ 1
- 1
src/pages/[lang]/product/gov-ent-health/index.astro 파일 보기

@@ -8,7 +8,7 @@ const { lang = 'zh' } = Astro.params
8 8
 <Layout title="菜单">
9 9
   <NavMenu lang={lang} client:load />
10 10
   <div class="container" style="margin-top: 120px;">
11
-    <div class="row g-5">
11
+    <div class="row g-5 pb-5">
12 12
       <div class="col-md-3 col-sm-12">
13 13
         <div class="card border-0 text-center my-1">
14 14
           <a

+ 1
- 1
src/pages/[lang]/product/others/index.astro 파일 보기

@@ -8,7 +8,7 @@ const { lang = 'zh' } = Astro.params
8 8
 <Layout title="菜单">
9 9
   <NavMenu lang={lang} client:load />
10 10
   <div class="container" style="margin-top: 120px;">
11
-    <div class="row g-5">
11
+    <div class="row g-5 pb-5">
12 12
       <div class="col-md-3 col-sm-12">
13 13
         <div class="card border-0 text-center my-1">
14 14
           <a

+ 55
- 51
src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro 파일 보기

@@ -9,6 +9,7 @@ import LeftImgRightText from '@/components/LeftImgRightText.astro'
9 9
 import Text from '@/components/children/Text.astro'
10 10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
@@ -21,60 +22,54 @@ const imgProData = {
21 22
 const informationList = [
22 23
   {
23 24
     id: '1',
24
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
25
-    children: {
26
-      title: '定制开发',
27
-      content: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
28
-    },
25
+    link: 'http://www.baidu.com',
26
+    thumb:
27
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
28
+    title: '定制开发',
29
+    subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
29 30
   },
30 31
   {
31 32
     id: '2',
32
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
33
-    children: {
34
-      title: '定制开发',
35
-      content: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
36
-    },
33
+    link: 'http://www.baidu.com',
34
+    thumb:
35
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
36
+    title: '定制开发',
37
+    subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
37 38
   },
38 39
   {
39 40
     id: '3',
40
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
41
-    children: {
42
-      title: '定制开发',
43
-      content: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
44
-    },
41
+    link: 'http://www.baidu.com',
42
+    thumb:
43
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
44
+    title: '定制开发',
45
+    subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
45 46
   },
46 47
 ]
47 48
 const carouselList = [
48
-  [
49
-    [
50
-      {
51
-        id: '1',
52
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-driving-bank-of-beijing-digital.jpg',
53
-        children: {
54
-          title: '定制开发',
55
-          content: '定制开发定制开发定制开发定制开发定制开发定制开发',
56
-        },
57
-      },
58
-      {
59
-        id: '2',
60
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-wuling-manufacturing-plant.jpg',
61
-        children: {
62
-          title: '定制开发',
63
-          content:
64
-            '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
65
-        },
66
-      },
67
-      {
68
-        id: '3',
69
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-zjhtcm.jpg',
70
-        children: {
71
-          title: '定制开发',
72
-          content:
73
-            '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
74
-        },
75
-      },
76
-    ],
77
-  ],
49
+  {
50
+    id: '1',
51
+    link: 'http://www.baidu.com',
52
+    thumb:
53
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
54
+    title: '定制开发',
55
+    subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
56
+  },
57
+  {
58
+    id: '2',
59
+    link: 'http://www.baidu.com',
60
+    thumb:
61
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
62
+    title: '定制开发',
63
+    subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
64
+  },
65
+  {
66
+    id: '3',
67
+    link: 'http://www.baidu.com',
68
+    thumb:
69
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
70
+    title: '定制开发',
71
+    subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
72
+  },
78 73
 ]
79 74
 const carouselList2 = [
80 75
   [
@@ -165,16 +160,24 @@ const list = [
165 160
     position="positionMiddle"
166 161
     btnDisplay={false}
167 162
   />
168
-  <LeftMiddleRightImgText
163
+  <LeftMiddleRightImgTextPro
164
+    componentTitle="场景化解决方案"
165
+    listOrData={informationList}
166
+  />
167
+  <LeftMiddleRightImgTextPro
168
+    componentTitle="相关产品"
169
+    listOrData={carouselList}
170
+  />
171
+  <!-- <LeftMiddleRightImgText
169 172
     componentTitle="场景化解决方案"
170 173
     listOrData={informationList}
171 174
     titleHeight="3.2"
172 175
     pt="4"
173 176
     px="5"
174
-    componentsBg="bg-blue"
177
+    componentsBg="bg-img"
175 178
     subPmb="5"
176
-  />
177
-  <Carousel
179
+  /> -->
180
+  <!-- <Carousel
178 181
     componentTitle="相关产品"
179 182
     list={carouselList}
180 183
     Children={LeftMiddleRightImgText}
@@ -186,7 +189,7 @@ const list = [
186 189
     px="5"
187 190
     componentsBg="bg-grey"
188 191
     subPmb="5"
189
-  />
192
+  /> -->
190 193
   <Carousel
191 194
     componentTitle="成功案例"
192 195
     list={carouselList2}
@@ -196,7 +199,7 @@ const list = [
196 199
     px="5"
197 200
     pt="4"
198 201
     contentHeight="17"
199
-    componentsBg="bg-blue"
202
+    componentsBg="bg-img"
200 203
     subPmb="5"
201 204
     btnDisplay={false}
202 205
     btn2={true}
@@ -219,6 +222,7 @@ const list = [
219 222
     isContent={false}
220 223
     pMb="3"
221 224
     animation="animation"
225
+    componentsBg="bg-even"
222 226
   />
223 227
   <Footer lang={lang} />
224 228
 </Layout>

+ 47
- 63
src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro 파일 보기

@@ -9,6 +9,7 @@ import LeftImgRightText from '@/components/LeftImgRightText.astro'
9 9
 import Text from '@/components/children/Text.astro'
10 10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
@@ -21,27 +22,27 @@ const imgProData = {
21 22
 const informationList = [
22 23
   {
23 24
     id: '1',
24
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
25
-    children: {
26
-      title: '银行业务',
27
-      content: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
28
-    },
25
+    link: 'http://www.baidu.com',
26
+    thumb:
27
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
28
+    title: '银行业务',
29
+    subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
29 30
   },
30 31
   {
31 32
     id: '2',
32
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
33
-    children: {
34
-      title: '银行业务',
35
-      content: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
36
-    },
33
+    link: 'http://www.baidu.com',
34
+    thumb:
35
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
36
+    title: '银行业务',
37
+    subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
37 38
   },
38 39
   {
39 40
     id: '3',
40
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
41
-    children: {
42
-      title: '银行业务',
43
-      content: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
44
-    },
41
+    link: 'http://www.baidu.com',
42
+    thumb:
43
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
44
+    title: '银行业务',
45
+    subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
45 46
   },
46 47
 ]
47 48
 const carouselList = [
@@ -75,36 +76,30 @@ const carouselList = [
75 76
   ],
76 77
 ]
77 78
 const carouselList2 = [
78
-  [
79
-    [
80
-      {
81
-        id: '1',
82
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-driving-bank-of-beijing-digital.jpg',
83
-        children: {
84
-          title: '银行业务',
85
-          content: '银行业务银行业务银行业务银行业务银行业务银行业务',
86
-        },
87
-      },
88
-      {
89
-        id: '2',
90
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-wuling-manufacturing-plant.jpg',
91
-        children: {
92
-          title: '银行业务',
93
-          content:
94
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
95
-        },
96
-      },
97
-      {
98
-        id: '3',
99
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-zjhtcm.jpg',
100
-        children: {
101
-          title: '银行业务',
102
-          content:
103
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
104
-        },
105
-      },
106
-    ],
107
-  ],
79
+  {
80
+    id: '1',
81
+    link: 'http://www.baidu.com',
82
+    thumb:
83
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
84
+    title: '银行业务',
85
+    subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
86
+  },
87
+  {
88
+    id: '2',
89
+    link: 'http://www.baidu.com',
90
+    thumb:
91
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
92
+    title: '银行业务',
93
+    subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
94
+  },
95
+  {
96
+    id: '3',
97
+    link: 'http://www.baidu.com',
98
+    thumb:
99
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
100
+    title: '银行业务',
101
+    subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
102
+  },
108 103
 ]
109 104
 const verticalNavigationContentList = [
110 105
   {
@@ -169,14 +164,10 @@ const verticalNavigationContentList = [
169 164
     position="positionMiddle"
170 165
     btnDisplay={false}
171 166
   />
172
-  <LeftMiddleRightImgText
167
+  <LeftMiddleRightImgTextPro
173 168
     componentTitle="场景化解决方案"
174 169
     listOrData={informationList}
175
-    titleHeight="3.2"
176
-    pt="4"
177
-    px="5"
178
-    componentsBg="bg-blue"
179
-    subPmb="5"
170
+    componentsBg="bg-img"
180 171
   />
181 172
   <Carousel
182 173
     componentTitle="我们如何帮助客户成功"
@@ -192,18 +183,10 @@ const verticalNavigationContentList = [
192 183
     btnDisplay={false}
193 184
     btn2={true}
194 185
   />
195
-  <Carousel
196
-    componentTitle="新闻与活动"
197
-    list={carouselList2}
198
-    line="0"
199
-    Children={LeftMiddleRightImgText}
200
-    titleTextAlign="text-end"
201
-    textAlign="text-end"
202
-    titleHeight="3.2"
203
-    pt="4"
204
-    px="5"
205
-    componentsBg="bg-blue"
206
-    subPmb="5"
186
+  <LeftMiddleRightImgTextPro
187
+    componentTitle="新闻资讯"
188
+    listOrData={carouselList2}
189
+    componentsBg="bg-img"
207 190
   />
208 191
   <VerticalNavigationContent
209 192
     list={verticalNavigationContentList}
@@ -223,6 +206,7 @@ const verticalNavigationContentList = [
223 206
     isContent={false}
224 207
     pMb="3"
225 208
     animation="animation"
209
+    componentsBg="bg-even"
226 210
   />
227 211
   <Footer lang={lang} />
228 212
 </Layout>

+ 1
- 0
src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro 파일 보기

@@ -128,6 +128,7 @@ const list = [
128 128
     isContent={false}
129 129
     pMb="3"
130 130
     animation="animation"
131
+    componentsBg="bg-even"
131 132
   />
132 133
   <Footer lang={lang} />
133 134
 </Layout>

+ 19
- 22
src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro 파일 보기

@@ -10,6 +10,7 @@ import Text from '@/components/children/Text.astro'
10 10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11 11
 import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
12 12
 import Footer from '@/components/Footer.astro'
13
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
13 14
 
14 15
 const { lang = 'zh' } = Astro.params
15 16
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
@@ -22,27 +23,27 @@ const imgProData = {
22 23
 const informationList = [
23 24
   {
24 25
     id: '1',
25
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
26
-    children: {
27
-      title: '政务服务',
28
-      content: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
29
-    },
26
+    link: 'http://www.baidu.com',
27
+    thumb:
28
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
29
+    title: '政务服务',
30
+    subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
30 31
   },
31 32
   {
32 33
     id: '2',
33
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
34
-    children: {
35
-      title: '政务服务',
36
-      content: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
37
-    },
34
+    link: 'http://www.baidu.com',
35
+    thumb:
36
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
37
+    title: '政务服务',
38
+    subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
38 39
   },
39 40
   {
40 41
     id: '3',
41
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
42
-    children: {
43
-      title: '政务服务',
44
-      content: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
45
-    },
42
+    link: 'http://www.baidu.com',
43
+    thumb:
44
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
45
+    title: '政务服务',
46
+    subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
46 47
   },
47 48
 ]
48 49
 const carouselList = [
@@ -164,14 +165,10 @@ const list = [
164 165
     position="positionMiddle"
165 166
     btnDisplay={false}
166 167
   />
167
-  <LeftMiddleRightImgText
168
+  <LeftMiddleRightImgTextPro
168 169
     componentTitle="场景化解决方案"
169 170
     listOrData={informationList}
170
-    titleHeight="3.2"
171
-    pt="4"
172
-    px="5"
173
-    componentsBg="bg-blue"
174
-    subPmb="5"
171
+    componentsBg="bg-img"
175 172
   />
176 173
   <Carousel
177 174
     componentTitle="成功案例"
@@ -194,7 +191,6 @@ const list = [
194 191
     titleHeight="3.2"
195 192
     ellipsis="line-ellipsis-small"
196 193
     pt="4"
197
-    componentsBg="bg-blue"
198 194
   />
199 195
   <VerticalNavigationContent
200 196
     list={list}
@@ -214,6 +210,7 @@ const list = [
214 210
     isContent={false}
215 211
     pMb="3"
216 212
     animation="animation"
213
+    componentsBg="bg-even"
217 214
   />
218 215
   <Footer lang={lang} />
219 216
 </Layout>

+ 31
- 43
src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro 파일 보기

@@ -9,6 +9,7 @@ import LeftImgRightText from '@/components/LeftImgRightText.astro'
9 9
 import Text from '@/components/children/Text.astro'
10 10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
@@ -69,36 +70,30 @@ const carouselList = [
69 70
   ],
70 71
 ]
71 72
 const carouselList2 = [
72
-  [
73
-    [
74
-      {
75
-        id: '1',
76
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-driving-bank-of-beijing-digital.jpg',
77
-        children: {
78
-          title: '医院医疗',
79
-          content: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
80
-        },
81
-      },
82
-      {
83
-        id: '2',
84
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-wuling-manufacturing-plant.jpg',
85
-        children: {
86
-          title: '医院医疗',
87
-          content:
88
-            '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
89
-        },
90
-      },
91
-      {
92
-        id: '3',
93
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-zjhtcm.jpg',
94
-        children: {
95
-          title: '医院医疗',
96
-          content:
97
-            '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
98
-        },
99
-      },
100
-    ],
101
-  ],
73
+  {
74
+    id: '1',
75
+    link: 'http://www.baidu.com',
76
+    thumb:
77
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
78
+    title: '医院医疗',
79
+    subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
80
+  },
81
+  {
82
+    id: '2',
83
+    link: 'http://www.baidu.com',
84
+    thumb:
85
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
86
+    title: '医院医疗',
87
+    subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
88
+  },
89
+  {
90
+    id: '3',
91
+    link: 'http://www.baidu.com',
92
+    thumb:
93
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
94
+    title: '医院医疗',
95
+    subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
96
+  },
102 97
 ]
103 98
 const list = [
104 99
   {
@@ -181,23 +176,15 @@ const list = [
181 176
     px="5"
182 177
     pt="4"
183 178
     contentHeight="17"
184
-    componentsBg="bg-blue"
179
+    componentsBg="bg-img"
185 180
     subPmb="5"
186 181
     btnDisplay={false}
187 182
     btn2={true}
188 183
   />
189
-  <Carousel
190
-    componentTitle="新闻与活动"
191
-    list={carouselList2}
192
-    Children={LeftMiddleRightImgText}
193
-    titleTextAlign="text-end"
194
-    textAlign="text-end"
195
-    line="0"
196
-    titleHeight="3.2"
197
-    pt="4"
198
-    px="5"
199
-    componentsBg="bg-grey"
200
-    subPmb="5"
184
+  <LeftMiddleRightImgTextPro
185
+    componentTitle="相关产品"
186
+    listOrData={carouselList2}
187
+    componentsBg="bg-img"
201 188
   />
202 189
   <VerticalNavigationContent
203 190
     list={list}
@@ -217,6 +204,7 @@ const list = [
217 204
     isContent={false}
218 205
     pMb="3"
219 206
     animation="animation"
207
+    componentsBg="bg-even"
220 208
   />
221 209
   <Footer lang={lang} />
222 210
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/index.astro 파일 보기

@@ -8,7 +8,7 @@ const { lang = 'zh' } = Astro.params
8 8
 <Layout title="菜单">
9 9
   <NavMenu lang={lang} client:load />
10 10
   <div class="container" style="margin-top: 120px;">
11
-    <div class="row g-5">
11
+    <div class="row g-5 pb-5">
12 12
       <div class="col-md-3 col-sm-12">
13 13
         <div class="card border-0 text-center my-1">
14 14
           <a

+ 36
- 42
src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro 파일 보기

@@ -9,6 +9,7 @@ import LeftImgRightText from '@/components/LeftImgRightText.astro'
9 9
 import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
10 10
 import Text from '@/components/children/Text.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = [
@@ -47,27 +48,27 @@ const leftImgRightTextList = [
47 48
 const informationList = [
48 49
   {
49 50
     id: '1',
50
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
51
-    children: {
52
-      title: 'ERP',
53
-      content: 'ERPERPERPERPERPERPERP',
54
-    },
51
+    link: 'http://www.baidu.com',
52
+    thumb:
53
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
54
+    title: 'ERP',
55
+    subTitle: 'ERPERPERPERPERPERPERP',
55 56
   },
56 57
   {
57 58
     id: '2',
58
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
59
-    children: {
60
-      title: 'ERP',
61
-      content: 'ERPERPERPERPERPERPERP',
62
-    },
59
+    link: 'http://www.baidu.com',
60
+    thumb:
61
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
62
+    title: 'ERP',
63
+    subTitle: 'ERPERPERPERPERPERPERP',
63 64
   },
64 65
   {
65 66
     id: '3',
66
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
67
-    children: {
68
-      title: 'ERP',
69
-      content: 'ERPERPERPERPERPERPERP',
70
-    },
67
+    link: 'http://www.baidu.com',
68
+    thumb:
69
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
70
+    title: 'ERP',
71
+    subTitle: 'ERPERPERPERPERPERPERP',
71 72
   },
72 73
 ]
73 74
 const carouselList = [
@@ -99,27 +100,27 @@ const carouselList = [
99 100
 const informationList2 = [
100 101
   {
101 102
     id: '1',
102
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
103
-    children: {
104
-      title: 'ERP',
105
-      content: 'ERPERPERPERPERPERPERP',
106
-    },
103
+    link: 'http://www.baidu.com',
104
+    thumb:
105
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
106
+    title: 'ERP',
107
+    subTitle: 'ERPERPERPERPERPERPERP',
107 108
   },
108 109
   {
109 110
     id: '2',
110
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
111
-    children: {
112
-      title: 'ERP',
113
-      content: 'ERPERPERPERPERPERPERP',
114
-    },
111
+    link: 'http://www.baidu.com',
112
+    thumb:
113
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
114
+    title: 'ERP',
115
+    subTitle: 'ERPERPERPERPERPERPERP',
115 116
   },
116 117
   {
117 118
     id: '3',
118
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
119
-    children: {
120
-      title: 'ERP',
121
-      content: 'ERPERPERPERPERPERPERP',
122
-    },
119
+    link: 'http://www.baidu.com',
120
+    thumb:
121
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
122
+    title: 'ERP',
123
+    subTitle: 'ERPERPERPERPERPERPERP',
123 124
   },
124 125
 ]
125 126
 const carouselList2 = [
@@ -169,14 +170,10 @@ const carouselList2 = [
169 170
     btnDisplay={false}
170 171
     btn2={true}
171 172
   />
172
-  <LeftMiddleRightImgText
173
+  <LeftMiddleRightImgTextPro
173 174
     componentTitle="场景化解决方案"
174 175
     listOrData={informationList}
175
-    titleHeight="3.2"
176
-    pt="4"
177
-    px="5"
178
-    componentsBg="bg-blue"
179
-    subPmb="5"
176
+    componentsBg="bg-img"
180 177
   />
181 178
   <Carousel
182 179
     componentTitle="我们如何帮助客户成功"
@@ -192,14 +189,10 @@ const carouselList2 = [
192 189
     btnDisplay={false}
193 190
     btn2={true}
194 191
   />
195
-  <LeftMiddleRightImgText
192
+  <LeftMiddleRightImgTextPro
196 193
     componentTitle="配套产品"
197 194
     listOrData={informationList2}
198
-    titleHeight="3.2"
199
-    pt="4"
200
-    px="5"
201
-    componentsBg="bg-blue"
202
-    subPmb="5"
195
+    componentsBg="bg-img"
203 196
   />
204 197
   <LeftMiddleRightText
205 198
     componentTitle="相关资源"
@@ -209,6 +202,7 @@ const carouselList2 = [
209 202
     pt="4"
210 203
     titleSize="20"
211 204
     titleHeight="4"
205
+    componentsBg="bg-even"
212 206
   />
213 207
   <Footer lang={lang} />
214 208
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/industrial-internet/index.astro 파일 보기

@@ -8,7 +8,7 @@ const { lang = 'zh' } = Astro.params
8 8
 <Layout title="菜单">
9 9
   <NavMenu lang={lang} client:load />
10 10
   <div class="container" style="margin-top: 120px;">
11
-    <div class="row g-5">
11
+    <div class="row g-5 pb-5">
12 12
       <div class="col-md-3 col-sm-12">
13 13
         <div class="card border-0 text-center my-1">
14 14
           <a

+ 1
- 0
src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro 파일 보기

@@ -220,6 +220,7 @@ const leftImgRightTextData3 = [
220 220
     isContent={false}
221 221
     pMb="3"
222 222
     animation="animation"
223
+    componentsBg="bg-even"
223 224
   />
224 225
   <Footer lang={lang} />
225 226
 </Layout>

+ 46
- 60
src/pages/[lang]/products-solutions/lot/agriculture/index.astro 파일 보기

@@ -9,6 +9,7 @@ import VerticalNavigationContent from '@/components/VerticalNavigationContent.as
9 9
 import Text from '@/components/children/Text.astro'
10 10
 import Footer from '@/components/Footer.astro'
11 11
 import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 const { lang = 'zh' } = Astro.params
13 14
 
14 15
 const sNav = ['项目内容', '大数据可视化平台', '”四情“监测系统', '相关资源']
@@ -34,78 +35,70 @@ const data = [
34 35
 const informationList = [
35 36
   {
36 37
     id: '1',
37
-    url: '/public/image/agriculture/revitalization.png',
38
-    children: {
39
-      title: '项目背景',
40
-      content:
41
-        '2021年5月,河南省委农村工作会议提出,四五”时期河南要推动乡村振兴实现更大突破走在全国前列。',
42
-    },
38
+    link: 'http://www.baidu.com',
39
+    thumb: '/public/image/agriculture/revitalization.png',
40
+    title: '项目背景',
41
+    subTitle:
42
+      '2021年5月,河南省委农村工作会议提出,四五”时期河南要推动乡村振兴实现更大突破走在全国前列。',
43 43
   },
44 44
   {
45 45
     id: '2',
46
-    url: '/public/image/agriculture/target.png',
47
-    children: {
48
-      title: '项目目标',
49
-      content:
50
-        '发展智慧农业是互联网+时代下现代农业的精细化管理,实现农业种养殖智慧化,以物联网技术等作为技术支撑,在坚持绿色发展为基础的原则下,将农业产业经济价值最大化。',
51
-    },
46
+    link: 'http://www.baidu.com',
47
+    thumb: '/public/image/agriculture/target.png',
48
+    title: '项目目标',
49
+    subTitle:
50
+      '发展智慧农业是互联网+时代下现代农业的精细化管理,实现农业种养殖智慧化,以物联网技术等作为技术支撑,在坚持绿色发展为基础的原则下,将农业产业经济价值最大化。',
52 51
   },
53 52
   {
54 53
     id: '3',
55
-    url: '/public/image/agriculture/programme.png',
56
-    children: {
57
-      title: '建设方案',
58
-      content:
59
-        '支持从门户网站到大型E-Commerce、电子商务平台网站的建立数据共享平台的建立,丰富的农业领域网站模板,资源弹性扩展用户空间隔离,高可靠可用性保障',
60
-    },
54
+    link: 'http://www.baidu.com',
55
+    thumb: '/public/image/agriculture/programme.png',
56
+    title: '建设方案',
57
+    subTitle:
58
+      '支持从门户网站到大型E-Commerce、电子商务平台网站的建立数据共享平台的建立,丰富的农业领域网站模板,资源弹性扩展用户空间隔离,高可靠可用性保障',
61 59
   },
62 60
   {
63 61
     id: '4',
64
-    url: '/public/image/agriculture/programme.png',
65
-    children: {
66
-      title: '公司简介',
67
-      content:
68
-        '河南油田工程科技股份有限公司创立于2006年,是一家为石油、炼化行业安全环保管理提供咨询评价、方案设计、信息化赋能井坚持“产、学、研”协同发展的技术服务机构。公司2018年挂牌新三板,2021年升级为创新层,是河南省“高新技术企业”“专精特新企业”,与河南理工大学、郑州大学共建多所研究中心及实验室。',
69
-    },
62
+    link: 'http://www.baidu.com',
63
+    thumb: '/public/image/agriculture/programme.png',
64
+    title: '公司简介',
65
+    subTitle:
66
+      '河南油田工程科技股份有限公司创立于2006年,是一家为石油、炼化行业安全环保管理提供咨询评价、方案设计、信息化赋能井坚持“产、学、研”协同发展的技术服务机构。公司2018年挂牌新三板,2021年升级为创新层,是河南省“高新技术企业”“专精特新企业”,与河南理工大学、郑州大学共建多所研究中心及实验室。',
70 67
   },
71 68
 ]
72 69
 
73 70
 const informationList2 = [
74 71
   {
75 72
     id: '1',
76
-    url: '/public/image/agriculture/moistureContent.png',
77
-    children: {
78
-      title: '土壤墒情监测',
79
-      content:
80
-        '土壤墙情监测系统可实现全天候不间断监测。现场远程监测设备自动采集士壤培情实时数据并利用GPRS无线网络实现数据远程传输:监控中心自动接收、自动存储各监测点的监测数据到数据库中。',
81
-    },
73
+    link: 'http://www.baidu.com',
74
+    thumb: '/public/image/agriculture/moistureContent.png',
75
+    title: '项目土壤墒情监测背景',
76
+    subTitle:
77
+      '土壤墙情监测系统可实现全天候不间断监测。现场远程监测设备自动采集士壤培情实时数据并利用GPRS无线网络实现数据远程传输:监控中心自动接收、自动存储各监测点的监测数据到数据库中。',
82 78
   },
83 79
   {
84 80
     id: '2',
85
-    url: '/public/image/agriculture/insect.png',
86
-    children: {
87
-      title: '智能虫情监测',
88
-      content:
89
-        '自动虫情监测系统主要利用现代光、电、数控技术无线传输技术、互联网技术构建出一套害虫生态监测及预警系统该系统集害虫诱捕和拍照、环境信息采集数据传输、数据分析于一体,实现了害虫的诱集、分类统计、实时报传远程检测、虫害预警和防治指导的自动化、智能化。',
90
-    },
81
+    link: 'http://www.baidu.com',
82
+    thumb: '/public/image/agriculture/insect.png',
83
+    title: '智能虫情监测',
84
+    subTitle:
85
+      '自动虫情监测系统主要利用现代光、电、数控技术无线传输技术、互联网技术构建出一套害虫生态监测及预警系统该系统集害虫诱捕和拍照、环境信息采集数据传输、数据分析于一体,实现了害虫的诱集、分类统计、实时报传远程检测、虫害预警和防治指导的自动化、智能化。',
91 86
   },
92 87
   {
93 88
     id: '3',
94
-    url: '/public/image/agriculture/spore.png',
95
-    children: {
96
-      title: '智能孢子监测',
97
-      content:
98
-        '智能抱子监测系统集成电子数码显微、数字图像处理与人工智能识别、GMS全球数据传输等现代高新技术,集病菌抱子自动捕捉、自动识别、自动计数、自动存储等功能于一体,实现了病菌抱子的连续动态监测,可以显著提升农作物病害综合防控管理水平。',
99
-    },
89
+    link: 'http://www.baidu.com',
90
+    thumb: '/public/image/agriculture/spore.png',
91
+    title: '智能孢子监测',
92
+    subTitle:
93
+      '智能抱子监测系统集成电子数码显微、数字图像处理与人工智能识别、GMS全球数据传输等现代高新技术,集病菌抱子自动捕捉、自动识别、自动计数、自动存储等功能于一体,实现了病菌抱子的连续动态监测,可以显著提升农作物病害综合防控管理水平。',
100 94
   },
101 95
   {
102 96
     id: '4',
103
-    url: '/public/image/agriculture/programme.png',
104
-    children: {
105
-      title: '灾情、苗情监测',
106
-      content:
107
-        '通过对农田进行农业物联网传感器布局,对整个农种过程中的播种、施肥、采摘、包装等各个环节进行视频监控,树立标准化作业标准。',
108
-    },
97
+    link: 'http://www.baidu.com',
98
+    thumb: '/public/image/agriculture/programme.png',
99
+    title: '灾情、苗情监测',
100
+    subTitle:
101
+      '通过对农田进行农业物联网传感器布局,对整个农种过程中的播种、施肥、采摘、包装等各个环节进行视频监控,树立标准化作业标准。',
109 102
   },
110 103
 ]
111 104
 
@@ -149,14 +142,10 @@ const list = [
149 142
     position="positionMiddle"
150 143
     btnDisplay={false}
151 144
   />
152
-  <LeftMiddleRightImgText
145
+  <LeftMiddleRightImgTextPro
153 146
     componentTitle="项目内容"
154 147
     listOrData={informationList}
155
-    titleHeight="3.2"
156
-    pt="4"
157
-    px="5"
158
-    componentsBg="bg-blue"
159
-    subPmb="5"
148
+    componentsBg="bg-img"
160 149
   />
161 150
   <LeftImgRightText
162 151
     listOrData={data}
@@ -171,14 +160,10 @@ const list = [
171 160
     btnDisplay={false}
172 161
     btn2={true}
173 162
   />
174
-  <LeftMiddleRightImgText
163
+  <LeftMiddleRightImgTextPro
175 164
     componentTitle="”四情“监测系统"
176 165
     listOrData={informationList2}
177
-    titleHeight="3.2"
178
-    pt="4"
179
-    px="5"
180
-    componentsBg="bg-blue"
181
-    subPmb="5"
166
+    componentsBg="bg-img"
182 167
   />
183 168
   <VerticalNavigationContent
184 169
     list={list}
@@ -198,6 +183,7 @@ const list = [
198 183
     isContent={false}
199 184
     pMb="3"
200 185
     animation="animation"
186
+    componentsBg="bg-even"
201 187
   />
202 188
   <Footer lang={lang} />
203 189
 </Layout>

+ 41
- 58
src/pages/[lang]/products-solutions/lot/building/index.astro 파일 보기

@@ -11,6 +11,7 @@ import VerticalNavigationContent from '@/components/VerticalNavigationContent.as
11 11
 import ImgPro from '@/components/ImgPro.astro'
12 12
 import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
13 13
 import Footer from '@/components/Footer.astro'
14
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
14 15
 
15 16
 const { lang = 'zh' } = Astro.params
16 17
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
@@ -24,39 +25,35 @@ const imgProData1 = {
24 25
 const informationList2 = [
25 26
   {
26 27
     id: '1',
27
-    url: '/public/image/building/control.png',
28
-    children: {
29
-      title: '远程控制',
30
-      content:
31
-        '支持远程控制,通行人员可以通过小程序或PC后台进行远程开关门操作。',
32
-    },
28
+    link: 'http://www.baidu.com',
29
+    thumb: '/public/image/building/control.png',
30
+    title: '远程控制',
31
+    subTitle:
32
+      '支持远程控制,通行人员可以通过小程序或PC后台进行远程开关门操作。',
33 33
   },
34 34
   {
35 35
     id: '2',
36
-    url: '/public/image/building/identify.png',
37
-    children: {
38
-      title: '智能识别',
39
-      content:
40
-        '采用先进的生物识别技术,如指纹识别、人脸识别等,实现快速、准确的身份识别。',
41
-    },
36
+    link: 'http://www.baidu.com',
37
+    thumb: '/public/image/building/identify.png',
38
+    title: '智能识别',
39
+    subTitle:
40
+      '采用先进的生物识别技术,如指纹识别、人脸识别等,实现快速、准确的身份识别。',
42 41
   },
43 42
   {
44 43
     id: '3',
45
-    url: '/public/image/building/mode.png',
46
-    children: {
47
-      title: '多种开门方式',
48
-      content:
49
-        '支持多种开门方式,如密码、二维码、远程开门等,满足不同场景和需求。',
50
-    },
44
+    link: 'http://www.baidu.com',
45
+    thumb: '/public/image/building/mode.png',
46
+    title: '多种开门方式',
47
+    subTitle:
48
+      '支持多种开门方式,如密码、二维码、远程开门等,满足不同场景和需求。',
51 49
   },
52 50
   {
53 51
     id: '4',
54
-    url: '/public/image/building/monitor.png',
55
-    children: {
56
-      title: '实时监控',
57
-      content:
58
-        '具备实时监控功能,可以实时记录门禁的开关状态、通行记录等信息,方便管理员管理和查询。',
59
-    },
52
+    link: 'http://www.baidu.com',
53
+    thumb: '/public/image/building/monitor.png',
54
+    title: '实时监控',
55
+    subTitle:
56
+      '具备实时监控功能,可以实时记录门禁的开关状态、通行记录等信息,方便管理员管理和查询。',
60 57
   },
61 58
 ]
62 59
 
@@ -131,30 +128,27 @@ const imgProData3 = {
131 128
 const informationList3 = [
132 129
   {
133 130
     id: '1',
134
-    url: '/public/image/building/monitoring2.png',
135
-    children: {
136
-      title: '实时监控',
137
-      content:
138
-        '系统汇集楼宇内全部高清摄像头图像,实时监测各个监控区域状态,支持按条件和点位筛选查看。',
139
-    },
131
+    link: 'http://www.baidu.com',
132
+    thumb: '/public/image/building/monitoring2.png',
133
+    title: '实时监控',
134
+    subTitle:
135
+      '系统汇集楼宇内全部高清摄像头图像,实时监测各个监控区域状态,支持按条件和点位筛选查看。',
140 136
   },
141 137
   {
142 138
     id: '2',
143
-    url: '/public/image/building/access.png',
144
-    children: {
145
-      title: '远程访问',
146
-      content:
147
-        '管理员可以通过手机、电脑等终端远程访问监控系统,随时随地查看实时监控画面和监测数据,保持对监控区域的掌控。',
148
-    },
139
+    link: 'http://www.baidu.com',
140
+    thumb: '/public/image/building/access.png',
141
+    title: '远程访问',
142
+    subTitle:
143
+      '管理员可以通过手机、电脑等终端远程访问监控系统,随时随地查看实时监控画面和监测数据,保持对监控区域的掌控。',
149 144
   },
150 145
   {
151 146
     id: '3',
152
-    url: '/public/image/building/playback.png',
153
-    children: {
154
-      title: '录像回放',
155
-      content:
156
-        '系统支持对监控录像进行存储和回放,管理员可以根据需要查看历史监控记录,了解过去一段时间内的情况。',
157
-    },
147
+    link: 'http://www.baidu.com',
148
+    thumb: '/public/image/building/playback.png',
149
+    title: '录像回放',
150
+    subTitle:
151
+      '系统支持对监控录像进行存储和回放,管理员可以根据需要查看历史监控记录,了解过去一段时间内的情况。',
158 152
   },
159 153
 ]
160 154
 
@@ -220,15 +214,10 @@ const list = [
220 214
     pt="4"
221 215
     componentsBg="bg-grey"
222 216
   />
223
-  <LeftMiddleRightImgText
217
+  <LeftMiddleRightImgTextPro
224 218
     componentTitle="智能识别便捷通行"
225 219
     listOrData={informationList2}
226
-    textAlign="text-center"
227
-    titleHeight="3.2"
228
-    pt="4"
229
-    px="5"
230
-    componentsBg="bg-blue"
231
-    subPmb="5"
220
+    componentsBg="bg-img"
232 221
   />
233 222
   <LeftMiddleRightText
234 223
     componentTitle="访客授权快捷登记"
@@ -250,7 +239,6 @@ const list = [
250 239
     titleHeight="3.2"
251 240
     ellipsis="line-ellipsis-small"
252 241
     pt="4"
253
-    componentsBg="bg-blue"
254 242
   />
255 243
   <ImgPro
256 244
     listOrData={imgProData2}
@@ -265,15 +253,9 @@ const list = [
265 253
     position="positionMiddle"
266 254
     top="50"
267 255
   />
268
-  <LeftMiddleRightImgText
269
-    componentTitle="智识别便捷通行"
256
+  <LeftMiddleRightImgTextPro
257
+    componentTitle="智识别便捷通行"
270 258
     listOrData={informationList3}
271
-    textAlign="text-center"
272
-    titleHeight="3.2"
273
-    pt="4"
274
-    px="5"
275
-    componentsBg="bg-grey"
276
-    subPmb="5"
277 259
   />
278 260
   <ImgPro
279 261
     titleHeight="2.5"
@@ -309,6 +291,7 @@ const list = [
309 291
     animation="animation"
310 292
     btnDisplay={false}
311 293
     btn2={true}
294
+    componentsBg="bg-even"
312 295
   />
313 296
   <Footer lang={lang} />
314 297
 </Layout>

+ 19
- 25
src/pages/[lang]/products-solutions/lot/community/index.astro 파일 보기

@@ -9,6 +9,7 @@ import ImgPro from '@/components/ImgPro.astro'
9 9
 import Text from '@/components/children/Text.astro'
10 10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = ['场景化解决方案', '相关产品']
@@ -20,30 +21,27 @@ const imgProData = {
20 21
 const informationList = [
21 22
   {
22 23
     id: '1',
23
-    url: '/public/image/community/satisfaction.png',
24
-    children: {
25
-      title: '提升用户满意度',
26
-      content:
27
-        '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
28
-    },
24
+    link: 'http://www.baidu.com',
25
+    thumb: '/public/image/community/satisfaction.png',
26
+    title: '提升用户满意度',
27
+    subTitle:
28
+      '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
29 29
   },
30 30
   {
31 31
     id: '2',
32
-    url: '/public/image/community/optimization.png',
33
-    children: {
34
-      title: '优化运营效率',
35
-      content:
36
-        '利用智能化设备辅助人工,提升人员工作效率;基于数据实现人力等资源的优化调配',
37
-    },
32
+    link: 'http://www.baidu.com',
33
+    thumb: '/public/image/community/optimization.png',
34
+    title: '优化运营效率',
35
+    subTitle:
36
+      '利用智能化设备辅助人工,提升人员工作效率;基于数据实现人力等资源的优化调配',
38 37
   },
39 38
   {
40 39
     id: '3',
41
-    url: '/public/image/community/marketing.png',
42
-    children: {
43
-      title: '支撑精准营销',
44
-      content:
45
-        '通过智能化设备收集客户数据,丰富客户画像;未来可基于社区客户画像,实现对于社区客户的精准营销',
46
-    },
40
+    link: 'http://www.baidu.com',
41
+    thumb: '/public/image/community/marketing.png',
42
+    title: '支撑精准营销',
43
+    subTitle:
44
+      '通过智能化设备收集客户数据,丰富客户画像;未来可基于社区客户画像,实现对于社区客户的精准营销',
47 45
   },
48 46
 ]
49 47
 const carouselList2 = [
@@ -159,15 +157,10 @@ const list = [
159 157
     position="positionMiddle"
160 158
     btnDisplay={false}
161 159
   />
162
-  <LeftMiddleRightImgText
160
+  <LeftMiddleRightImgTextPro
163 161
     componentTitle="社区目的"
164 162
     listOrData={informationList}
165
-    textAlign="text-center"
166
-    titleHeight="3.2"
167
-    pt="4"
168
-    px="5"
169
-    componentsBg="bg-blue"
170
-    subPmb="5"
163
+    componentsBg="bg-img"
171 164
   />
172 165
   <LeftMiddleRightText
173 166
     componentTitle="客户需求程度"
@@ -198,6 +191,7 @@ const list = [
198 191
     isContent={false}
199 192
     pMb="3"
200 193
     animation="animation"
194
+    componentsBg="bg-even"
201 195
   />
202 196
   <Footer lang={lang} />
203 197
 </Layout>

+ 36
- 44
src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro 파일 보기

@@ -9,6 +9,7 @@ import LeftImgRightText from '@/components/LeftImgRightText.astro'
9 9
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10 10
 import Text from '@/components/children/Text.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = ['场景化解决方案', '新闻与活动', '相关资源']
@@ -20,24 +21,27 @@ const imgProData = {
20 21
 const informationList = [
21 22
   {
22 23
     id: '1',
23
-    url: '/public/image/exhibition-all/3g.png',
24
-    children: {
25
-      title: '3G图片时代',
26
-    },
24
+    link: 'http://www.baidu.com',
25
+    thumb: '/public/image/exhibition-all/3g.png',
26
+    title: '3G图片时代',
27
+    subTitle:
28
+      '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
27 29
   },
28 30
   {
29 31
     id: '2',
30
-    url: '/public/image/exhibition-all/4g.png',
31
-    children: {
32
-      title: '4G视频时代',
33
-    },
32
+    link: 'http://www.baidu.com',
33
+    thumb: '/public/image/exhibition-all/4g.png',
34
+    title: '4G视频时代',
35
+    subTitle:
36
+      '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
34 37
   },
35 38
   {
36 39
     id: '3',
37
-    url: '/public/image/exhibition-all/5g.png',
38
-    children: {
39
-      title: '5G万物互联时代',
40
-    },
40
+    link: 'http://www.baidu.com',
41
+    thumb: '/public/image/exhibition-all/5g.png',
42
+    title: '5G万物互联时代',
43
+    subTitle:
44
+      '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
41 45
   },
42 46
 ]
43 47
 const carouselList = [
@@ -153,30 +157,27 @@ const carouselList2 = [
153 157
 const informationList2 = [
154 158
   {
155 159
     id: '1',
156
-    url: '/public/image/exhibition-all/concise.png',
157
-    children: {
158
-      title: '简洁明了的操作界面',
159
-      content:
160
-        '采用简洁、直观的操作界面设计,方便用户快速上手使用BOSS系统。避免复杂和繁琐的操作流程,提高用户体验。',
161
-    },
160
+    link: 'http://www.baidu.com',
161
+    thumb: '/public/image/exhibition-all/concise.png',
162
+    title: '简洁明了的操作界面',
163
+    subTitle:
164
+      '采用简洁、直观的操作界面设计,方便用户快速上手使用BOSS系统。避免复杂和繁琐的操作流程,提高用户体验。',
162 165
   },
163 166
   {
164 167
     id: '2',
165
-    url: '/public/image/exhibition-all/personality.png',
166
-    children: {
167
-      title: '提供个性化定制服务',
168
-      content:
169
-        '根据不同用户的需求和习惯,提供个性化的定制服务。例如:界面主题、布局、配色等可根据用户喜好进行定制,提高用户体验的个性化程度。',
170
-    },
168
+    link: 'http://www.baidu.com',
169
+    thumb: '/public/image/exhibition-all/personality.png',
170
+    title: '提供个性化定制服务',
171
+    subTitle:
172
+      '根据不同用户的需求和习惯,提供个性化的定制服务。例如:界面主题、布局、配色等可根据用户喜好进行定制,提高用户体验的个性化程度。',
171 173
   },
172 174
   {
173 175
     id: '3',
174
-    url: '/public/image/exhibition-all/feedback.png',
175
-    children: {
176
-      title: '实时反馈与互动',
177
-      content:
178
-        '在BOSS系统中实现实时反馈与互动功能,提升用户参与感和体验感。例如:在用户操作时给出实时提示和引导信息,便于用户更好地理解和使用系统。同时,提供互动交流平台,方便用户之间的沟通与交流。',
179
-    },
176
+    link: 'http://www.baidu.com',
177
+    thumb: '/public/image/exhibition-all/feedback.png',
178
+    title: '实时反馈与互动',
179
+    subTitle:
180
+      '在BOSS系统中实现实时反馈与互动功能,提升用户参与感和体验感。例如:在用户操作时给出实时提示和引导信息,便于用户更好地理解和使用系统。同时,提供互动交流平台,方便用户之间的沟通与交流。',
180 181
   },
181 182
 ]
182 183
 ---
@@ -195,15 +196,10 @@ const informationList2 = [
195 196
     ellipsis="line-ellipsis-small"
196 197
     position="positionMiddle"
197 198
   />
198
-  <LeftMiddleRightImgText
199
+  <LeftMiddleRightImgTextPro
199 200
     componentTitle="5G网络覆盖"
200 201
     listOrData={informationList}
201
-    textAlign="text-center"
202
-    titleHeight="3.2"
203
-    pt="4"
204
-    px="5"
205
-    componentsBg="bg-blue"
206
-    subPmb="5"
202
+    componentsBg="bg-img"
207 203
   />
208 204
   <Carousel
209 205
     titleHeight="3.2"
@@ -221,15 +217,10 @@ const informationList2 = [
221 217
     btnDisplay={false}
222 218
     btn2={true}
223 219
   />
224
-  <LeftMiddleRightImgText
220
+  <LeftMiddleRightImgTextPro
225 221
     componentTitle="界面设计与用户体验"
226 222
     listOrData={informationList2}
227
-    textAlign="text-center"
228
-    titleHeight="3.2"
229
-    pt="4"
230
-    px="5"
231
-    componentsBg="bg-blue"
232
-    subPmb="5"
223
+    componentsBg="bg-img"
233 224
   />
234 225
   <VerticalNavigationContent
235 226
     list={list}
@@ -249,6 +240,7 @@ const informationList2 = [
249 240
     isContent={false}
250 241
     pMb="3"
251 242
     animation="animation"
243
+    componentsBg="bg-even"
252 244
   />
253 245
   <Footer lang={lang} />
254 246
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/lot/index.astro 파일 보기

@@ -8,7 +8,7 @@ const { lang = 'zh' } = Astro.params
8 8
 <Layout title="'菜单">
9 9
   <NavMenu lang={lang} client:load />
10 10
   <div class="container" style="margin-top: 120px;">
11
-    <div class="row g-5">
11
+    <div class="row g-5 pb-5">
12 12
       <div class="col-md-3 col-sm-12">
13 13
         <div class="card border-0 text-center my-1">
14 14
           <a

+ 19
- 22
src/pages/[lang]/products-solutions/others/crm/index.astro 파일 보기

@@ -9,6 +9,7 @@ import LeftImgRightText from '@/components/LeftImgRightText.astro'
9 9
 import ImgPro from '@/components/ImgPro.astro'
10 10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = ['服务产品', '成功案例', '相关资源']
@@ -21,27 +22,27 @@ const imgProData = {
21 22
 const informationList = [
22 23
   {
23 24
     id: '1',
24
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
25
-    children: {
26
-      title: 'CRM管理',
27
-      content: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
28
-    },
25
+    link: 'http://www.baidu.com',
26
+    thumb:
27
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
28
+    title: 'CRM管理',
29
+    subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
29 30
   },
30 31
   {
31 32
     id: '2',
32
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
33
-    children: {
34
-      title: 'CRM管理',
35
-      content: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
36
-    },
33
+    link: 'http://www.baidu.com',
34
+    thumb:
35
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
36
+    title: 'CRM管理',
37
+    subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
37 38
   },
38 39
   {
39 40
     id: '3',
40
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
41
-    children: {
42
-      title: 'CRM管理',
43
-      content: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
44
-    },
41
+    link: 'http://www.baidu.com',
42
+    thumb:
43
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
44
+    title: 'CRM管理',
45
+    subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
45 46
   },
46 47
 ]
47 48
 const leftImgRightTextList = [
@@ -85,14 +86,10 @@ const verticalNavigationContentList = [
85 86
     position="positionMiddle"
86 87
     btnDisplay={false}
87 88
   />
88
-  <LeftMiddleRightImgText
89
+  <LeftMiddleRightImgTextPro
89 90
     componentTitle="服务产品"
90 91
     listOrData={informationList}
91
-    titleHeight="'3.2"
92
-    pt="4"
93
-    px="5"
94
-    componentsBg="bg-grey"
95
-    subPmb="5"
92
+    componentsBg="bg-img"
96 93
   />
97 94
   <LeftImgRightText
98 95
     listOrData={leftImgRightTextList}
@@ -102,7 +99,6 @@ const verticalNavigationContentList = [
102 99
     px="5"
103 100
     pt="4"
104 101
     contentHeight="17"
105
-    componentsBg="bg-blue"
106 102
     subPmb="5"
107 103
     btnDisplay={false}
108 104
     btn2={true}
@@ -125,6 +121,7 @@ const verticalNavigationContentList = [
125 121
     isContent={false}
126 122
     pMb="3"
127 123
     animation="animation"
124
+    componentsBg="bg-even"
128 125
   />
129 126
   <Footer lang={lang} />
130 127
 </Layout>

+ 1
- 0
src/pages/[lang]/products-solutions/others/eshop/index.astro 파일 보기

@@ -111,6 +111,7 @@ const verticalNavigationContentList = [
111 111
     isContent={false}
112 112
     pMb="3"
113 113
     animation="animation"
114
+    componentsBg="bg-even"
114 115
   />
115 116
   <Footer lang={lang} />
116 117
 </Layout>

+ 46
- 63
src/pages/[lang]/products-solutions/others/house/index.astro 파일 보기

@@ -9,6 +9,7 @@ import LeftImgRightText from '@/components/LeftImgRightText.astro'
9 9
 import ImgPro from '@/components/ImgPro.astro'
10 10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11 11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const sNav = ['成功案例', '动态', '相关产品', '相关资源']
@@ -47,61 +48,55 @@ const carouselList = [
47 48
   ],
48 49
 ]
49 50
 const carouselList2 = [
50
-  [
51
-    [
52
-      {
53
-        id: '1',
54
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-driving-bank-of-beijing-digital.jpg',
55
-        children: {
56
-          title: '房源交易',
57
-          content: '房源交易房源交易房源交易房源交易房源交易房源交易',
58
-        },
59
-      },
60
-      {
61
-        id: '2',
62
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-wuling-manufacturing-plant.jpg',
63
-        children: {
64
-          title: '房源交易',
65
-          content:
66
-            '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
67
-        },
68
-      },
69
-      {
70
-        id: '3',
71
-        url: 'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-zjhtcm.jpg',
72
-        children: {
73
-          title: '房源交易',
74
-          content:
75
-            '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
76
-        },
77
-      },
78
-    ],
79
-  ],
51
+  {
52
+    id: '1',
53
+    link: 'http://www.baidu.com',
54
+    thumb:
55
+      'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-driving-bank-of-beijing-digital.jpg',
56
+    title: '房源交易',
57
+    subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
58
+  },
59
+  {
60
+    id: '2',
61
+    link: 'http://www.baidu.com',
62
+    thumb:
63
+      'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-wuling-manufacturing-plant.jpg',
64
+    title: '房源交易',
65
+    subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
66
+  },
67
+  {
68
+    id: '3',
69
+    link: 'http://www.baidu.com',
70
+    thumb:
71
+      'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-zjhtcm.jpg',
72
+    title: '房源交易',
73
+    subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
74
+  },
80 75
 ]
81 76
 const informationList = [
82 77
   {
83 78
     id: '1',
84
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
85
-    children: {
86
-      title: '房源交易',
87
-      content: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
88
-    },
79
+    link: 'http://www.baidu.com',
80
+    thumb:
81
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
82
+    title: '房源交易',
83
+    subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
89 84
   },
90 85
   {
91 86
     id: '2',
92
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
93
-    children: {
94
-      title: '房源交易',
95
-      content: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
96
-    },
87
+    link: 'http://www.baidu.com',
88
+    thumb:
89
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
90
+    title: '房源交易',
91
+    subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
97 92
   },
98 93
   {
99 94
     id: '3',
100
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
101
-    children: {
102
-      title: '房源交易',
103
-      content: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
104
-    },
95
+    link: 'http://www.baidu.com',
96
+    thumb:
97
+      'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
98
+    title: '房源交易',
99
+    subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
105 100
   },
106 101
 ]
107 102
 const list = [
@@ -179,27 +174,14 @@ const list = [
179 174
     btn2={true}
180 175
     componentsBg="bg-grey"
181 176
   />
182
-  <Carousel
177
+  <LeftMiddleRightImgTextPro
183 178
     componentTitle="新闻与活动"
184
-    list={carouselList2}
185
-    Children={LeftMiddleRightImgText}
186
-    titleTextAlign="text-end"
187
-    textAlign="text-end"
188
-    line="0"
189
-    titleHeight="3.2"
190
-    pt="4"
191
-    px="5"
192
-    subPmb="5"
193
-    componentsBg="bg-blue"
179
+    listOrData={carouselList2}
180
+    componentsBg="bg-img"
194 181
   />
195
-  <LeftMiddleRightImgText
196
-    componentTitle="选择适合您的产品"
182
+  <LeftMiddleRightImgTextPro
183
+    componentTitle="新闻与活动"
197 184
     listOrData={informationList}
198
-    titleHeight="3.2"
199
-    pt="4"
200
-    px="5"
201
-    subPmb="5"
202
-    componentsBg="bg-grey"
203 185
   />
204 186
   <VerticalNavigationContent
205 187
     list={list}
@@ -219,6 +201,7 @@ const list = [
219 201
     isContent={false}
220 202
     pMb="3"
221 203
     animation="animation"
204
+    componentsBg="bg-even"
222 205
   />
223 206
   <Footer lang={lang} />
224 207
 </Layout>

+ 2
- 1
src/pages/[lang]/products-solutions/others/shigongli/index.astro 파일 보기

@@ -143,7 +143,7 @@ const verticalNavigationContentList = [
143 143
     px="5"
144 144
     pt="4"
145 145
     contentHeight="17"
146
-    componentsBg="bg-blue"
146
+    componentsBg="bg-img"
147 147
     subPmb="5"
148 148
     btnDisplay={false}
149 149
     btn2={true}
@@ -166,6 +166,7 @@ const verticalNavigationContentList = [
166 166
     isContent={false}
167 167
     pMb="3"
168 168
     animation="animation"
169
+    componentsBg="bg-even"
169 170
   />
170 171
   <Footer lang={lang} />
171 172
 </Layout>