Browse Source

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

Yansen 1 year ago
parent
commit
f913b188f6
29 changed files with 681 additions and 649 deletions
  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 View File


+ 5
- 7
src/components/LeftMiddleRightImgText.astro View File

73
     }
73
     }
74
   </div>
74
   </div>
75
 </div>
75
 </div>
76
-<style>
76
+<style lang="less">
77
   .text-underline {
77
   .text-underline {
78
     display: inline-block;
78
     display: inline-block;
79
     width: 100px;
79
     width: 100px;
93
     background-color: #c7000b;
93
     background-color: #c7000b;
94
     color: white;
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
     transform: scale(1.1);
100
     transform: scale(1.1);
101
-    max-width: 100%;
102
-    max-height: 100%;
103
   }
101
   }
104
 </style>
102
 </style>
105
 
103
 

+ 52
- 0
src/components/LeftMiddleRightImgTextPro/index.astro View File

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 View File

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 View File

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>

+ 9
- 4
src/components/children/Text.astro View File

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

+ 6
- 5
src/layouts/Layout.astro View File

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
       }

+ 6
- 2
src/pages/[lang]/about/index.astro View File

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

+ 65
- 74
src/pages/[lang]/index.astro View File

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

+ 1
- 1
src/pages/[lang]/product/gov-ent-health/index.astro View File

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 View File

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

+ 62
- 53
src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro View File

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

+ 52
- 63
src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro View File

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"
170
+    componentsBg="bg-img"
179
   />
171
   />
180
   <Carousel
172
   <Carousel
181
     componentTitle="我们如何帮助客户成功"
173
     componentTitle="我们如何帮助客户成功"
185
     titleHeight="3.2"
177
     titleHeight="3.2"
186
     px="5"
178
     px="5"
187
     pt="4"
179
     pt="4"
188
-    contentHeight="19"
180
+    contentHeight="17"
189
     componentsBg="bg-grey"
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
   <VerticalNavigationContent
191
   <VerticalNavigationContent
204
     list={verticalNavigationContentList}
192
     list={verticalNavigationContentList}
210
     pt="4"
198
     pt="4"
211
     px="5"
199
     px="5"
212
     backgroundColor="#eee"
200
     backgroundColor="#eee"
213
-    aMb="5"
201
+    textP="5"
214
     rounded="3"
202
     rounded="3"
215
     titleSize="20"
203
     titleSize="20"
216
     titleHeight="5.4"
204
     titleHeight="5.4"
218
     isContent={false}
206
     isContent={false}
219
     pMb="3"
207
     pMb="3"
220
     animation="animation"
208
     animation="animation"
209
+    componentsBg="bg-even"
221
   />
210
   />
222
   <Footer lang={lang} />
211
   <Footer lang={lang} />
223
 </Layout>
212
 </Layout>

+ 6
- 2
src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro View File

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

+ 24
- 23
src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro View File

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

