Przeglądaj źródła

Merge branch 'v2' of http://git.ycjcjy.com/default/yz-offical into v2

Yansen 1 rok temu
rodzic
commit
f913b188f6
29 zmienionych plików z 681 dodań i 649 usunięć
  1. BIN
      public/background.jpg
  2. 5
    7
      src/components/LeftMiddleRightImgText.astro
  3. 52
    0
      src/components/LeftMiddleRightImgTextPro/index.astro
  4. 21
    27
      src/components/Title/PartTitle.astro
  5. 4
    9
      src/components/Title/SubTitle.astro
  6. 9
    4
      src/components/children/Text.astro
  7. 6
    5
      src/layouts/Layout.astro
  8. 6
    2
      src/pages/[lang]/about/index.astro
  9. 65
    74
      src/pages/[lang]/index.astro
  10. 1
    1
      src/pages/[lang]/product/gov-ent-health/index.astro
  11. 1
    1
      src/pages/[lang]/product/others/index.astro
  12. 62
    53
      src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro
  13. 52
    63
      src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro
  14. 6
    2
      src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro
  15. 24
    23
      src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro
  16. 45
    47
      src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro
  17. 1
    1
      src/pages/[lang]/products-solutions/index.astro
  18. 44
    42
      src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro
  19. 1
    1
      src/pages/[lang]/products-solutions/industrial-internet/index.astro
  20. 10
    3
      src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro
  21. 51
    60
      src/pages/[lang]/products-solutions/lot/agriculture/index.astro
  22. 44
    57
      src/pages/[lang]/products-solutions/lot/building/index.astro
  23. 20
    25
      src/pages/[lang]/products-solutions/lot/community/index.astro
  24. 41
    44
      src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro
  25. 1
    1
      src/pages/[lang]/products-solutions/lot/index.astro
  26. 29
    25
      src/pages/[lang]/products-solutions/others/crm/index.astro
  27. 7
    3
      src/pages/[lang]/products-solutions/others/eshop/index.astro
  28. 57
    63
      src/pages/[lang]/products-solutions/others/house/index.astro
  29. 16
    6
      src/pages/[lang]/products-solutions/others/shigongli/index.astro

BIN
public/background.jpg Wyświetl plik


+ 5
- 7
src/components/LeftMiddleRightImgText.astro Wyświetl plik

@@ -73,7 +73,7 @@ import Text from '@/components/children/Text.astro'
73 73
     }
74 74
   </div>
75 75
 </div>
76
-<style>
76
+<style lang="less">
77 77
   .text-underline {
78 78
     display: inline-block;
79 79
     width: 100px;
@@ -93,13 +93,11 @@ import Text from '@/components/children/Text.astro'
93 93
     background-color: #c7000b;
94 94
     color: white;
95 95
   }
