fangmingyue 1年前
父节点
当前提交
9f565dfd2e
共有 27 个文件被更改,包括 546 次插入611 次删除
  1. 二进制
      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

二进制
public/background.jpg 查看文件


+ 52
- 0
src/components/LeftMiddleRightImgTextPro/index.astro 查看文件

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

+ 6
- 5
src/layouts/Layout.astro 查看文件

37
         /* height: 100%; */
37
         /* height: 100%; */
38
         margin: 0 !important;
38
         margin: 0 !important;
39
         padding: 0 !important;
39
         padding: 0 !important;
40
-        background-color: white;
40
+        background-color: #f8f8f8;
41
         /* background: transparent linear-gradient(0deg, #1f2935, #1f2935) 0 100%
41
         /* background: transparent linear-gradient(0deg, #1f2935, #1f2935) 0 100%
42
           no-repeat; */
42
           no-repeat; */
43
       }
43
       }
55
       .bg-even {
55
       .bg-even {
56
         background: white;
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
         background: #f6f6f6;
63
         background: #f6f6f6;
63
-      }
64
+      } */
64
       .bg-l {
65
       .bg-l {
65
         background: #eee;
66
         background: #eee;
66
       }
67
       }

+ 1
- 1
src/pages/[lang]/about/index.astro 查看文件

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

+ 57
- 70
src/pages/[lang]/index.astro 查看文件

16
 
16
 
17
 import Container from '@/components/Container.astro'
17
 import Container from '@/components/Container.astro'
18
 import MediaCard from '@/components/MediaCard/MediaCard1.astro'
18
 import MediaCard from '@/components/MediaCard/MediaCard1.astro'
19
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
19
 
20
 