+ 45
- 47
src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro View File

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
   {
166
     titleHeight="3.2"
161
     titleHeight="3.2"
167
     px="5"
162
     px="5"
168
     pt="4"
163
     pt="4"
169
-    contentHeight="19"
164
+    contentHeight="17"
170
     componentsBg="bg-grey"
165
     componentsBg="bg-grey"
166
+    subPmb="5"
167
+    btnDisplay={false}
168
+    btn2={true}
171
   />
169
   />
172
   <Carousel
170
   <Carousel
173
     componentTitle="成功案例"
171
     componentTitle="成功案例"
177
     titleHeight="3.2"
175
     titleHeight="3.2"
178
     px="5"
176
     px="5"
179
     pt="4"
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
   <VerticalNavigationContent
189
   <VerticalNavigationContent
196
     list={list}
190
     list={list}
199
     componentTitle="相关资源"
193
     componentTitle="相关资源"
200
     titleTextAlign="text-left"
194
     titleTextAlign="text-left"
201
     textAlign="text-left"
195
     textAlign="text-left"
202
-    titleHeight="3.2"
203
     pt="4"
196
     pt="4"
204
     px="5"
197
     px="5"
205
     backgroundColor="#eee"
198
     backgroundColor="#eee"
206
-    aMb="5"
199
+    textP="5"
207
     rounded="3"
200
     rounded="3"
208
     titleSize="20"
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
   <Footer lang={lang} />
209
   <Footer lang={lang} />
212
 </Layout>
210
 </Layout>

+ 1
- 1
src/pages/[lang]/products-solutions/index.astro View File

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

+ 44
- 42
src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro View File

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

+ 1
- 1
src/pages/[lang]/products-solutions/industrial-internet/index.astro View File

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

+ 10
- 3
src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro View File

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

+ 51
- 60
src/pages/[lang]/products-solutions/lot/agriculture/index.astro View File

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

+ 44
- 57
src/pages/[lang]/products-solutions/lot/building/index.astro View File

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

+ 20
- 25
src/pages/[lang]/products-solutions/lot/community/index.astro View File

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

+ 41
- 44
src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro View File

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

+ 1
- 1
src/pages/[lang]/products-solutions/lot/index.astro View File

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

+ 29
- 25
src/pages/[lang]/products-solutions/others/crm/index.astro View File

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"
92
+    componentsBg="bg-img"
95
   />
93
   />
96
   <LeftImgRightText
94
   <LeftImgRightText
97
     listOrData={leftImgRightTextList}
95
     listOrData={leftImgRightTextList}
100
     titleHeight="'3.2"
98
     titleHeight="'3.2"
101
     px="5"
99
     px="5"
102
     pt="4"
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
   <VerticalNavigationContent
106
   <VerticalNavigationContent
107
     list={verticalNavigationContentList}
107
     list={verticalNavigationContentList}
110
     componentTitle="相关资源"
110
     componentTitle="相关资源"
111
     titleTextAlign="text-left"
111
     titleTextAlign="text-left"
112
     textAlign="text-left"
112
     textAlign="text-left"
113
-    titleHeight="'3.2"
114
     pt="4"
113
     pt="4"
115
     px="5"
114
     px="5"
116
     backgroundColor="#eee"
115
     backgroundColor="#eee"
117
-    aMb="5"
116
+    textP="5"
118
     rounded="3"
117
     rounded="3"
119
     titleSize="20"
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
   <Footer lang={lang} />
126
   <Footer lang={lang} />
123
 </Layout>
127
 </Layout>

+ 7
- 3
src/pages/[lang]/products-solutions/others/eshop/index.astro View File

100
     componentTitle="相关资源"
100
     componentTitle="相关资源"
101
     titleTextAlign="text-left"
101
     titleTextAlign="text-left"
102
     textAlign="text-left"
102
     textAlign="text-left"
103
-    titleHeight="3.2"
104
     pt="4"
103
     pt="4"
105
     px="5"
104
     px="5"
106
     backgroundColor="#eee"
105
     backgroundColor="#eee"
107
-    aMb="5"
106
+    textP="5"
108
     rounded="3"
107
     rounded="3"
109
     titleSize="20"
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
   <Footer lang={lang} />
116
   <Footer lang={lang} />
113
 </Layout>
117
 </Layout>

+ 57
- 63
src/pages/[lang]/products-solutions/others/house/index.astro View File

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 = [
173
     titleHeight="3.2"
168
     titleHeight="3.2"
174
     px="5"
169
     px="5"
175
     pt="4"
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
     componentTitle="新闻与活动"
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
     listOrData={informationList}
184
     listOrData={informationList}
192
-    titleHeight="3.2"
193
-    pt="4"
194
-    px="5"
195
   />
185
   />
196
   <VerticalNavigationContent
186
   <VerticalNavigationContent
197
     list={list}
187
     list={list}
200
     componentTitle="相关资源"
190
     componentTitle="相关资源"
201
     titleTextAlign="text-left"
191
     titleTextAlign="text-left"
202
     textAlign="text-left"
192
     textAlign="text-left"
203
-    titleHeight="3.2"
204
     pt="4"
193
     pt="4"
205
     px="5"
194
     px="5"
206
     backgroundColor="#eee"
195
     backgroundColor="#eee"
207
-    aMb="5"
196
+    textP="5"
208
     rounded="3"
197
     rounded="3"
209
     titleSize="20"
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
   <Footer lang={lang} />
206
   <Footer lang={lang} />
213
 </Layout>
207
 </Layout>

+ 16
- 6
src/pages/[lang]/products-solutions/others/shigongli/index.astro View File

126
     titleHeight="3.2"
126
     titleHeight="3.2"
127
     px="5"
127
     px="5"
128
     pt="4"
128
     pt="4"
129
-    contentHeight="19"
129
+    contentHeight="17"
130
     componentsBg="bg-grey"
130
     componentsBg="bg-grey"
131
+    subPmb="5"
132
+    btnDisplay={false}
133
+    btn2={true}
131
   />
134
   />
132
   <Carousel
135
   <Carousel
133
     componentTitle="成功案例"
136
     componentTitle="成功案例"
139
     titleHeight="3.2"
142
     titleHeight="3.2"
140
     px="5"
143
     px="5"
141
     pt="4"
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
   <VerticalNavigationContent
151
   <VerticalNavigationContent
146
     list={verticalNavigationContentList}
152
     list={verticalNavigationContentList}
149
     componentTitle="相关资源"
155
     componentTitle="相关资源"
150
     titleTextAlign="text-left"
156
     titleTextAlign="text-left"
151
     textAlign="text-left"
157
     textAlign="text-left"
152
-    titleHeight="3.2"
153
     pt="4"
158
     pt="4"
154
     px="5"
159
     px="5"
155
     backgroundColor="#eee"
160
     backgroundColor="#eee"
156
-    aMb="5"
161
+    textP="5"
157
     rounded="3"
162
     rounded="3"
158
     titleSize="20"
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
   <Footer lang={lang} />
171
   <Footer lang={lang} />
162
 </Layout>
172
 </Layout>