96
-  .textEnlargeImg .transformEnlarge {
97
-    transition: transform 1s ease;
98
-  }
99
-  .textEnlargeImg:hover .transformEnlarge {
96
+  // .textEnlargeImg:hover .transformEnlarge:hover {
97
+  //   transform: scale(1.1);
98
+  // }
99
+  .textHover:hover ~ .textEnlargeImg .transformEnlarge {
100 100
     transform: scale(1.1);
101
-    max-width: 100%;
102
-    max-height: 100%;
103 101
   }
104 102
 </style>
105 103
 

+ 52
- 0
src/components/LeftMiddleRightImgTextPro/index.astro Wyświetl plik

@@ -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 Wyświetl plik

@@ -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 Wyświetl plik

@@ -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>

+ 9
- 4
src/components/children/Text.astro Wyświetl plik

@@ -7,6 +7,7 @@ const {
7 7
   textWeight,
8 8
   ellipsis,
9 9
   btnDisplay = true,
10
+  btn2,
10 11
   textUnderline,
11 12
   position,
12 13
   titleColor,
@@ -23,13 +24,16 @@ const {
23 24
   pLine = 'title-line-ellipsis',
24 25
   isContent = true,
25 26
   pMb,
27
+  subPmb,
26 28
   animation,
29
+  textP,
27 30
 } = Astro.props
31
+import LinkBtn2 from '@/components/Button/LinkBtn2.astro'
28 32
 ---
29 33
 
30 34
 <!-- 文本 -->
31 35
 <div
32
-  class=`${position} px-${px} rounded-${rounded} ${animation}`
36
+  class=`${position} px-${px} rounded-${rounded} ${animation} pb-${textP} textHover`
33 37
   style=`top:${top}%!important;background-color:${backgroundColor};`
34 38
 >
35 39
   <p
@@ -42,7 +46,7 @@ const {
42 46
   {
43 47
     isContent && (
44 48
       <p
45
-        class={`${ellipsis} pt-${pt} p-content`}
49
+        class={`${ellipsis} pt-${pt} p-content mb-${subPmb}`}
46 50
         style={`font-size:${childrenSize}px;color:#666;line-height:${contentLineHeight};height:${contentHeight}em;`}
47 51
       >
48 52
         {listOrData?.content}
@@ -56,6 +60,7 @@ const {
56 60
       </a>
57 61
     )
58 62
   }
63
+  {btn2 && <LinkBtn2>了解更多</LinkBtn2>}
59 64
 </div>
60 65
 
61 66
 <style>
@@ -94,8 +99,8 @@ const {
94 99
   }
95 100
   .line-ellipsis-large {
96 101
     display: -webkit-box;
97
-    height: 19em;
98
-    -webkit-line-clamp: 9;
102
+    height: 17em;
103
+    -webkit-line-clamp: 8;
99 104
     -webkit-box-orient: vertical;
100 105
     overflow: hidden;
101 106
     text-overflow: ellipsis;

+ 6
- 5
src/layouts/Layout.astro Wyświetl plik

@@ -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
       }

+ 6
- 2
src/pages/[lang]/about/index.astro Wyświetl plik

@@ -94,8 +94,11 @@ const imgProData3 = {
94 94
     titleHeight="3.2"
95 95
     px="5"
96 96
     pt="4"
97
-    contentHeight="19"
97
+    contentHeight="17"
98 98
     componentsBg="bg-grey"
99
+    subPmb="5"
100
+    btnDisplay={false}
101
+    btn2={true}
99 102
   />
100 103
   <LeftMiddleRightImgText
101 104
     componentTitle="案例统计"
@@ -104,7 +107,8 @@ const imgProData3 = {
104 107
     titleHeight="3.2"
105 108
     pt="4"
106 109
     px="5"
107
-    componentsBg="bg-blue"
110
+    componentsBg="bg-img"
111
+    subPmb="5"
108 112
   />
109 113
   <ImgPro
110 114
     listOrData={imgProData2}

+ 65
- 74
src/pages/[lang]/index.astro Wyświetl plik

@@ -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
 ---
@@ -209,38 +213,25 @@ const informationList = [
209 213
     titleSize="34"
210 214
     pt="4"
211 215
     px="5"
212
-    contentHeight="19"
213
-    componentsBg="bg-blue"
214
-  />
215
-
216
-  <LeftMiddleRightImgText
217
-    componentTitle="案例展示"
218
-    listOrData={caseList}
219
-    textAlign="text-center"
220
-    titleHeight="3.2"
221
-    pt="4"
222
-    px="5"
223
-    componentsBg="bg-grey"
216
+    contentHeight="17"
217
+    subPmb="5"
218
+    btnDisplay={false}
219
+    btn2={true}
224 220
   />
225
-  <LeftMiddleRightImgText
226
-    componentTitle="最新资讯"
221
+  <LeftMiddleRightImgTextPro listOrData={caseList} componentTitle="案例展示" />
222
+  <LeftMiddleRightImgTextPro
227 223
     listOrData={informationList}
228
-    textAlign="text-center"
224
+    componentTitle="最新资讯"
229 225
     btnBottomDisplay={true}
230 226
     bhref=`/${lang}/news`
231
-    titleHeight="3.2"
232
-    pt="4"
233
-    px="5"
234
-    componentsBg="bg-blue"
235 227
   />
236
-
237 228
   <Container title="测试标题">
238 229
     <div class="row" style="--bs-gutter-x: 48px">
239 230
       <div class="col-md-4 col-sm-12 mt-4">
240 231
         <MediaCard
241 232
           link="http://www.baidu.com"
242 233
           thumb="https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg"
243
-          title='因聚而生 数智有为”华为举办中国合作伙伴大会2024'
234
+          title="因聚而生 数智有为”华为举办中国合作伙伴大会2024"
244 235
           subTitle="华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘"
245 236
           more
246 237
         />
@@ -248,21 +239,21 @@ const informationList = [
248 239
       <div class="col-md-4 col-sm-12 mt-4">
249 240
         <MediaCard
250 241
           thumb="https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg"
251
-          title='因聚而生 数智有为”华为举办中国合作伙伴大会2024'
242
+          title="因聚而生 数智有为”华为举办中国合作伙伴大会2024"
252 243
           subTitle="华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘"
253 244
         />
254 245
       </div>
255 246
       <div class="col-md-4 col-sm-12 mt-4">
256 247
         <MediaCard
257 248
           thumb="https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg"
258
-          title='因聚而生 数智有为”华为举办中国合作伙伴大会2024'
249
+          title="因聚而生 数智有为”华为举办中国合作伙伴大会2024"
259 250
           subTitle="华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘"
260 251
         />
261 252
       </div>
262 253
       <div class="col-md-4 col-sm-12 mt-md-5 mt-4">
263 254
         <MediaCard
264 255
           thumb="https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg"
265
-          title='因聚而生 数智有为”华为举办中国合作伙伴大会2024'
256
+          title="因聚而生 数智有为”华为举办中国合作伙伴大会2024"
266 257
           subTitle="华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘"
267 258
         />
268 259
       </div>

+ 1
- 1
src/pages/[lang]/product/gov-ent-health/index.astro Wyświetl plik

@@ -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 Wyświetl plik

@@ -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

+ 62
- 53
src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro Wyświetl plik

@@ -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,15 +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"
175
-  />
176
-  <Carousel
177
+    componentsBg="bg-img"
178
+    subPmb="5"
179
+  /> -->
180
+  <!-- <Carousel
177 181
     componentTitle="相关产品"
178 182
     list={carouselList}
179 183
     Children={LeftMiddleRightImgText}
@@ -184,7 +188,8 @@ const list = [
184 188
     pt="4"
185 189
     px="5"
186 190
     componentsBg="bg-grey"
187
-  />
191
+    subPmb="5"
192
+  /> -->
188 193
   <Carousel
189 194
     componentTitle="成功案例"
190 195
     list={carouselList2}
@@ -193,8 +198,11 @@ const list = [
193 198
     titleHeight="3.2"
194 199
     px="5"
195 200
     pt="4"
196
-    contentHeight="19"
197
-    componentsBg="bg-blue"
201
+    contentHeight="17"
202
+    componentsBg="bg-img"
203
+    subPmb="5"
204
+    btnDisplay={false}
205
+    btn2={true}
198 206
   />
199 207
   <VerticalNavigationContent
200 208
     list={list}
@@ -206,7 +214,7 @@ const list = [
206 214
     pt="4"
207 215
     px="5"
208 216
     backgroundColor="#eee"
209
-    aMb="5"
217
+    textP="5"
210 218
     rounded="3"
211 219
     titleSize="20"
212 220
     titleHeight="5.4"
@@ -214,6 +222,7 @@ const list = [
214 222
     isContent={false}
215 223
     pMb="3"
216 224
     animation="animation"
225
+    componentsBg="bg-even"
217 226
   />
218 227
   <Footer lang={lang} />
219 228
 </Layout>

+ 52
- 63
src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro Wyświetl plik

@@ -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,13 +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"
170
+    componentsBg="bg-img"
179 171
   />
180 172
   <Carousel
181 173
     componentTitle="我们如何帮助客户成功"
@@ -185,20 +177,16 @@ const verticalNavigationContentList = [
185 177
     titleHeight="3.2"
186 178
     px="5"
187 179
     pt="4"
188
-    contentHeight="19"
180
+    contentHeight="17"
189 181
     componentsBg="bg-grey"
182
+    subPmb="5"
183
+    btnDisplay={false}
184
+    btn2={true}
190 185
   />
191
-  <Carousel
192
-    componentTitle="新闻与活动"
193
-    list={carouselList2}
194
-    line="0"
195
-    Children={LeftMiddleRightImgText}
196
-    titleTextAlign="text-end"
197
-    textAlign="text-end"
198
-    titleHeight="3.2"
199
-    pt="4"
200
-    px="5"
201
-    componentsBg="bg-blue"
186
+  <LeftMiddleRightImgTextPro
187
+    componentTitle="新闻资讯"
188
+    listOrData={carouselList2}
189
+    componentsBg="bg-img"
202 190
   />
203 191
   <VerticalNavigationContent
204 192
     list={verticalNavigationContentList}
@@ -210,7 +198,7 @@ const verticalNavigationContentList = [
210 198
     pt="4"
211 199
     px="5"
212 200
     backgroundColor="#eee"
213
-    aMb="5"
201
+    textP="5"
214 202
     rounded="3"
215 203
     titleSize="20"
216 204
     titleHeight="5.4"
@@ -218,6 +206,7 @@ const verticalNavigationContentList = [
218 206
     isContent={false}
219 207
     pMb="3"
220 208
     animation="animation"
209
+    componentsBg="bg-even"
221 210
   />
222 211
   <Footer lang={lang} />
223 212
 </Layout>

+ 6
- 2
src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro Wyświetl plik

@@ -104,8 +104,11 @@ const list = [
104 104
     titleSize="34"
105 105
     px="5"
106 106
     pt="4"
107
-    contentHeight="19"
107
+    contentHeight="17"
108 108
     componentsBg="bg-grey"
109
+    subPmb="5"
110
+    btnDisplay={false}
111
+    btn2={true}
109 112
   />
110 113
   <VerticalNavigationContent
111 114
     list={list}
@@ -117,7 +120,7 @@ const list = [
117 120
     pt="4"
118 121
     px="5"
119 122
     backgroundColor="#eee"
120
-    aMb="5"
123
+    textP="5"
121 124
     rounded="3"
122 125
     titleSize="20"
123 126
     titleHeight="5.4"
@@ -125,6 +128,7 @@ const list = [
125 128
     isContent={false}
126 129
     pMb="3"
127 130
     animation="animation"
131
+    componentsBg="bg-even"
128 132
   />
129 133
   <Footer lang={lang} />
130 134
 </Layout>

+ 24
- 23
src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro Wyświetl plik

@@ -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,13 +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"
171
+    componentsBg="bg-img"
174 172
   />
175 173
   <Carousel
176 174
     componentTitle="成功案例"
@@ -180,8 +178,11 @@ const list = [
180 178
     titleHeight="3.2"
181 179
     px="5"
182 180
     pt="4"
183
-    contentHeight="19"
181
+    contentHeight="17"
184 182
     componentsBg="bg-grey"
183
+    subPmb="5"
184
+    btnDisplay={false}
185
+    btn2={true}
185 186
   />
186 187
   <LeftMiddleRightText
187 188
     componentTitle="新闻与活动"
@@ -190,7 +191,6 @@ const list = [
190 191
     titleHeight="3.2"
191 192
     ellipsis="line-ellipsis-small"
192 193
     pt="4"
193
-    componentsBg="bg-blue"
194 194
   />
195 195
   <VerticalNavigationContent
196 196
     list={list}
@@ -202,7 +202,7 @@ const list = [
202 202
     pt="4"
203 203
     px="5"
204 204
     backgroundColor="#eee"
205
-    aMb="5"
205
+    textP="5"
206 206
     rounded="3"
207 207
     titleSize="20"
208 208
     titleHeight="5.4"
@@ -210,6 +210,7 @@ const list = [
210 210
     isContent={false}
211 211
     pMb="3"
212 212
     animation="animation"
213
+    componentsBg="bg-even"
213 214
   />
214 215
   <Footer lang={lang} />
215 216
 </Layout>

+ 45
- 47
src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro Wyświetl plik

@@ -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
   {
@@ -166,8 +161,11 @@ const list = [
166 161
     titleHeight="3.2"
167 162
     px="5"
168 163
     pt="4"
169
-    contentHeight="19"
164
+    contentHeight="17"
170 165
     componentsBg="bg-grey"
166
+    subPmb="5"
167
+    btnDisplay={false}
168
+    btn2={true}
171 169
   />
172 170
   <Carousel
173 171
     componentTitle="成功案例"
@@ -177,20 +175,16 @@ const list = [
177 175
     titleHeight="3.2"
178 176
     px="5"
179 177
     pt="4"
180
-    contentHeight="19"
181
-    componentsBg="bg-blue"
178
+    contentHeight="17"
179
+    componentsBg="bg-img"
180
+    subPmb="5"
181
+    btnDisplay={false}
182
+    btn2={true}
182 183
   />
183
-  <Carousel
184
-    componentTitle="新闻与活动"
185
-    list={carouselList2}
186
-    Children={LeftMiddleRightImgText}
187
-    titleTextAlign="text-end"
188
-    textAlign="text-end"
189
-    line="0"
190
-    titleHeight="3.2"
191
-    pt="4"
192
-    px="5"
193
-    componentsBg="bg-grey"
184
+  <LeftMiddleRightImgTextPro
185
+    componentTitle="相关产品"
186
+    listOrData={carouselList2}
187
+    componentsBg="bg-img"
194 188
   />
195 189
   <VerticalNavigationContent
196 190
     list={list}
@@ -199,14 +193,18 @@ const list = [
199 193
     componentTitle="相关资源"
200 194
     titleTextAlign="text-left"
201 195
     textAlign="text-left"
202
-    titleHeight="3.2"
203 196
     pt="4"
204 197
     px="5"
205 198
     backgroundColor="#eee"
206
-    aMb="5"
199
+    textP="5"
207 200
     rounded="3"
208 201
     titleSize="20"
209
-    titleHeight="4"
202
+    titleHeight="5.4"
203
+    pLine="titleLineEllipsis2"
204
+    isContent={false}
205
+    pMb="3"
206
+    animation="animation"
207
+    componentsBg="bg-even"
210 208
   />
211 209
   <Footer lang={lang} />
212 210
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/index.astro Wyświetl plik

@@ -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

+ 44
- 42
src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro Wyświetl plik

@@ -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 = [
@@ -163,16 +164,16 @@ const carouselList2 = [
163 164
     titleSize="34"
164 165
     px="5"
165 166
     pt="4"
166
-    contentHeight="19"
167
+    contentHeight="17"
167 168
     componentsBg="bg-grey"
169
+    subPmb="5"
170
+    btnDisplay={false}
171
+    btn2={true}
168 172
   />
169
-  <LeftMiddleRightImgText
173
+  <LeftMiddleRightImgTextPro
170 174
     componentTitle="场景化解决方案"
171 175
     listOrData={informationList}
172
-    titleHeight="3.2"
173
-    pt="4"
174
-    px="5"
175
-    componentsBg="bg-blue"
176
+    componentsBg="bg-img"
176 177
   />
177 178
   <Carousel
178 179
     componentTitle="我们如何帮助客户成功"
@@ -182,16 +183,16 @@ const carouselList2 = [
182 183
     titleHeight="3.2"
183 184
     px="5"
184 185
     pt="4"
185
-    contentHeight="19"
186
+    contentHeight="17"
186 187
     componentsBg="bg-grey"
188
+    subPmb="5"
189
+    btnDisplay={false}
190
+    btn2={true}
187 191
   />
188
-  <LeftMiddleRightImgText
192
+  <LeftMiddleRightImgTextPro
189 193
     componentTitle="配套产品"
190 194
     listOrData={informationList2}
191
-    titleHeight="3.2"
192
-    pt="4"
193
-    px="5"
194
-    componentsBg="bg-blue"
195
+    componentsBg="bg-img"
195 196
   />
196 197
   <LeftMiddleRightText
197 198
     componentTitle="相关资源"
@@ -201,6 +202,7 @@ const carouselList2 = [
201 202
     pt="4"
202 203
     titleSize="20"
203 204
     titleHeight="4"
205
+    componentsBg="bg-even"
204 206
   />
205 207
   <Footer lang={lang} />
206 208
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/industrial-internet/index.astro Wyświetl plik

@@ -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

+ 10
- 3
src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro Wyświetl plik

@@ -183,8 +183,11 @@ const leftImgRightTextData3 = [
183 183
     titleHeight="3.2"
184 184
     px="5"
185 185
     pt="4"
186
-    contentHeight="19"
186
+    contentHeight="17"
187 187
     componentsBg="bg-grey"
188
+    subPmb="5"
189
+    btnDisplay={false}
190
+    btn2={true}
188 191
   />
189 192
   <LeftImgRightText
190 193
     listOrData={leftImgRightTextData3}
@@ -193,8 +196,11 @@ const leftImgRightTextData3 = [
193 196
     titleHeight="3.2"
194 197
     px="5"
195 198
     pt="4"
196
-    contentHeight="19"
199
+    contentHeight="17"
197 200
     componentsBg="bg-grey"
201
+    subPmb="5"
202
+    btnDisplay={false}
203
+    btn2={true}
198 204
   />
199 205
   <VerticalNavigationContent
200 206
     list={list}
@@ -206,7 +212,7 @@ const leftImgRightTextData3 = [
206 212
     pt="4"
207 213
     px="5"
208 214
     backgroundColor="#eee"
209
-    aMb="5"
215
+    textP="5"
210 216
     rounded="3"
211 217
     titleSize="20"
212 218
     titleHeight="5.4"
@@ -214,6 +220,7 @@ const leftImgRightTextData3 = [
214 220
     isContent={false}
215 221
     pMb="3"
216 222
     animation="animation"
223
+    componentsBg="bg-even"
217 224
   />
218 225
   <Footer lang={lang} />
219 226
 </Layout>

+ 51
- 60
src/pages/[lang]/products-solutions/lot/agriculture/index.astro Wyświetl plik

@@ -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,13 +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"
148
+    componentsBg="bg-img"
159 149
   />
160 150
   <LeftImgRightText
161 151
     listOrData={data}
@@ -164,16 +154,16 @@ const list = [
164 154
     titleSize="34"
165 155
     px="5"
166 156
     pt="4"
167
-    contentHeight="19"
157
+    contentHeight="17"
168 158
     componentsBg="bg-grey"
159
+    subPmb="5"
160
+    btnDisplay={false}
161
+    btn2={true}
169 162
   />
170
-  <LeftMiddleRightImgText
163
+  <LeftMiddleRightImgTextPro
171 164
     componentTitle="”四情“监测系统"
172 165
     listOrData={informationList2}
173
-    titleHeight="3.2"
174
-    pt="4"
175
-    px="5"
176
-    componentsBg="bg-blue"
166
+    componentsBg="bg-img"
177 167
   />
178 168
   <VerticalNavigationContent
179 169
     list={list}
@@ -185,7 +175,7 @@ const list = [
185 175
     pt="4"
186 176
     px="5"
187 177
     backgroundColor="#eee"
188
-    aMb="5"
178
+    textP="5"
189 179
     rounded="3"
190 180
     titleSize="20"
191 181
     titleHeight="5.4"
@@ -193,6 +183,7 @@ const list = [
193 183
     isContent={false}
194 184
     pMb="3"
195 185
     animation="animation"
186
+    componentsBg="bg-even"
196 187
   />
197 188
   <Footer lang={lang} />
198 189
 </Layout>

+ 44
- 57
src/pages/[lang]/products-solutions/lot/building/index.astro Wyświetl plik

@@ -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,14 +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"
220
+    componentsBg="bg-img"
231 221
   />
232 222
   <LeftMiddleRightText
233 223
     componentTitle="访客授权快捷登记"
@@ -249,7 +239,6 @@ const list = [
249 239
     titleHeight="3.2"
250 240
     ellipsis="line-ellipsis-small"
251 241
     pt="4"
252
-    componentsBg="bg-blue"
253 242
   />
254 243
   <ImgPro
255 244
     listOrData={imgProData2}
@@ -264,14 +253,9 @@ const list = [
264 253
     position="positionMiddle"
265 254
     top="50"
266 255
   />
267
-  <LeftMiddleRightImgText
268
-    componentTitle="智识别便捷通行"
256
+  <LeftMiddleRightImgTextPro
257
+    componentTitle="智识别便捷通行"
269 258
     listOrData={informationList3}
270
-    textAlign="text-center"
271
-    titleHeight="3.2"
272
-    pt="4"
273
-    px="5"
274
-    componentsBg="bg-grey"
275 259
   />
276 260
   <ImgPro
277 261
     titleHeight="2.5"
@@ -297,7 +281,7 @@ const list = [
297 281
     pt="4"
298 282
     px="5"
299 283
     backgroundColor="#eee"
300
-    aMb="5"
284
+    textP="5"
301 285
     rounded="3"
302 286
     titleSize="20"
303 287
     titleHeight="5.4"
@@ -305,6 +289,9 @@ const list = [
305 289
     isContent={false}
306 290
     pMb="3"
307 291
     animation="animation"
292
+    btnDisplay={false}
293
+    btn2={true}
294
+    componentsBg="bg-even"
308 295
   />
309 296
   <Footer lang={lang} />
310 297
 </Layout>

+ 20
- 25
src/pages/[lang]/products-solutions/lot/community/index.astro Wyświetl plik

@@ -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,14 +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"
163
+    componentsBg="bg-img"
170 164
   />
171 165
   <LeftMiddleRightText
172 166
     componentTitle="客户需求程度"
@@ -189,7 +183,7 @@ const list = [
189 183
     pt="4"
190 184
     px="5"
191 185
     backgroundColor="#eee"
192
-    aMb="5"
186
+    textP="5"
193 187
     rounded="3"
194 188
     titleSize="20"
195 189
     titleHeight="5.4"
@@ -197,6 +191,7 @@ const list = [
197 191
     isContent={false}
198 192
     pMb="3"
199 193
     animation="animation"
194
+    componentsBg="bg-even"
200 195
   />
201 196
   <Footer lang={lang} />
202 197
 </Layout>

+ 41
- 44
src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro Wyświetl plik

@@ -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,14 +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"
202
+    componentsBg="bg-img"
206 203
   />
207 204
   <Carousel
208 205
     titleHeight="3.2"
@@ -214,17 +211,16 @@ const informationList2 = [
214 211
     titleTextAlign="text-center"
215 212
     px="5"
216 213
     pt="4"
217
-    contentHeight="19"
214
+    contentHeight="17"
218 215
     componentsBg="bg-grey"
216
+    subPmb="5"
217
+    btnDisplay={false}
218
+    btn2={true}
219 219
   />
220
-  <LeftMiddleRightImgText
220
+  <LeftMiddleRightImgTextPro
221 221
     componentTitle="界面设计与用户体验"
222 222
     listOrData={informationList2}
223
-    textAlign="text-center"
224
-    titleHeight="3.2"
225
-    pt="4"
226
-    px="5"
227
-    componentsBg="bg-blue"
223
+    componentsBg="bg-img"
228 224
   />
229 225
   <VerticalNavigationContent
230 226
     list={list}
@@ -236,7 +232,7 @@ const informationList2 = [
236 232
     pt="4"
237 233
     px="5"
238 234
     backgroundColor="#eee"
239
-    aMb="5"
235
+    textP="5"
240 236
     rounded="3"
241 237
     titleSize="20"
242 238
     titleHeight="5.4"
@@ -244,6 +240,7 @@ const informationList2 = [
244 240
     isContent={false}
245 241
     pMb="3"
246 242
     animation="animation"
243
+    componentsBg="bg-even"
247 244
   />
248 245
   <Footer lang={lang} />
249 246
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/lot/index.astro Wyświetl plik

@@ -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

+ 29
- 25
src/pages/[lang]/products-solutions/others/crm/index.astro Wyświetl plik

@@ -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,13 +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"
92
+    componentsBg="bg-img"
95 93
   />
96 94
   <LeftImgRightText
97 95
     listOrData={leftImgRightTextList}
@@ -100,8 +98,10 @@ const verticalNavigationContentList = [
100 98
     titleHeight="'3.2"
101 99
     px="5"
102 100
     pt="4"
103
-    contentHeight="19"
104
-    componentsBg="bg-blue"
101
+    contentHeight="17"
102
+    subPmb="5"
103
+    btnDisplay={false}
104
+    btn2={true}
105 105
   />
106 106
   <VerticalNavigationContent
107 107
     list={verticalNavigationContentList}
@@ -110,14 +110,18 @@ const verticalNavigationContentList = [
110 110
     componentTitle="相关资源"
111 111
     titleTextAlign="text-left"
112 112
     textAlign="text-left"
113
-    titleHeight="'3.2"
114 113
     pt="4"
115 114
     px="5"
116 115
     backgroundColor="#eee"
117
-    aMb="5"
116
+    textP="5"
118 117
     rounded="3"
119 118
     titleSize="20"
120
-    titleHeight="4"
119
+    titleHeight="5.4"
120
+    pLine="titleLineEllipsis2"
121
+    isContent={false}
122
+    pMb="3"
123
+    animation="animation"
124
+    componentsBg="bg-even"
121 125
   />
122 126
   <Footer lang={lang} />
123 127
 </Layout>

+ 7
- 3
src/pages/[lang]/products-solutions/others/eshop/index.astro Wyświetl plik

@@ -100,14 +100,18 @@ const verticalNavigationContentList = [
100 100
     componentTitle="相关资源"
101 101
     titleTextAlign="text-left"
102 102
     textAlign="text-left"
103
-    titleHeight="3.2"
104 103
     pt="4"
105 104
     px="5"
106 105
     backgroundColor="#eee"
107
-    aMb="5"
106
+    textP="5"
108 107
     rounded="3"
109 108
     titleSize="20"
110
-    titleHeight="4"
109
+    titleHeight="5.4"
110
+    pLine="titleLineEllipsis2"
111
+    isContent={false}
112
+    pMb="3"
113
+    animation="animation"
114
+    componentsBg="bg-even"
111 115
   />
112 116
   <Footer lang={lang} />
113 117
 </Layout>

+ 57
- 63
src/pages/[lang]/products-solutions/others/house/index.astro Wyświetl plik

@@ -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 = [
@@ -173,25 +168,20 @@ const list = [
173 168
     titleHeight="3.2"
174 169
     px="5"
175 170
     pt="4"
176
-    contentHeight="19"
171
+    contentHeight="17"
172
+    subPmb="5"
173
+    btnDisplay={false}
174
+    btn2={true}
175
+    componentsBg="bg-grey"
177 176
   />
178
-  <Carousel
177
+  <LeftMiddleRightImgTextPro
179 178
     componentTitle="新闻与活动"
180
-    list={carouselList2}
181
-    Children={LeftMiddleRightImgText}
182
-    titleTextAlign="text-end"
183
-    textAlign="text-end"
184
-    line="0"
185
-    titleHeight="3.2"
186
-    pt="4"
187
-    px="5"
179
+    listOrData={carouselList2}
180
+    componentsBg="bg-img"
188 181
   />
189
-  <LeftMiddleRightImgText
190
-    componentTitle="选择适合您的产品"
182
+  <LeftMiddleRightImgTextPro
183
+    componentTitle="新闻与活动"
191 184
     listOrData={informationList}
192
-    titleHeight="3.2"
193
-    pt="4"
194
-    px="5"
195 185
   />
196 186
   <VerticalNavigationContent
197 187
     list={list}
@@ -200,14 +190,18 @@ const list = [
200 190
     componentTitle="相关资源"
201 191
     titleTextAlign="text-left"
202 192
     textAlign="text-left"
203
-    titleHeight="3.2"
204 193
     pt="4"
205 194
     px="5"
206 195
     backgroundColor="#eee"
207
-    aMb="5"
196
+    textP="5"
208 197
     rounded="3"
209 198
     titleSize="20"
210
-    titleHeight="4"
199
+    titleHeight="5.4"
200
+    pLine="titleLineEllipsis2"
201
+    isContent={false}
202
+    pMb="3"
203
+    animation="animation"
204
+    componentsBg="bg-even"
211 205
   />
212 206
   <Footer lang={lang} />
213 207
 </Layout>

+ 16
- 6
src/pages/[lang]/products-solutions/others/shigongli/index.astro Wyświetl plik

@@ -126,8 +126,11 @@ const verticalNavigationContentList = [
126 126
     titleHeight="3.2"
127 127
     px="5"
128 128
     pt="4"
129
-    contentHeight="19"
129
+    contentHeight="17"
130 130
     componentsBg="bg-grey"
131
+    subPmb="5"
132
+    btnDisplay={false}
133
+    btn2={true}
131 134
   />
132 135
   <Carousel
133 136
     componentTitle="成功案例"
@@ -139,8 +142,11 @@ const verticalNavigationContentList = [
139 142
     titleHeight="3.2"
140 143
     px="5"
141 144
     pt="4"
142
-    contentHeight="19"
143
-    componentsBg="bg-blue"
145
+    contentHeight="17"
146
+    componentsBg="bg-img"
147
+    subPmb="5"
148
+    btnDisplay={false}
149
+    btn2={true}
144 150
   />
145 151
   <VerticalNavigationContent
146 152
     list={verticalNavigationContentList}
@@ -149,14 +155,18 @@ const verticalNavigationContentList = [
149 155
     componentTitle="相关资源"
150 156
     titleTextAlign="text-left"
151 157
     textAlign="text-left"
152
-    titleHeight="3.2"
153 158
     pt="4"
154 159
     px="5"
155 160
     backgroundColor="#eee"
156
-    aMb="5"
161
+    textP="5"
157 162
     rounded="3"
158 163
     titleSize="20"
159
-    titleHeight="4"
164
+    titleHeight="5.4"
165
+    pLine="titleLineEllipsis2"
166
+    isContent={false}
167
+    pMb="3"
168
+    animation="animation"
169
+    componentsBg="bg-even"
160 170
   />
161 171
   <Footer lang={lang} />
162 172
 </Layout>