20
 function getName(item = {}) {
21
 function getName(item = {}) {
21
   return (
22
   return (
105
 const caseList = [
106
 const caseList = [
106
   {
107
   {
107
     id: '1',
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
     id: '2',
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
     id: '3',
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
     id: '4',
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
     id: '5',
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
     id: '6',
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
 const informationList = [
162
 const informationList = [
162
   {
163
   {
163
     id: '1',
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
     id: '2',
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
     id: '3',
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
     pt="4"
214
     pt="4"
211
     px="5"
215
     px="5"
212
     contentHeight="17"
216
     contentHeight="17"
213
-    componentsBg="bg-blue"
214
     subPmb="5"
217
     subPmb="5"
215
     btnDisplay={false}
218
     btnDisplay={false}
216
     btn2={true}
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
     listOrData={informationList}
223
     listOrData={informationList}
232
-    textAlign="text-center"
224
+    componentTitle="最新资讯"
233
     btnBottomDisplay={true}
225
     btnBottomDisplay={true}
234
     bhref=`/${lang}/news`
226
     bhref=`/${lang}/news`
235
-    titleHeight="3.2"
236
-    pt="4"
237
-    px="5"
238
-    componentsBg="bg-blue"
239
   />
227
   />
240
-
241
   <Container title="测试标题">
228
   <Container title="测试标题">
242
     <div class="row" style="--bs-gutter-x: 48px">
229
     <div class="row" style="--bs-gutter-x: 48px">
243
       <div class="col-md-4 col-sm-12 mt-4">
230
       <div class="col-md-4 col-sm-12 mt-4">

+ 1
- 1
src/pages/[lang]/product/gov-ent-health/index.astro 查看文件

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

+ 1
- 1
src/pages/[lang]/product/others/index.astro 查看文件

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

+ 55
- 51
src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro 查看文件

9
 import Text from '@/components/children/Text.astro'
9
 import Text from '@/components/children/Text.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
15
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
21
 const informationList = [
22
 const informationList = [
22
   {
23
   {
23
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const carouselList = [
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
 const carouselList2 = [
74
 const carouselList2 = [
80
   [
75
   [
165
     position="positionMiddle"
160
     position="positionMiddle"
166
     btnDisplay={false}
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
     componentTitle="场景化解决方案"
172
     componentTitle="场景化解决方案"
170
     listOrData={informationList}
173
     listOrData={informationList}
171
     titleHeight="3.2"
174
     titleHeight="3.2"
172
     pt="4"
175
     pt="4"
173
     px="5"
176
     px="5"
174
-    componentsBg="bg-blue"
177
+    componentsBg="bg-img"
175
     subPmb="5"
178
     subPmb="5"
176
-  />
177
-  <Carousel
179
+  /> -->
180
+  <!-- <Carousel
178
     componentTitle="相关产品"
181
     componentTitle="相关产品"
179
     list={carouselList}
182
     list={carouselList}
180
     Children={LeftMiddleRightImgText}
183
     Children={LeftMiddleRightImgText}
186
     px="5"
189
     px="5"
187
     componentsBg="bg-grey"
190
     componentsBg="bg-grey"
188
     subPmb="5"
191
     subPmb="5"
189
-  />
192
+  /> -->
190
   <Carousel
193
   <Carousel
191
     componentTitle="成功案例"
194
     componentTitle="成功案例"
192
     list={carouselList2}
195
     list={carouselList2}
196
     px="5"
199
     px="5"
197
     pt="4"
200
     pt="4"
198
     contentHeight="17"
201
     contentHeight="17"
199
-    componentsBg="bg-blue"
202
+    componentsBg="bg-img"
200
     subPmb="5"
203
     subPmb="5"
201
     btnDisplay={false}
204
     btnDisplay={false}
202
     btn2={true}
205
     btn2={true}
219
     isContent={false}
222
     isContent={false}
220
     pMb="3"
223
     pMb="3"
221
     animation="animation"
224
     animation="animation"
225
+    componentsBg="bg-even"
222
   />
226
   />
223
   <Footer lang={lang} />
227
   <Footer lang={lang} />
224
 </Layout>
228
 </Layout>

+ 47
- 63
src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro 查看文件

9
 import Text from '@/components/children/Text.astro'
9
 import Text from '@/components/children/Text.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
15
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
21
 const informationList = [
22
 const informationList = [
22
   {
23
   {
23
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const carouselList = [
48
 const carouselList = [
75
   ],
76
   ],
76
 ]
77
 ]
77
 const carouselList2 = [
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
 const verticalNavigationContentList = [
104
 const verticalNavigationContentList = [
110
   {
105
   {
169
     position="positionMiddle"
164
     position="positionMiddle"
170
     btnDisplay={false}
165
     btnDisplay={false}
171
   />
166
   />
172
-  <LeftMiddleRightImgText
167
+  <LeftMiddleRightImgTextPro
173
     componentTitle="场景化解决方案"
168
     componentTitle="场景化解决方案"
174
     listOrData={informationList}
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
   <Carousel
172
   <Carousel
182
     componentTitle="我们如何帮助客户成功"
173
     componentTitle="我们如何帮助客户成功"
192
     btnDisplay={false}
183
     btnDisplay={false}
193
     btn2={true}
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
   <VerticalNavigationContent
191
   <VerticalNavigationContent
209
     list={verticalNavigationContentList}
192
     list={verticalNavigationContentList}
223
     isContent={false}
206
     isContent={false}
224
     pMb="3"
207
     pMb="3"
225
     animation="animation"
208
     animation="animation"
209
+    componentsBg="bg-even"
226
   />
210
   />
227
   <Footer lang={lang} />
211
   <Footer lang={lang} />
228
 </Layout>
212
 </Layout>

+ 1
- 0
src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro 查看文件

128
     isContent={false}
128
     isContent={false}
129
     pMb="3"
129
     pMb="3"
130
     animation="animation"
130
     animation="animation"
131
+    componentsBg="bg-even"
131
   />
132
   />
132
   <Footer lang={lang} />
133
   <Footer lang={lang} />
133
 </Layout>
134
 </Layout>

+ 19
- 22
src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro 查看文件

10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
 import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
11
 import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
12
 import Footer from '@/components/Footer.astro'
12
 import Footer from '@/components/Footer.astro'
13
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
13
 
14
 
14
 const { lang = 'zh' } = Astro.params
15
 const { lang = 'zh' } = Astro.params
15
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
16
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
22
 const informationList = [
23
 const informationList = [
23
   {
24
   {
24
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const carouselList = [
49
 const carouselList = [
164
     position="positionMiddle"
165
     position="positionMiddle"
165
     btnDisplay={false}
166
     btnDisplay={false}
166
   />
167
   />
167
-  <LeftMiddleRightImgText
168
+  <LeftMiddleRightImgTextPro
168
     componentTitle="场景化解决方案"
169
     componentTitle="场景化解决方案"
169
     listOrData={informationList}
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
   <Carousel
173
   <Carousel
177
     componentTitle="成功案例"
174
     componentTitle="成功案例"
194
     titleHeight="3.2"
191
     titleHeight="3.2"
195
     ellipsis="line-ellipsis-small"
192
     ellipsis="line-ellipsis-small"
196
     pt="4"
193
     pt="4"
197
-    componentsBg="bg-blue"
198
   />
194
   />
199
   <VerticalNavigationContent
195
   <VerticalNavigationContent
200
     list={list}
196
     list={list}
214
     isContent={false}
210
     isContent={false}
215
     pMb="3"
211
     pMb="3"
216
     animation="animation"
212
     animation="animation"
213
+    componentsBg="bg-even"
217
   />
214
   />
218
   <Footer lang={lang} />
215
   <Footer lang={lang} />
219
 </Layout>
216
 </Layout>

+ 31
- 43
src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro 查看文件

9
 import Text from '@/components/children/Text.astro'
9
 import Text from '@/components/children/Text.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
15
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
69
   ],
70
   ],
70
 ]
71
 ]
71
 const carouselList2 = [
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
 const list = [
98
 const list = [
104
   {
99
   {
181
     px="5"
176
     px="5"
182
     pt="4"
177
     pt="4"
183
     contentHeight="17"
178
     contentHeight="17"
184
-    componentsBg="bg-blue"
179
+    componentsBg="bg-img"
185
     subPmb="5"
180
     subPmb="5"
186
     btnDisplay={false}
181
     btnDisplay={false}
187
     btn2={true}
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
   <VerticalNavigationContent
189
   <VerticalNavigationContent
203
     list={list}
190
     list={list}
217
     isContent={false}
204
     isContent={false}
218
     pMb="3"
205
     pMb="3"
219
     animation="animation"
206
     animation="animation"
207
+    componentsBg="bg-even"
220
   />
208
   />
221
   <Footer lang={lang} />
209
   <Footer lang={lang} />
222
 </Layout>
210
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/index.astro 查看文件

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

+ 36
- 42
src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro 查看文件

9
 import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
9
 import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
10
 import Text from '@/components/children/Text.astro'
10
 import Text from '@/components/children/Text.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = [
15
 const sNav = [
47
 const informationList = [
48
 const informationList = [
48
   {
49
   {
49
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const carouselList = [
74
 const carouselList = [
99
 const informationList2 = [
100
 const informationList2 = [
100
   {
101
   {
101
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const carouselList2 = [
126
 const carouselList2 = [
169
     btnDisplay={false}
170
     btnDisplay={false}
170
     btn2={true}
171
     btn2={true}
171
   />
172
   />
172
-  <LeftMiddleRightImgText
173
+  <LeftMiddleRightImgTextPro
173
     componentTitle="场景化解决方案"
174
     componentTitle="场景化解决方案"
174
     listOrData={informationList}
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
   <Carousel
178
   <Carousel
182
     componentTitle="我们如何帮助客户成功"
179
     componentTitle="我们如何帮助客户成功"
192
     btnDisplay={false}
189
     btnDisplay={false}
193
     btn2={true}
190
     btn2={true}
194
   />
191
   />
195
-  <LeftMiddleRightImgText
192
+  <LeftMiddleRightImgTextPro
196
     componentTitle="配套产品"
193
     componentTitle="配套产品"
197
     listOrData={informationList2}
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
   <LeftMiddleRightText
197
   <LeftMiddleRightText
205
     componentTitle="相关资源"
198
     componentTitle="相关资源"
209
     pt="4"
202
     pt="4"
210
     titleSize="20"
203
     titleSize="20"
211
     titleHeight="4"
204
     titleHeight="4"
205
+    componentsBg="bg-even"
212
   />
206
   />
213
   <Footer lang={lang} />
207
   <Footer lang={lang} />
214
 </Layout>
208
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/industrial-internet/index.astro 查看文件

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

+ 1
- 0
src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro 查看文件

220
     isContent={false}
220
     isContent={false}
221
     pMb="3"
221
     pMb="3"
222
     animation="animation"
222
     animation="animation"
223
+    componentsBg="bg-even"
223
   />
224
   />
224
   <Footer lang={lang} />
225
   <Footer lang={lang} />
225
 </Layout>
226
 </Layout>

+ 46
- 60
src/pages/[lang]/products-solutions/lot/agriculture/index.astro 查看文件

9
 import Text from '@/components/children/Text.astro'
9
 import Text from '@/components/children/Text.astro'
10
 import Footer from '@/components/Footer.astro'
10
 import Footer from '@/components/Footer.astro'
11
 import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
11
 import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 const { lang = 'zh' } = Astro.params
13
 const { lang = 'zh' } = Astro.params
13
 
14
 
14
 const sNav = ['项目内容', '大数据可视化平台', '”四情“监测系统', '相关资源']
15
 const sNav = ['项目内容', '大数据可视化平台', '”四情“监测系统', '相关资源']
34
 const informationList = [
35
 const informationList = [
35
   {
36
   {
36
     id: '1',
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
     id: '2',
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
     id: '3',
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
     id: '4',
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
 const informationList2 = [
70
 const informationList2 = [
74
   {
71
   {
75
     id: '1',
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
     id: '2',
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
     id: '3',
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
     id: '4',
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
     position="positionMiddle"
142
     position="positionMiddle"
150
     btnDisplay={false}
143
     btnDisplay={false}
151
   />
144
   />
152
-  <LeftMiddleRightImgText
145
+  <LeftMiddleRightImgTextPro
153
     componentTitle="项目内容"
146
     componentTitle="项目内容"
154
     listOrData={informationList}
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
   <LeftImgRightText
150
   <LeftImgRightText
162
     listOrData={data}
151
     listOrData={data}
171
     btnDisplay={false}
160
     btnDisplay={false}
172
     btn2={true}
161
     btn2={true}
173
   />
162
   />
174
-  <LeftMiddleRightImgText
163
+  <LeftMiddleRightImgTextPro
175
     componentTitle="”四情“监测系统"
164
     componentTitle="”四情“监测系统"
176
     listOrData={informationList2}
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
   <VerticalNavigationContent
168
   <VerticalNavigationContent
184
     list={list}
169
     list={list}
198
     isContent={false}
183
     isContent={false}
199
     pMb="3"
184
     pMb="3"
200
     animation="animation"
185
     animation="animation"
186
+    componentsBg="bg-even"
201
   />
187
   />
202
   <Footer lang={lang} />
188
   <Footer lang={lang} />
203
 </Layout>
189
 </Layout>

+ 41
- 58
src/pages/[lang]/products-solutions/lot/building/index.astro 查看文件

11
 import ImgPro from '@/components/ImgPro.astro'
11
 import ImgPro from '@/components/ImgPro.astro'
12
 import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
12
 import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
13
 import Footer from '@/components/Footer.astro'
13
 import Footer from '@/components/Footer.astro'
14
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
14
 
15
 
15
 const { lang = 'zh' } = Astro.params
16
 const { lang = 'zh' } = Astro.params
16
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
17
 const sNav = ['场景化解决方案', '成功案例', '新闻与活动', '相关资源']
24
 const informationList2 = [
25
 const informationList2 = [
25
   {
26
   {
26
     id: '1',
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
     id: '2',
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
     id: '3',
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
     id: '4',
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
 const informationList3 = [
128
 const informationList3 = [
132
   {
129
   {
133
     id: '1',
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
     id: '2',
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
     id: '3',
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
     pt="4"
214
     pt="4"
221
     componentsBg="bg-grey"
215
     componentsBg="bg-grey"
222
   />
216
   />
223
-  <LeftMiddleRightImgText
217
+  <LeftMiddleRightImgTextPro
224
     componentTitle="智能识别便捷通行"
218
     componentTitle="智能识别便捷通行"
225
     listOrData={informationList2}
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
   <LeftMiddleRightText
222
   <LeftMiddleRightText
234
     componentTitle="访客授权快捷登记"
223
     componentTitle="访客授权快捷登记"
250
     titleHeight="3.2"
239
     titleHeight="3.2"
251
     ellipsis="line-ellipsis-small"
240
     ellipsis="line-ellipsis-small"
252
     pt="4"
241
     pt="4"
253
-    componentsBg="bg-blue"
254
   />
242
   />
255
   <ImgPro
243
   <ImgPro
256
     listOrData={imgProData2}
244
     listOrData={imgProData2}
265
     position="positionMiddle"
253
     position="positionMiddle"
266
     top="50"
254
     top="50"
267
   />
255
   />
268
-  <LeftMiddleRightImgText
269
-    componentTitle="智识别便捷通行"
256
+  <LeftMiddleRightImgTextPro
257
+    componentTitle="智识别便捷通行"
270
     listOrData={informationList3}
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
   <ImgPro
260
   <ImgPro
279
     titleHeight="2.5"
261
     titleHeight="2.5"
309
     animation="animation"
291
     animation="animation"
310
     btnDisplay={false}
292
     btnDisplay={false}
311
     btn2={true}
293
     btn2={true}
294
+    componentsBg="bg-even"
312
   />
295
   />
313
   <Footer lang={lang} />
296
   <Footer lang={lang} />
314
 </Layout>
297
 </Layout>

+ 19
- 25
src/pages/[lang]/products-solutions/lot/community/index.astro 查看文件

9
 import Text from '@/components/children/Text.astro'
9
 import Text from '@/components/children/Text.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = ['场景化解决方案', '相关产品']
15
 const sNav = ['场景化解决方案', '相关产品']
20
 const informationList = [
21
 const informationList = [
21
   {
22
   {
22
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const carouselList2 = [
47
 const carouselList2 = [
159
     position="positionMiddle"
157
     position="positionMiddle"
160
     btnDisplay={false}
158
     btnDisplay={false}
161
   />
159
   />
162
-  <LeftMiddleRightImgText
160
+  <LeftMiddleRightImgTextPro
163
     componentTitle="社区目的"
161
     componentTitle="社区目的"
164
     listOrData={informationList}
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
   <LeftMiddleRightText
165
   <LeftMiddleRightText
173
     componentTitle="客户需求程度"
166
     componentTitle="客户需求程度"
198
     isContent={false}
191
     isContent={false}
199
     pMb="3"
192
     pMb="3"
200
     animation="animation"
193
     animation="animation"
194
+    componentsBg="bg-even"
201
   />
195
   />
202
   <Footer lang={lang} />
196
   <Footer lang={lang} />
203
 </Layout>
197
 </Layout>

+ 36
- 44
src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro 查看文件

9
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
9
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import Text from '@/components/children/Text.astro'
10
 import Text from '@/components/children/Text.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = ['场景化解决方案', '新闻与活动', '相关资源']
15
 const sNav = ['场景化解决方案', '新闻与活动', '相关资源']
20
 const informationList = [
21
 const informationList = [
21
   {
22
   {
22
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const carouselList = [
47
 const carouselList = [
153
 const informationList2 = [
157
 const informationList2 = [
154
   {
158
   {
155
     id: '1',
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
     id: '2',
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
     id: '3',
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
     ellipsis="line-ellipsis-small"
196
     ellipsis="line-ellipsis-small"
196
     position="positionMiddle"
197
     position="positionMiddle"
197
   />
198
   />
198
-  <LeftMiddleRightImgText
199
+  <LeftMiddleRightImgTextPro
199
     componentTitle="5G网络覆盖"
200
     componentTitle="5G网络覆盖"
200
     listOrData={informationList}
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
   <Carousel
204
   <Carousel
209
     titleHeight="3.2"
205
     titleHeight="3.2"
221
     btnDisplay={false}
217
     btnDisplay={false}
222
     btn2={true}
218
     btn2={true}
223
   />
219
   />
224
-  <LeftMiddleRightImgText
220
+  <LeftMiddleRightImgTextPro
225
     componentTitle="界面设计与用户体验"
221
     componentTitle="界面设计与用户体验"
226
     listOrData={informationList2}
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
   <VerticalNavigationContent
225
   <VerticalNavigationContent
235
     list={list}
226
     list={list}
249
     isContent={false}
240
     isContent={false}
250
     pMb="3"
241
     pMb="3"
251
     animation="animation"
242
     animation="animation"
243
+    componentsBg="bg-even"
252
   />
244
   />
253
   <Footer lang={lang} />
245
   <Footer lang={lang} />
254
 </Layout>
246
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/lot/index.astro 查看文件

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

+ 19
- 22
src/pages/[lang]/products-solutions/others/crm/index.astro 查看文件

9
 import ImgPro from '@/components/ImgPro.astro'
9
 import ImgPro from '@/components/ImgPro.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = ['服务产品', '成功案例', '相关资源']
15
 const sNav = ['服务产品', '成功案例', '相关资源']
21
 const informationList = [
22
 const informationList = [
22
   {
23
   {
23
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const leftImgRightTextList = [
48
 const leftImgRightTextList = [
85
     position="positionMiddle"
86
     position="positionMiddle"
86
     btnDisplay={false}
87
     btnDisplay={false}
87
   />
88
   />
88
-  <LeftMiddleRightImgText
89
+  <LeftMiddleRightImgTextPro
89
     componentTitle="服务产品"
90
     componentTitle="服务产品"
90
     listOrData={informationList}
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
   <LeftImgRightText
94
   <LeftImgRightText
98
     listOrData={leftImgRightTextList}
95
     listOrData={leftImgRightTextList}
102
     px="5"
99
     px="5"
103
     pt="4"
100
     pt="4"
104
     contentHeight="17"
101
     contentHeight="17"
105
-    componentsBg="bg-blue"
106
     subPmb="5"
102
     subPmb="5"
107
     btnDisplay={false}
103
     btnDisplay={false}
108
     btn2={true}
104
     btn2={true}
125
     isContent={false}
121
     isContent={false}
126
     pMb="3"
122
     pMb="3"
127
     animation="animation"
123
     animation="animation"
124
+    componentsBg="bg-even"
128
   />
125
   />
129
   <Footer lang={lang} />
126
   <Footer lang={lang} />
130
 </Layout>
127
 </Layout>

+ 1
- 0
src/pages/[lang]/products-solutions/others/eshop/index.astro 查看文件

111
     isContent={false}
111
     isContent={false}
112
     pMb="3"
112
     pMb="3"
113
     animation="animation"
113
     animation="animation"
114
+    componentsBg="bg-even"
114
   />
115
   />
115
   <Footer lang={lang} />
116
   <Footer lang={lang} />
116
 </Layout>
117
 </Layout>

+ 46
- 63
src/pages/[lang]/products-solutions/others/house/index.astro 查看文件

9
 import ImgPro from '@/components/ImgPro.astro'
9
 import ImgPro from '@/components/ImgPro.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
 import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
 import Footer from '@/components/Footer.astro'
11
 import Footer from '@/components/Footer.astro'
12
+import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
 
13
 
13
 const { lang = 'zh' } = Astro.params
14
 const { lang = 'zh' } = Astro.params
14
 const sNav = ['成功案例', '动态', '相关产品', '相关资源']
15
 const sNav = ['成功案例', '动态', '相关产品', '相关资源']
47
   ],
48
   ],
48
 ]
49
 ]
49
 const carouselList2 = [
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
 const informationList = [
76
 const informationList = [
82
   {
77
   {
83
     id: '1',
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
     id: '2',
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
     id: '3',
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
 const list = [
102
 const list = [
179
     btn2={true}
174
     btn2={true}
180
     componentsBg="bg-grey"
175
     componentsBg="bg-grey"
181
   />
176
   />
182
-  <Carousel
177
+  <LeftMiddleRightImgTextPro
183
     componentTitle="新闻与活动"
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
     listOrData={informationList}
184
     listOrData={informationList}
198
-    titleHeight="3.2"
199
-    pt="4"
200
-    px="5"
201
-    subPmb="5"
202
-    componentsBg="bg-grey"
203
   />
185
   />
204
   <VerticalNavigationContent
186
   <VerticalNavigationContent
205
     list={list}
187
     list={list}
219
     isContent={false}
201
     isContent={false}
220
     pMb="3"
202
     pMb="3"
221
     animation="animation"
203
     animation="animation"
204
+    componentsBg="bg-even"
222
   />
205
   />
223
   <Footer lang={lang} />
206
   <Footer lang={lang} />
224
 </Layout>
207
 </Layout>

+ 2
- 1
src/pages/[lang]/products-solutions/others/shigongli/index.astro 查看文件

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