fangmingyue 1 gadu atpakaļ
vecāks
revīzija
b2be148401
51 mainītis faili ar 2640 papildinājumiem un 2623 dzēšanām
  1. 37
    7
      src/components/DynamicComponent.astro
  2. 8
    10
      src/components/Footer.astro
  3. 2
    2
      src/components/LeftMiddleRightImgTextPro/index.astro
  4. 2
    1
      src/components/VerticalNavigationContent.astro
  5. 11
    12
      src/components/children/Carousel.astro
  6. 77
    52
      src/data/zh/about.js
  7. 137
    101
      src/data/zh/agriculture.js
  8. 144
    114
      src/data/zh/bank.js
  9. 273
    186
      src/data/zh/building.js
  10. 88
    65
      src/data/zh/civilizedCity.js
  11. 118
    138
      src/data/zh/community.js
  12. 78
    51
      src/data/zh/crm.js
  13. 131
    103
      src/data/zh/custom.js
  14. 207
    170
      src/data/zh/erp.js
  15. 86
    64
      src/data/zh/eshop.js
  16. 135
    102
      src/data/zh/exhibitionAll.js
  17. 146
    117
      src/data/zh/gov.js
  18. 35
    0
      src/data/zh/govEntHealth.js
  19. 127
    97
      src/data/zh/healthcare.js
  20. 127
    122
      src/data/zh/homepage.js
  21. 136
    105
      src/data/zh/house.js
  22. 28
    0
      src/data/zh/industrialInternet.js
  23. 43
    0
      src/data/zh/lot.js
  24. 114
    85
      src/data/zh/mes.js
  25. 39
    29
      src/data/zh/news.js
  26. 42
    0
      src/data/zh/others.js
  27. 41
    0
      src/data/zh/productsSolutions.js
  28. 90
    67
      src/data/zh/shigongli.js
  29. 6
    23
      src/pages/[lang]/about/index.astro
  30. 1
    45
      src/pages/[lang]/index.astro
  31. 6
    12
      src/pages/[lang]/news/index.astro
  32. 7
    30
      src/pages/[lang]/product/gov-ent-health/index.astro
  33. 7
    37
      src/pages/[lang]/product/others/index.astro
  34. 6
    38
      src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro
  35. 6
    40
      src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro
  36. 6
    27
      src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro
  37. 6
    44
      src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro
  38. 6
    40
      src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro
  39. 7
    39
      src/pages/[lang]/products-solutions/index.astro
  40. 6
    47
      src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro
  41. 7
    23
      src/pages/[lang]/products-solutions/industrial-internet/index.astro
  42. 6
    32
      src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro
  43. 6
    38
      src/pages/[lang]/products-solutions/lot/agriculture/index.astro
  44. 6
    66
      src/pages/[lang]/products-solutions/lot/building/index.astro
  45. 6
    38
      src/pages/[lang]/products-solutions/lot/community/index.astro
  46. 6
    32
      src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro
  47. 7
    39
      src/pages/[lang]/products-solutions/lot/index.astro
  48. 6
    31
      src/pages/[lang]/products-solutions/others/crm/index.astro
  49. 6
    28
      src/pages/[lang]/products-solutions/others/eshop/index.astro
  50. 6
    40
      src/pages/[lang]/products-solutions/others/house/index.astro
  51. 6
    34
      src/pages/[lang]/products-solutions/others/shigongli/index.astro

+ 37
- 7
src/components/DynamicComponent.astro Parādīt failu

@@ -1,15 +1,45 @@
1 1
 ---
2 2
 import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3 3
 import ImgPro from '@/components/ImgPro.astro'
4
+import LeftImgRightText from '@/components/LeftImgRightText.astro'
5
+import Footer from '@/components/Footer.astro'
6
+import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
7
+import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
8
+import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
9
+import List from '@/components/List.astro'
10
+import Carousel from '@/components/children/Carousel.astro'
11
+import NavSubMenu from '@/components/NavSubMenu.astro'
4 12
 
5
-const { type, ...leftProps } = Astro.props;
6
-
13
+const { type, ...leftProps } = Astro.props
7 14
 ---
8 15
 
9 16
 <Fragment>
10
-
11
-  { type == 'ImgPro' && <ImgPro {...leftProps} /> }
12
-  { type == 'LeftMiddleRightImgTextPro' && <LeftMiddleRightImgTextPro {...leftProps} /> }
13
-
14
-
17
+  <!-- 悬浮导航栏 -->
18
+  {type == 'ScrollingNavbar' && <ScrollingNavbar {...leftProps} />}
19
+  <!-- 子导航菜单 -->
20
+  {type == 'NavSubMenu' && <NavSubMenu {...leftProps} />}
21
+  <!-- 单张大图 -->
22
+  {type == 'ImgPro' && <ImgPro {...leftProps} />}
23
+  <!-- 左图右文 -->
24
+  {type == 'LeftImgRightText' && <LeftImgRightText {...leftProps} />}
25
+  <!-- 左图右文轮播 -->
26
+  {type == 'Carousel' && <Carousel {...leftProps} />}
27
+  <!-- 左中右图文 -->
28
+  {
29
+    type == 'LeftMiddleRightImgTextPro' && (
30
+      <LeftMiddleRightImgTextPro {...leftProps} />
31
+    )
32
+  }
33
+  <!-- 列表 -->
34
+  {type == 'List' && <List {...leftProps} />}
35
+  <!-- 左中右文本 -->
36
+  {type == 'LeftMiddleRightText' && <LeftMiddleRightText {...leftProps} />}
37
+  <!-- 竖形菜单组件 -->
38
+  {
39
+    type == 'VerticalNavigationContent' && (
40
+      <VerticalNavigationContent {...leftProps} />
41
+    )
42
+  }
43
+  <!-- 底部菜单 -->
44
+  {type == 'Footer' && <Footer {...leftProps} />}
15 45
 </Fragment>

+ 8
- 10
src/components/Footer.astro Parādīt failu

@@ -4,16 +4,6 @@ import { arr2Tree } from '@/utils/array'
4 4
 // const [menus] = arr2Tree(Astro.locals._menus || [])
5 5
 
6 6
 const { lang } = Astro.props
7
-
8
-const home = lang == 'zh' ? '首页' : 'Home'
9
-function getName(item = {}) {
10
-  return (
11
-    item[`categaryName${lang.charAt(0).toUpperCase() + lang.slice(1)}`] ||
12
-    item.categaryNameEn ||
13
-    item.categaryNameZh
14
-  )
15
-}
16
-
17 7
 const menus = [
18 8
   {
19 9
     id: '1',
@@ -106,6 +96,14 @@ const menus = [
106 96
     ],
107 97
   },
108 98
 ]
99
+const home = lang == 'zh' ? '首页' : 'Home'
100
+function getName(item = {}) {
101
+  return (
102
+    item[`categaryName${lang.charAt(0).toUpperCase() + lang.slice(1)}`] ||
103
+    item.categaryNameEn ||
104
+    item.categaryNameZh
105
+  )
106
+}
109 107
 
110 108
 const colNum = Math.ceil(12 / (menus?.length + 1))
111 109
 ---

+ 2
- 2
src/components/LeftMiddleRightImgTextPro/index.astro Parādīt failu

@@ -8,7 +8,7 @@ const {
8 8
   componentTitle,
9 9
   btnBottomDisplay,
10 10
   bhref,
11
-  white,
11
+  hoverBackColor,
12 12
 } = Astro.props
13 13
 ---
14 14
 
@@ -24,7 +24,7 @@ const {
24 24
               title={item?.title}
25 25
               subTitle={item?.subTitle}
26 26
               more
27
-              white={white}
27
+              hoverBackColor={hoverBackColor}
28 28
             />
29 29
           </div>
30 30
         ))

+ 2
- 1
src/components/VerticalNavigationContent.astro Parādīt failu

@@ -1,4 +1,5 @@
1 1
 ---
2
+import Text3 from '@/components/children/Text3.astro'
2 3
 const domId = `tab-${Math.random().toString(36).substring(2, 7)}`
3 4
 const {
4 5
   list,
@@ -69,7 +70,7 @@ const {
69 70
                   <div class="row g-5">
70 71
                     {item?.children?.map((item, index) => (
71 72
                       <div class={`col-md-${mdSize}`} id={index}>
72
-                        <Children listOrData={item} {...right} />
73
+                        <Text3 listOrData={item} {...right} />
73 74
                       </div>
74 75
                     ))}
75 76
                   </div>

+ 11
- 12
src/components/children/Carousel.astro Parādīt failu

@@ -7,10 +7,11 @@ const {
7 7
   line,
8 8
   titleTextAlign,
9 9
   textAlign,
10
-  mdSize,
10
+  mdSize = 12,
11 11
   componentsBg,
12 12
   ...right
13 13
 } = Astro.props
14
+import LeftImgRightText from '@/components/LeftImgRightText.astro'
14 15
 ---
15 16
 
16 17
 <!-- 轮播 -->
@@ -58,18 +59,16 @@ const {
58 59
             id={index}
59 60
           >
60 61
             <div class="row">
61
-              {item.map((it, index) => (
62
-                <div class={`col-md-${mdSize} col-sm-12`}>
63
-                  <div
64
-                    class="top-bottom-project-card-carousel"
65
-                    style={it.id ? 'cursor: pointer' : ''}
66
-                    data-post={it.id}
67
-                  >
68
-                    <div class="card border-0" />
69
-                    <Children listOrData={it} line={line} {...right} />
70
-                  </div>
62
+              <div class={`col-md-${mdSize} col-sm-12`}>
63
+                <div
64
+                  class="top-bottom-project-card-carousel"
65
+                  style={item.id ? 'cursor: pointer' : ''}
66
+                  data-post={item.id}
67
+                >
68
+                  <div class="card border-0" />
69
+                  <LeftImgRightText listOrData={item} line={line} {...right} />
71 70
                 </div>
72
-              ))}
71
+              </div>
73 72
             </div>
74 73
           </div>
75 74
         ))

+ 77
- 52
src/data/zh/about.js Parādīt failu

@@ -1,57 +1,82 @@
1
-export default {
2
-  imgProData: {
3
-    url: '//e.huawei.com/mediafileebg/MediaFiles/9/5/7/{9578A2AD-F2ED-4FB9-A98D-46BF61013F97}secondbanner-banner-pc-0325.jpg',
4
-    title: '云致企业业务',
5
-    content:
6
-      '横跨整个大西洋与北冰洋,云致企业业务为全球企业提供安全、可靠的云服务。',
1
+export default [
2
+  {
3
+    type: 'ImgPro',
4
+    listOrData: {
5
+      url: '//e.huawei.com/mediafileebg/MediaFiles/9/5/7/{9578A2AD-F2ED-4FB9-A98D-46BF61013F97}secondbanner-banner-pc-0325.jpg',
6
+      title: '云致企业业务',
7
+      content:
8
+        '横跨整个大西洋与北冰洋,云致企业业务为全球企业提供安全、可靠的云服务。',
9
+    },
7 10
   },
8
-  data: [
9
-    {
10
-      id: '1',
11
-      url: 'https://e.huawei.com/topic/sitecore/2024-finance/img/partner.jpg',
12
-      children: {
13
-        title: '关于云致',
14
-        content:
15
-          '关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致',
11
+  {
12
+    type: 'LeftImgRightText',
13
+    listOrData: [
14
+      {
15
+        id: '1',
16
+        url: 'https://e.huawei.com/topic/sitecore/2024-finance/img/partner.jpg',
17
+        children: {
18
+          title: '关于云致',
19
+          content:
20
+            '关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致关于云致',
21
+        },
16 22
       },
23
+    ],
24
+    componentTitle: '发展背景',
25
+    textAlign: 'text-center',
26
+    componentsBg: 'bg-grey',
27
+  },
28
+  {
29
+    type: 'LeftMiddleRightImgTextPro',
30
+    listOrData: [
31
+      {
32
+        id: '1',
33
+        link: 'http://www.baidu.com',
34
+        thumb: '/public/image/building/control.png',
35
+        title: '案例统计',
36
+        subTitle:
37
+          '案例统计案例统计案例统计案例统计案例统计案例统计案例统计案例统计',
38
+      },
39
+      {
40
+        id: '2',
41
+        link: 'http://www.baidu.com',
42
+        thumb: '/public/image/building/identify.png',
43
+        title: '案例统计',
44
+        subTitle:
45
+          '案例统计案例统计案例统计案例统计案例统计案例统计案例统计案例统计',
46
+      },
47
+      {
48
+        id: '3',
49
+        link: 'http://www.baidu.com',
50
+        thumb: '/public/image/building/identify.png',
51
+        title: '案例统计',
52
+        subTitle:
53
+          '案例统计案例统计案例统计案例统计案例统计案例统计案例统计案例统计',
54
+      },
55
+    ],
56
+    componentTitle: '案例统计',
57
+    componentsBg: 'bg-img',
58
+  },
59
+  {
60
+    type: 'ImgPro',
61
+    listOrData: {
62
+      url: '//e.huawei.com/mediafileebg/MediaFiles/9/5/7/{9578A2AD-F2ED-4FB9-A98D-46BF61013F97}secondbanner-banner-pc-0325.jpg',
63
+      title: '服务标准',
64
+      content:
65
+        '服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准',
17 66
     },
18
-  ],
19
-  informationList2: [
20
-    {
21
-      id: '1',
22
-      link: 'http://www.baidu.com',
23
-      thumb: '/public/image/building/control.png',
24
-      title: '案例统计',
25
-      subTitle:
26
-        '案例统计案例统计案例统计案例统计案例统计案例统计案例统计案例统计',
27
-    },
28
-    {
29
-      id: '2',
30
-      link: 'http://www.baidu.com',
31
-      thumb: '/public/image/building/identify.png',
32
-      title: '案例统计',
33
-      subTitle:
34
-        '案例统计案例统计案例统计案例统计案例统计案例统计案例统计案例统计',
35
-    },
36
-    {
37
-      id: '3',
38
-      link: 'http://www.baidu.com',
39
-      thumb: '/public/image/building/identify.png',
40
-      title: '案例统计',
41
-      subTitle:
42
-        '案例统计案例统计案例统计案例统计案例统计案例统计案例统计案例统计',
43
-    },
44
-  ],
45
-  imgProData2: {
46
-    url: '//e.huawei.com/mediafileebg/MediaFiles/9/5/7/{9578A2AD-F2ED-4FB9-A98D-46BF61013F97}secondbanner-banner-pc-0325.jpg',
47
-    title: '服务标准',
48
-    content:
49
-      '服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准服务标准',
67
+    imgMb: '5'
68
+  },
69
+  {
70
+    type: 'ImgPro',
71
+    listOrData: {
72
+      url: '/public/image/about/next.png',
73
+      title: '未来展望',
74
+      content:
75
+        '未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望',
76
+    }
50 77
   },
51
-  imgProData3: {
52
-    url: '/public/image/about/next.png',
53
-    title: '未来展望',
54
-    content:
55
-      '未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望未来展望',
78
+  {
79
+    type: 'Footer',
80
+    lang: 'zh'
56 81
   }
57
-}
82
+]

+ 137
- 101
src/data/zh/agriculture.js Parādīt failu

@@ -1,110 +1,146 @@
1
-export default {
2
-  sNav: ['项目内容', '大数据可视化平台', '”四情“监测系统', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/industries/transportation/banner-pc-3.jpeg',
5
-    title: '智慧农业',
6
-    content: '数字化建设方案',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['项目内容', '大数据可视化平台', '”四情“监测系统', '相关资源'],
7 5
   },
8
-  data: [
9
-    {
10
-      id: '1',
11
-      url: '/public/image/agriculture/bigData.png',
12
-      children: {
13
-        title: '建设方案',
14
-        content:
15
-          '实现对园区农业实时环境数据、病虫害数据、苗情数据的可视化展示,智能设施的远程查看和管理。通过平台可设定环境数据预警值,系统自动预警,生成预警事件,通过手机短信及网页报警提示管理人员或工作人员进行管理和控制。同时可以将园区空气温度、空气湿度、二氧化碳浓度等环境监测数据以及环境预警事件信息以图表形式或曲线图形式形成统计报表,供管理人员做出适当的作物生长管理、分析与决策。',
16
-      },
17
-    },
18
-  ],
19
-  informationList: [
20
-    {
21
-      id: '1',
22
-      link: 'http://www.baidu.com',
23
-      thumb: '/public/image/agriculture/revitalization.png',
24
-      title: '项目背景',
25
-      subTitle:
26
-        '2021年5月,河南省委农村工作会议提出,四五”时期河南要推动乡村振兴实现更大突破走在全国前列。',
27
-    },
28
-    {
29
-      id: '2',
30
-      link: 'http://www.baidu.com',
31
-      thumb: '/public/image/agriculture/target.png',
32
-      title: '项目目标',
33
-      subTitle:
34
-        '发展智慧农业是互联网+时代下现代农业的精细化管理,实现农业种养殖智慧化,以物联网技术等作为技术支撑,在坚持绿色发展为基础的原则下,将农业产业经济价值最大化。',
35
-    },
36
-    {
37
-      id: '3',
38
-      link: 'http://www.baidu.com',
39
-      thumb: '/public/image/agriculture/programme.png',
40
-      title: '建设方案',
41
-      subTitle:
42
-        '支持从门户网站到大型E-Commerce、电子商务平台网站的建立数据共享平台的建立,丰富的农业领域网站模板,资源弹性扩展用户空间隔离,高可靠可用性保障',
43
-    },
44
-    {
45
-      id: '4',
46
-      link: 'http://www.baidu.com',
47
-      thumb: '/public/image/agriculture/programme.png',
48
-      title: '公司简介',
49
-      subTitle:
50
-        '河南油田工程科技股份有限公司创立于2006年,是一家为石油、炼化行业安全环保管理提供咨询评价、方案设计、信息化赋能井坚持“产、学、研”协同发展的技术服务机构。公司2018年挂牌新三板,2021年升级为创新层,是河南省“高新技术企业”“专精特新企业”,与河南理工大学、郑州大学共建多所研究中心及实验室。',
51
-    },
52
-  ],
53
-  informationList2: [
54
-    {
55
-      id: '1',
56
-      link: 'http://www.baidu.com',
57
-      thumb: '/public/image/agriculture/moistureContent.png',
58
-      title: '项目土壤墒情监测背景',
59
-      subTitle:
60
-        '土壤墙情监测系统可实现全天候不间断监测。现场远程监测设备自动采集士壤培情实时数据并利用GPRS无线网络实现数据远程传输:监控中心自动接收、自动存储各监测点的监测数据到数据库中。',
61
-    },
62
-    {
63
-      id: '2',
64
-      link: 'http://www.baidu.com',
65
-      thumb: '/public/image/agriculture/insect.png',
66
-      title: '智能虫情监测',
67
-      subTitle:
68
-        '自动虫情监测系统主要利用现代光、电、数控技术无线传输技术、互联网技术构建出一套害虫生态监测及预警系统该系统集害虫诱捕和拍照、环境信息采集数据传输、数据分析于一体,实现了害虫的诱集、分类统计、实时报传远程检测、虫害预警和防治指导的自动化、智能化。',
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/industries/transportation/banner-pc-3.jpeg',
10
+      title: '智慧农业',
11
+      content: '数字化建设方案',
69 12
     },
70
-    {
71
-      id: '3',
72
-      link: 'http://www.baidu.com',
73
-      thumb: '/public/image/agriculture/spore.png',
74
-      title: '智能孢子监测',
75
-      subTitle:
76
-        '智能抱子监测系统集成电子数码显微、数字图像处理与人工智能识别、GMS全球数据传输等现代高新技术,集病菌抱子自动捕捉、自动识别、自动计数、自动存储等功能于一体,实现了病菌抱子的连续动态监测,可以显著提升农作物病害综合防控管理水平。',
77
-    },
78
-    {
79
-      id: '4',
80
-      link: 'http://www.baidu.com',
81
-      thumb: '/public/image/agriculture/programme.png',
82
-      title: '灾情、苗情监测',
83
-      subTitle:
84
-        '通过对农田进行农业物联网传感器布局,对整个农种过程中的播种、施肥、采摘、包装等各个环节进行视频监控,树立标准化作业标准。',
85
-    },
86
-  ],
87
-  list2: [
88
-    {
89
-      id: '1',
90
-      tabName: '统计分析',
91
-      children: [
13
+  },
14
+  {
15
+    type: 'LeftMiddleRightImgTextPro',
16
+    listOrData:
17
+      [
92 18
         {
93
-          title: '水质分析',
94
-          content:
95
-            '管理部门可通过该系统及时掌握河流的降水、断面水位等流域水文状况,从而及时作出管理决策。水文监测预警系统在及时预警洪涝灾害、避免人员和经济损失方面发挥了重要作用。',
19
+          id: '1',
20
+          link: 'http://www.baidu.com',
21
+          thumb: '/public/image/agriculture/revitalization.png',
22
+          title: '项目背景',
23
+          subTitle:
24
+            '2021年5月,河南省委农村工作会议提出,四五”时期河南要推动乡村振兴实现更大突破走在全国前列。',
96 25
         },
97 26
         {
98
-          title: '气象分析',
99
-          content:
100
-            '通过对信息的采集/过滤/融合汇总/分析,以各类图表形式进行展现,为掌握大气环境动态信息,科学制定解决措施,实现灾害预警。',
27
+          id: '2',
28
+          link: 'http://www.baidu.com',
29
+          thumb: '/public/image/agriculture/target.png',
30
+          title: '项目目标',
31
+          subTitle:
32
+            '发展智慧农业是互联网+时代下现代农业的精细化管理,实现农业种养殖智慧化,以物联网技术等作为技术支撑,在坚持绿色发展为基础的原则下,将农业产业经济价值最大化。',
101 33
         },
102 34
         {
103
-          title: '虫害分析',
104
-          content:
105
-            '物联网虫情测报灯是推出的新一代害虫自动测报系统,本系统主要利用现代光、电、数控技术、无线传输技术、互联网技术、构建出一套害虫生态监测及分析预警系统。',
35
+          id: '3',
36
+          link: 'http://www.baidu.com',
37
+          thumb: '/public/image/agriculture/programme.png',
38
+          title: '建设方案',
39
+          subTitle:
40
+            '支持从门户网站到大型E-Commerce、电子商务平台网站的建立数据共享平台的建立,丰富的农业领域网站模板,资源弹性扩展用户空间隔离,高可靠可用性保障',
41
+        },
42
+        {
43
+          id: '4',
44
+          link: 'http://www.baidu.com',
45
+          thumb: '/public/image/agriculture/programme.png',
46
+          title: '公司简介',
47
+          subTitle:
48
+            '河南油田工程科技股份有限公司创立于2006年,是一家为石油、炼化行业安全环保管理提供咨询评价、方案设计、信息化赋能井坚持“产、学、研”协同发展的技术服务机构。公司2018年挂牌新三板,2021年升级为创新层,是河南省“高新技术企业”“专精特新企业”,与河南理工大学、郑州大学共建多所研究中心及实验室。',
106 49
         },
107 50
       ],
108
-    },
109
-  ]
110
-}
51
+    componentTitle: '项目内容',
52
+    componentsBg: 'bg-img',
53
+    hoverBackColor: 'white',
54
+  },
55
+  {
56
+    type: 'LeftImgRightText',
57
+    listOrData: [
58
+      {
59
+        id: '1',
60
+        url: '/public/image/agriculture/bigData.png',
61
+        children: {
62
+          title: '建设方案',
63
+          content:
64
+            '实现对园区农业实时环境数据、病虫害数据、苗情数据的可视化展示,智能设施的远程查看和管理。通过平台可设定环境数据预警值,系统自动预警,生成预警事件,通过手机短信及网页报警提示管理人员或工作人员进行管理和控制。同时可以将园区空气温度、空气湿度、二氧化碳浓度等环境监测数据以及环境预警事件信息以图表形式或曲线图形式形成统计报表,供管理人员做出适当的作物生长管理、分析与决策。',
65
+        },
66
+      },
67
+    ],
68
+    componentTitle: '大数据可视化平台',
69
+    textAlign: 'text-center',
70
+    componentsBg: 'bg-grey',
71
+  },
72
+  {
73
+    type: 'LeftMiddleRightImgTextPro',
74
+    listOrData: [
75
+      {
76
+        id: '1',
77
+        link: 'http://www.baidu.com',
78
+        thumb: '/public/image/agriculture/moistureContent.png',
79
+        title: '项目土壤墒情监测背景',
80
+        subTitle:
81
+          '土壤墙情监测系统可实现全天候不间断监测。现场远程监测设备自动采集士壤培情实时数据并利用GPRS无线网络实现数据远程传输:监控中心自动接收、自动存储各监测点的监测数据到数据库中。',
82
+      },
83
+      {
84
+        id: '2',
85
+        link: 'http://www.baidu.com',
86
+        thumb: '/public/image/agriculture/insect.png',
87
+        title: '智能虫情监测',
88
+        subTitle:
89
+          '自动虫情监测系统主要利用现代光、电、数控技术无线传输技术、互联网技术构建出一套害虫生态监测及预警系统该系统集害虫诱捕和拍照、环境信息采集数据传输、数据分析于一体,实现了害虫的诱集、分类统计、实时报传远程检测、虫害预警和防治指导的自动化、智能化。',
90
+      },
91
+      {
92
+        id: '3',
93
+        link: 'http://www.baidu.com',
94
+        thumb: '/public/image/agriculture/spore.png',
95
+        title: '智能孢子监测',
96
+        subTitle:
97
+          '智能抱子监测系统集成电子数码显微、数字图像处理与人工智能识别、GMS全球数据传输等现代高新技术,集病菌抱子自动捕捉、自动识别、自动计数、自动存储等功能于一体,实现了病菌抱子的连续动态监测,可以显著提升农作物病害综合防控管理水平。',
98
+      },
99
+      {
100
+        id: '4',
101
+        link: 'http://www.baidu.com',
102
+        thumb: '/public/image/agriculture/programme.png',
103
+        title: '灾情、苗情监测',
104
+        subTitle:
105
+          '通过对农田进行农业物联网传感器布局,对整个农种过程中的播种、施肥、采摘、包装等各个环节进行视频监控,树立标准化作业标准。',
106
+      },
107
+    ],
108
+    componentTitle: '”四情“监测系统',
109
+    componentsBg: 'bg-img',
110
+  },
111
+  {
112
+    type: 'VerticalNavigationContent',
113
+    list: [
114
+      {
115
+        id: '1',
116
+        tabName: '统计分析',
117
+        children: [
118
+          {
119
+            title: '水质分析',
120
+            content:
121
+              '管理部门可通过该系统及时掌握河流的降水、断面水位等流域水文状况,从而及时作出管理决策。水文监测预警系统在及时预警洪涝灾害、避免人员和经济损失方面发挥了重要作用。',
122
+          },
123
+          {
124
+            title: '气象分析',
125
+            content:
126
+              '通过对信息的采集/过滤/融合汇总/分析,以各类图表形式进行展现,为掌握大气环境动态信息,科学制定解决措施,实现灾害预警。',
127
+          },
128
+          {
129
+            title: '虫害分析',
130
+            content:
131
+              '物联网虫情测报灯是推出的新一代害虫自动测报系统,本系统主要利用现代光、电、数控技术、无线传输技术、互联网技术、构建出一套害虫生态监测及分析预警系统。',
132
+          },
133
+        ],
134
+      },
135
+    ],
136
+    componentTitle: '相关资源',
137
+    titleTextAlign: 'text-left',
138
+    textAlign: 'text-left',
139
+    componentsBg: 'bg-even'
140
+  },
141
+  {
142
+    type: 'Footer',
143
+    lang: 'zh'
144
+  }
145
+
146
+]

+ 144
- 114
src/data/zh/bank.js Parādīt failu

@@ -1,44 +1,57 @@
1
-export default {
2
-  sNav: [
3
-    '场景化解决方案',
4
-    '场景化解决方案',
5
-    '我们如何帮助客户成功',
6
-    '新闻资讯',
7
-    '相关资源',
8
-  ],
9
-  imgProData: {
10
-    url: '//e.huawei.com/-/mediae/images/industries/finance/banner-pc-0401.jpg',
11
-    title: '银行业务',
12
-    content: '银行业务银行业务',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: [
5
+      '场景化解决方案',
6
+      '场景化解决方案',
7
+      '我们如何帮助客户成功',
8
+      '新闻资讯',
9
+      '相关资源',
10
+    ],
13 11
   },
14
-  informationList: [
15
-    {
16
-      id: '1',
17
-      link: 'http://www.baidu.com',
18
-      thumb:
19
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
20
-      title: '银行业务',
21
-      subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
22
-    },
23
-    {
24
-      id: '2',
25
-      link: 'http://www.baidu.com',
26
-      thumb:
27
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
12
+  {
13
+    type: 'ImgPro',
14
+    listOrData: {
15
+      url: '//e.huawei.com/-/mediae/images/industries/finance/banner-pc-0401.jpg',
28 16
       title: '银行业务',
29
-      subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
17
+      content: '银行业务银行业务',
30 18
     },
31
-    {
32
-      id: '3',
33
-      link: 'http://www.baidu.com',
34
-      thumb:
35
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
36
-      title: '银行业务',
37
-      subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
38
-    },
39
-  ],
40
-  carouselList: [
41
-    [
19
+  },
20
+  {
21
+    type: 'LeftMiddleRightImgTextPro',
22
+    listOrData: [
23
+      {
24
+        id: '1',
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: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
30
+      },
31
+      {
32
+        id: '2',
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: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
38
+      },
39
+      {
40
+        id: '3',
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: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
46
+      },
47
+    ],
48
+    componentTitle: '场景化解决方案',
49
+    componentsBg: 'bg-img',
50
+    white: 'white',
51
+  },
52
+  {
53
+    type: 'Carousel',
54
+    list: [
42 55
       [
43 56
         {
44 57
           id: '1',
@@ -51,8 +64,6 @@ export default {
51 64
           },
52 65
         },
53 66
       ],
54
-    ],
55
-    [
56 67
       [
57 68
         {
58 69
           id: '2',
@@ -64,78 +75,97 @@ export default {
64 75
               '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
65 76
           },
66 77
         },
67
-      ],
78
+      ]
68 79
     ],
69
-  ],
70
-  carouselList2: [
71
-    {
72
-      id: '1',
73
-      link: 'http://www.baidu.com',
74
-      thumb:
75
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
76
-      title: '银行业务',
77
-      subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
78
-    },
79
-    {
80
-      id: '2',
81
-      link: 'http://www.baidu.com',
82
-      thumb:
83
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
84
-      title: '银行业务',
85
-      subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
86
-    },
87
-    {
88
-      id: '3',
89
-      link: 'http://www.baidu.com',
90
-      thumb:
91
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
92
-      title: '银行业务',
93
-      subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
94
-    },
95
-  ],
96
-  verticalNavigationContentList: [
97
-    {
98
-      id: '1',
99
-      tabName: '白皮书',
100
-      children: [
101
-        {
102
-          title:
103
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
104
-        },
105
-        {
106
-          title:
107
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
108
-        },
109
-        {
110
-          title:
111
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
112
-        },
113
-        {
114
-          title:
115
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
116
-        },
117
-        {
118
-          title:
119
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
120
-        },
121
-        {
122
-          title:
123
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
124
-        },
125
-      ],
126
-    },
127
-    {
128
-      id: '2',
129
-      tabName: '彩页',
130
-      children: [
131
-        {
132
-          title: '银行业务银行业务银行业务银行业务',
133
-        },
134
-        {
135
-          title:
136
-            '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
137
-        },
138
-      ],
139
-    },
140
-  ]
141
-}
80
+    componentTitle: '我们如何帮助客户成功',
81
+    line: '0',
82
+    componentsBg: 'bg-grey',
83
+  },
84
+  {
85
+    type: 'LeftMiddleRightImgTextPro',
86
+    listOrData: [
87
+      {
88
+        id: '1',
89
+        link: 'http://www.baidu.com',
90
+        thumb:
91
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
92
+        title: '银行业务',
93
+        subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
94
+      },
95
+      {
96
+        id: '2',
97
+        link: 'http://www.baidu.com',
98
+        thumb:
99
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
100
+        title: '银行业务',
101
+        subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
102
+      },
103
+      {
104
+        id: '3',
105
+        link: 'http://www.baidu.com',
106
+        thumb:
107
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
108
+        title: '银行业务',
109
+        subTitle: '银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
110
+      },
111
+    ],
112
+    componentTitle: '新闻资讯',
113
+    componentsBg: 'bg-img',
114
+  },
115
+  {
116
+    type: 'VerticalNavigationContent',
117
+    list: [
118
+      {
119
+        id: '1',
120
+        tabName: '白皮书',
121
+        children: [
122
+          {
123
+            title:
124
+              '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
125
+          },
126
+          {
127
+            title:
128
+              '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
129
+          },
130
+          {
131
+            title:
132
+              '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
133
+          },
134
+          {
135
+            title:
136
+              '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
137
+          },
138
+          {
139
+            title:
140
+              '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
141
+          },
142
+          {
143
+            title:
144
+              '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
145
+          },
146
+        ],
147
+      },
148
+      {
149
+        id: '2',
150
+        tabName: '彩页',
151
+        children: [
152
+          {
153
+            title: '银行业务银行业务银行业务银行业务',
154
+          },
155
+          {
156
+            title:
157
+              '银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务银行业务',
158
+          },
159
+        ],
160
+      },
161
+    ],
162
+    componentTitle: '相关资源',
163
+    titleTextAlign: 'text-left',
164
+    textAlign: 'text-left',
165
+    componentsBg: 'bg-even',
166
+  },
167
+  {
168
+    type: 'Footer',
169
+    lang: 'zh'
170
+  }
171
+]

+ 273
- 186
src/data/zh/building.js Parādīt failu

@@ -1,192 +1,279 @@
1
-export default {
2
-  sNav: [
3
-    '智慧通行',
4
-    '智能识别便捷通行',
5
-    '访客授权快捷登记',
6
-    '通行记录线上管理',
7
-    '智慧识别便捷通行',
8
-    '相关资源',
9
-  ],
10
-  imgProData1: {
11
-    url: '//e.huawei.com/-/mediae/images/solutions/campus/campus/banner-pc.jpg',
12
-    title: '智慧楼宇',
13
-    content: '楼宇智能化',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: [
5
+      '智慧通行',
6
+      '智能识别便捷通行',
7
+      '访客授权快捷登记',
8
+      '通行记录线上管理',
9
+      '智慧识别便捷通行',
10
+      '相关资源',
11
+    ],
14 12
   },
15
-  informationList2: [
16
-    {
17
-      id: '1',
18
-      link: 'http://www.baidu.com',
19
-      thumb: '/public/image/building/control.png',
20
-      title: '远程控制',
21
-      subTitle:
22
-        '支持远程控制,通行人员可以通过小程序或PC后台进行远程开关门操作。',
13
+  {
14
+    type: 'ImgPro',
15
+    listOrData: {
16
+      url: '//e.huawei.com/-/mediae/images/solutions/campus/campus/banner-pc.jpg',
17
+      title: '智慧楼宇',
18
+      content: '楼宇智能化',
23 19
     },
24
-    {
25
-      id: '2',
26
-      link: 'http://www.baidu.com',
27
-      thumb: '/public/image/building/identify.png',
28
-      title: '智能识别',
29
-      subTitle:
30
-        '采用先进的生物识别技术,如指纹识别、人脸识别等,实现快速、准确的身份识别。',
31
-    },
32
-    {
33
-      id: '3',
34
-      link: 'http://www.baidu.com',
35
-      thumb: '/public/image/building/mode.png',
36
-      title: '多种开门方式',
37
-      subTitle:
38
-        '支持多种开门方式,如密码、二维码、远程开门等,满足不同场景和需求。',
39
-    },
40
-    {
41
-      id: '4',
42
-      link: 'http://www.baidu.com',
43
-      thumb: '/public/image/building/monitor.png',
44
-      title: '实时监控',
45
-      subTitle:
46
-        '具备实时监控功能,可以实时记录门禁的开关状态、通行记录等信息,方便管理员管理和查询。',
47
-    },
48
-  ],
49
-  carouselList4: [
50
-    {
51
-      id: '1',
52
-      children: [
53
-        {
54
-          title: '信息录入',
55
-          content:
56
-            '楼宇内成员邀请:成员通过访客登记系统录入访客信息,访客即可收到推送提醒,可查看通行凭证并通行授权门禁;访客自助申请:访客扫码进入小程序,录入信息登记,由受访人审核确认后,即可查看通行凭证并通行授权门禁。',
57
-          url: '/public/building/message.png',
58
-        },
59
-      ],
60
-    },
61
-    {
62
-      id: '2',
63
-      children: [
64
-        {
65
-          title: '身份验证',
66
-          content:
67
-            '线下信息验证:访客向楼宇前台出示通行凭证,前台审核后即可通行;自主通行:访客使用线上通行凭证,通过扫码、人脸识别等方式进行自主通行。',
68
-          url: '/public/building/identity.png',
69
-        },
70
-      ],
71
-    },
72
-    {
73
-      id: '3',
74
-      children: [
75
-        {
76
-          title: '实时通知',
77
-          content:
78
-            '访客进入楼宇,系统自动通知受访者或管理人员。平台记录并跟踪访客停留时间。若逾期,系统通知相关人员进行处理。',
79
-          url: '/public/building/notice.png',
80
-        },
81
-      ],
82
-    },
83
-  ],
84
-  carouselList5: [
85
-    {
86
-      id: '1',
87
-      children: [
88
-        {
89
-          title: '出入记录',
90
-          content:
91
-            '系统自动记录人员的出入时间、地点和目的,并生成详细的通行记录,可供后续查询和分析。',
92
-          url: '/public/building/pass.png',
93
-        },
94
-      ],
95
-    },
96
-    {
97
-      id: '2',
98
-      children: [
99
-        {
100
-          title: '实时监控',
101
-          content:
102
-            '管理员可以通过系统实时监控人员的出入情况,查看实时数据和警报信息。',
103
-          url: '/public/building/monitor.png',
104
-        },
105
-      ],
106
-    },
107
-    {
108
-      id: '3',
109
-      children: [
110
-        {
111
-          title: '报表统计',
112
-          content:
113
-            '支持生成通行报表和统计图表,帮助管理者全面了解人员通行情况和趋势。',
114
-          url: '/public/building/statistics.png',
115
-        },
116
-      ],
117
-    },
118
-  ],
119
-  imgProData2: {
120
-    url: '/public/image/building/pointPosition.png',
121
-    title: '智能门禁点位',
122
-    content:
123
-      '在主要出入口、核心办公区、机房控制室等位置,安装智能门禁设备,支持刷卡、刷脸、扫码等形式通行,一方面避免外来人员随意进入保障整体安全,另一方面对根据员工属性进行内部通行管理。',
124 20
   },
125
-  imgProData3: {
126
-    url: '/public/image/building/pointPosition.png',
127
-    title: '智能门禁点位',
128
-    content:
129
-      '在主要出入口、核心办公区、机房控制室等位置,安装智能门禁设备,支持刷卡、刷脸、扫码等形式通行,一方面避免外来人员随意进入保障整体安全,另一方面对根据员工属性进行内部通行管理。',
21
+  {
22
+    type: 'LeftMiddleRightText',
23
+    listOrData: [
24
+      {
25
+        id: '1',
26
+        children: [
27
+          {
28
+            title: '信息录入',
29
+            content:
30
+              '楼宇内成员邀请:成员通过访客登记系统录入访客信息,访客即可收到推送提醒,可查看通行凭证并通行授权门禁;访客自助申请:访客扫码进入小程序,录入信息登记,由受访人审核确认后,即可查看通行凭证并通行授权门禁。',
31
+            url: '/public/building/message.png',
32
+          },
33
+        ],
34
+      },
35
+      {
36
+        id: '2',
37
+        children: [
38
+          {
39
+            title: '身份验证',
40
+            content:
41
+              '线下信息验证:访客向楼宇前台出示通行凭证,前台审核后即可通行;自主通行:访客使用线上通行凭证,通过扫码、人脸识别等方式进行自主通行。',
42
+            url: '/public/building/identity.png',
43
+          },
44
+        ],
45
+      },
46
+      {
47
+        id: '3',
48
+        children: [
49
+          {
50
+            title: '实时通知',
51
+            content:
52
+              '访客进入楼宇,系统自动通知受访者或管理人员。平台记录并跟踪访客停留时间。若逾期,系统通知相关人员进行处理。',
53
+            url: '/public/building/notice.png',
54
+          },
55
+        ],
56
+      },
57
+    ],
58
+    componentTitle: '智慧通行',
59
+    titleTextAlign: 'text-end',
60
+    textAlign: 'text-end',
61
+    componentsBg: 'bg-grey',
130 62
   },
131
-  informationList3: [
132
-    {
133
-      id: '1',
134
-      link: 'http://www.baidu.com',
135
-      thumb: '/public/image/building/monitoring2.png',
136
-      title: '实时监控',
137
-      subTitle:
138
-        '系统汇集楼宇内全部高清摄像头图像,实时监测各个监控区域状态,支持按条件和点位筛选查看。',
139
-    },
140
-    {
141
-      id: '2',
142
-      link: 'http://www.baidu.com',
143
-      thumb: '/public/image/building/access.png',
144
-      title: '远程访问',
145
-      subTitle:
146
-        '管理员可以通过手机、电脑等终端远程访问监控系统,随时随地查看实时监控画面和监测数据,保持对监控区域的掌控。',
147
-    },
148
-    {
149
-      id: '3',
150
-      link: 'http://www.baidu.com',
151
-      thumb: '/public/image/building/playback.png',
152
-      title: '录像回放',
153
-      subTitle:
154
-        '系统支持对监控录像进行存储和回放,管理员可以根据需要查看历史监控记录,了解过去一段时间内的情况。',
155
-    },
156
-  ],
157
-  list2: [
158
-    {
159
-      id: '1',
160
-      tabName: '智慧安防',
161
-      children: [
162
-        {
163
-          title:
164
-            '安全监视安全监视安全监视安全监视安全监视安全监视安全监视安全监视安全监视安全监视',
165
-        },
166
-        {
167
-          title:
168
-            '智能监测智能监测智能监测智能监测智能监测智能监测智能监测智能监测智能监测智能监测',
169
-        },
170
-        {
171
-          title:
172
-            '日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检',
173
-        },
174
-      ],
63
+  {
64
+    type: 'LeftMiddleRightImgTextPro',
65
+    listOrData: [
66
+      {
67
+        id: '1',
68
+        link: 'http://www.baidu.com',
69
+        thumb: '/public/image/building/control.png',
70
+        title: '远程控制',
71
+        subTitle:
72
+          '支持远程控制,通行人员可以通过小程序或PC后台进行远程开关门操作。',
73
+      },
74
+      {
75
+        id: '2',
76
+        link: 'http://www.baidu.com',
77
+        thumb: '/public/image/building/identify.png',
78
+        title: '智能识别',
79
+        subTitle:
80
+          '采用先进的生物识别技术,如指纹识别、人脸识别等,实现快速、准确的身份识别。',
81
+      },
82
+      {
83
+        id: '3',
84
+        link: 'http://www.baidu.com',
85
+        thumb: '/public/image/building/mode.png',
86
+        title: '多种开门方式',
87
+        subTitle:
88
+          '支持多种开门方式,如密码、二维码、远程开门等,满足不同场景和需求。',
89
+      },
90
+      {
91
+        id: '4',
92
+        link: 'http://www.baidu.com',
93
+        thumb: '/public/image/building/monitor.png',
94
+        title: '实时监控',
95
+        subTitle:
96
+          '具备实时监控功能,可以实时记录门禁的开关状态、通行记录等信息,方便管理员管理和查询。',
97
+      },
98
+    ],
99
+    hoverBackColor: 'white'
100
+  },
101
+  {
102
+    type: 'LeftMiddleRightText',
103
+    listOrData: [
104
+      {
105
+        id: '1',
106
+        children: [
107
+          {
108
+            title: '出入记录',
109
+            content:
110
+              '系统自动记录人员的出入时间、地点和目的,并生成详细的通行记录,可供后续查询和分析。',
111
+            url: '/public/building/pass.png',
112
+          },
113
+        ],
114
+      },
115
+      {
116
+        id: '2',
117
+        children: [
118
+          {
119
+            title: '实时监控',
120
+            content:
121
+              '管理员可以通过系统实时监控人员的出入情况,查看实时数据和警报信息。',
122
+            url: '/public/building/monitor.png',
123
+          },
124
+        ],
125
+      },
126
+      {
127
+        id: '3',
128
+        children: [
129
+          {
130
+            title: '报表统计',
131
+            content:
132
+              '支持生成通行报表和统计图表,帮助管理者全面了解人员通行情况和趋势。',
133
+            url: '/public/building/statistics.png',
134
+          },
135
+        ],
136
+      },
137
+    ],
138
+    componentTitle: '访客授权快捷登记',
139
+    titleTextAlign: 'text-end',
140
+    textAlign: 'text-end',
141
+    componentsBg: 'bg-grey',
142
+  },
143
+  {
144
+    type: 'LeftMiddleRightText',
145
+    listOrData: [
146
+      {
147
+        id: '1',
148
+        children: [
149
+          {
150
+            title: '出入记录',
151
+            content:
152
+              '系统自动记录人员的出入时间、地点和目的,并生成详细的通行记录,可供后续查询和分析。',
153
+            url: '/public/building/pass.png',
154
+          },
155
+        ],
156
+      },
157
+      {
158
+        id: '2',
159
+        children: [
160
+          {
161
+            title: '实时监控',
162
+            content:
163
+              '管理员可以通过系统实时监控人员的出入情况,查看实时数据和警报信息。',
164
+            url: '/public/building/monitor.png',
165
+          },
166
+        ],
167
+      },
168
+      {
169
+        id: '3',
170
+        children: [
171
+          {
172
+            title: '报表统计',
173
+            content:
174
+              '支持生成通行报表和统计图表,帮助管理者全面了解人员通行情况和趋势。',
175
+            url: '/public/building/statistics.png',
176
+          },
177
+        ],
178
+      },
179
+    ],
180
+    componentTitle: '通行记录线上管理',
181
+    titleTextAlign: 'text-end',
182
+    textAlign: 'text-end',
183
+  },
184
+  {
185
+    type: 'ImgPro',
186
+    listOrData: {
187
+      url: '/public/image/building/pointPosition.png',
188
+      title: '智能门禁点位',
189
+      content:
190
+        '在主要出入口、核心办公区、机房控制室等位置,安装智能门禁设备,支持刷卡、刷脸、扫码等形式通行,一方面避免外来人员随意进入保障整体安全,另一方面对根据员工属性进行内部通行管理。',
175 191
     },
176
-    {
177
-      id: '2',
178
-      tabName: '车辆违停管理',
179
-      children: [
180
-        {
181
-          title: '电动车入楼检测电动车入楼检测',
182
-        },
183
-        {
184
-          title: '声光警戒声光警戒',
185
-        },
186
-        {
187
-          title: '平台弹窗报警平台弹窗报警',
188
-        },
189
-      ],
192
+  },
193
+  {
194
+    type: 'LeftMiddleRightImgTextPro',
195
+    componentTitle: '智慧识别便捷通行',
196
+    listOrData: [
197
+      {
198
+        id: '1',
199
+        link: 'http://www.baidu.com',
200
+        thumb: '/public/image/building/monitoring2.png',
201
+        title: '实时监控',
202
+        subTitle:
203
+          '系统汇集楼宇内全部高清摄像头图像,实时监测各个监控区域状态,支持按条件和点位筛选查看。',
204
+      },
205
+      {
206
+        id: '2',
207
+        link: 'http://www.baidu.com',
208
+        thumb: '/public/image/building/access.png',
209
+        title: '远程访问',
210
+        subTitle:
211
+          '管理员可以通过手机、电脑等终端远程访问监控系统,随时随地查看实时监控画面和监测数据,保持对监控区域的掌控。',
212
+      },
213
+      {
214
+        id: '3',
215
+        link: 'http://www.baidu.com',
216
+        thumb: '/public/image/building/playback.png',
217
+        title: '录像回放',
218
+        subTitle:
219
+          '系统支持对监控录像进行存储和回放,管理员可以根据需要查看历史监控记录,了解过去一段时间内的情况。',
220
+      },
221
+    ],
222
+  },
223
+  {
224
+    type: 'ImgPro',
225
+    listOrData: {
226
+      url: '/public/image/building/pointPosition.png',
227
+      title: '智能门禁点位',
228
+      content:
229
+        '在主要出入口、核心办公区、机房控制室等位置,安装智能门禁设备,支持刷卡、刷脸、扫码等形式通行,一方面避免外来人员随意进入保障整体安全,另一方面对根据员工属性进行内部通行管理。',
190 230
     },
191
-  ]
192
-}
231
+  },
232
+  {
233
+    type: 'VerticalNavigationContent',
234
+    list: [
235
+      {
236
+        id: '1',
237
+        tabName: '智慧安防',
238
+        children: [
239
+          {
240
+            title:
241
+              '安全监视安全监视安全监视安全监视安全监视安全监视安全监视安全监视安全监视安全监视',
242
+          },
243
+          {
244
+            title:
245
+              '智能监测智能监测智能监测智能监测智能监测智能监测智能监测智能监测智能监测智能监测',
246
+          },
247
+          {
248
+            title:
249
+              '日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检日常巡检',
250
+          },
251
+        ],
252
+      },
253
+      {
254
+        id: '2',
255
+        tabName: '车辆违停管理',
256
+        children: [
257
+          {
258
+            title: '电动车入楼检测电动车入楼检测',
259
+          },
260
+          {
261
+            title: '声光警戒声光警戒',
262
+          },
263
+          {
264
+            title: '平台弹窗报警平台弹窗报警',
265
+          },
266
+        ],
267
+      },
268
+    ],
269
+    componentTitle: '相关资源',
270
+    titleTextAlign: 'text-left',
271
+    textAlign: 'text-left',
272
+    componentsBg: 'bg-even',
273
+  },
274
+  {
275
+    type: 'Footer',
276
+    lang: 'zh'
277
+  }
278
+
279
+]

+ 88
- 65
src/data/zh/civilizedCity.js Parādīt failu

@@ -1,69 +1,92 @@
1
-export default {
2
-  sNav: ['场景化解决方案', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/solutions/enterprise-wireless/industry-wireless/industry-wireless-banner-pc1.jpg',
5
-    title: '文明创城',
6
-    content: '文明创城文明创城',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['场景化解决方案', '相关资源'],
7 5
   },
8
-  leftImgRightTextList: [
9
-    {
10
-      id: '1',
11
-      url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
12
-      children: {
13
-        title: '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
14
-        content:
15
-          '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
16
-      },
17
-    },
18
-    {
19
-      id: '2',
20
-      url: 'https://e.huawei.com/-/mediae/images/case-studies/solutions/campus/2023/chongqing-lianglu-guoyuan-port/banner-bequoted.jpg',
21
-      children: {
22
-        title: '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
23
-        content:
24
-          '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
25
-      },
26
-    },
27
-  ],
28
-  list2: [
29
-    {
30
-      id: '1',
31
-      tabName: '彩页',
32
-      children: [
33
-        {
34
-          title: '文明创城文明创城文明创城文明创城文明创城文明创城',
35
-        },
36
-        {
37
-          title: '文明创城文明创城文明创城文明创城文明创城',
38
-        },
39
-        {
40
-          title: '文明创城文明创城文明创城文明创城文明创城文明创城',
41
-        },
42
-        {
43
-          title:
44
-            '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
45
-        },
46
-        {
47
-          title:
48
-            '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
49
-        },
50
-        {
51
-          title:
52
-            '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
53
-        },
54
-      ],
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/solutions/enterprise-wireless/industry-wireless/industry-wireless-banner-pc1.jpg',
10
+      title: '文明创城',
11
+      content: '文明创城文明创城',
55 12
     },
56
-    {
57
-      id: '2',
58
-      tabName: '白皮书',
59
-      children: [
60
-        {
61
-          title: '文明创城文明创城文明创城文明创城文明创城',
13
+  },
14
+  {
15
+    type: 'LeftImgRightText',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
20
+        children: {
21
+          title: '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
22
+          content:
23
+            '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
62 24
         },
63
-        {
64
-          title: '文明创城文明创城文明创城文明创城',
25
+      },
26
+      {
27
+        id: '2',
28
+        url: 'https://e.huawei.com/-/mediae/images/case-studies/solutions/campus/2023/chongqing-lianglu-guoyuan-port/banner-bequoted.jpg',
29
+        children: {
30
+          title: '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
31
+          content:
32
+            '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
65 33
         },
66
-      ],
67
-    },
68
-  ]
69
-}
34
+      },
35
+    ],
36
+    componentTitle: '场景化解决方案',
37
+    textAlign: 'text-center',
38
+    componentsBg: 'bg-grey',
39
+  },
40
+  {
41
+    type: 'VerticalNavigationContent',
42
+    list: [
43
+      {
44
+        id: '1',
45
+        tabName: '彩页',
46
+        children: [
47
+          {
48
+            title: '文明创城文明创城文明创城文明创城文明创城文明创城',
49
+          },
50
+          {
51
+            title: '文明创城文明创城文明创城文明创城文明创城',
52
+          },
53
+          {
54
+            title: '文明创城文明创城文明创城文明创城文明创城文明创城',
55
+          },
56
+          {
57
+            title:
58
+              '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
59
+          },
60
+          {
61
+            title:
62
+              '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
63
+          },
64
+          {
65
+            title:
66
+              '文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城文明创城',
67
+          },
68
+        ],
69
+      },
70
+      {
71
+        id: '2',
72
+        tabName: '白皮书',
73
+        children: [
74
+          {
75
+            title: '文明创城文明创城文明创城文明创城文明创城',
76
+          },
77
+          {
78
+            title: '文明创城文明创城文明创城文明创城',
79
+          },
80
+        ],
81
+      },
82
+    ],
83
+    componentTitle: '相关资源',
84
+    titleTextAlign: 'text-left',
85
+    textAlign: 'text-left',
86
+    componentsBg: 'bg-even',
87
+  },
88
+  {
89
+    type: 'Footer',
90
+    lang: 'zh'
91
+  }
92
+]

+ 118
- 138
src/data/zh/community.js Parādīt failu

@@ -1,140 +1,120 @@
1
-export default {
2
-  sNav: ['社区目的', '客户需求程度', '相关产品'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/solutions/data-center/data-center-banner-pc.jpg',
5
-    title: '智慧社区',
6
-    content: '智慧社区有智慧',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['社区目的', '客户需求程度', '相关产品'],
7 5
   },
8
-  informationList: [
9
-    {
10
-      id: '1',
11
-      link: 'http://www.baidu.com',
12
-      thumb: '/public/image/community/satisfaction.png',
13
-      title: '提升用户满意度',
14
-      subTitle:
15
-        '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/solutions/data-center/data-center-banner-pc.jpg',
10
+      title: '智慧社区',
11
+      content: '智慧社区有智慧',
16 12
     },
17
-    {
18
-      id: '2',
19
-      link: 'http://www.baidu.com',
20
-      thumb: '/public/image/community/optimization.png',
21
-      title: '优化运营效率',
22
-      subTitle:
23
-        '利用智能化设备辅助人工,提升人员工作效率;基于数据实现人力等资源的优化调配',
24
-    },
25
-    {
26
-      id: '3',
27
-      link: 'http://www.baidu.com',
28
-      thumb: '/public/image/community/marketing.png',
29
-      title: '支撑精准营销',
30
-      subTitle:
31
-        '通过智能化设备收集客户数据,丰富客户画像;未来可基于社区客户画像,实现对于社区客户的精准营销',
32
-    },
33
-  ],
34
-  carouselList2: [
35
-    {
36
-      id: '1',
37
-      children: [
38
-        {
39
-          title: '安防需求',
40
-          content: '女性、有宠物或有未成年儿童的业主对智能门锁及安全摄像头需较高',
41
-          url: '/public/building/message.png',
42
-        },
43
-      ],
44
-    },
45
-    {
46
-      id: '2',
47
-      children: [
48
-        {
49
-          title: '节能经济需求',
50
-          content:
51
-            '消费者希望智能家居在能节约能源,这样就算智能家居本身价格较高也可以接受',
52
-          url: '/public/building/message.png',
53
-        },
54
-      ],
55
-    },
56
-    {
57
-      id: '3',
58
-      children: [
59
-        {
60
-          title: '生活便利需求',
61
-          content: '消费者希望智能家居能提升便利性',
62
-          url: '/public/building/message.png',
63
-        },
64
-      ],
65
-    },
66
-  ],
67
-  list2: [
68
-    {
69
-      id: '1',
70
-      tabName: '智慧家居',
71
-      children: [
72
-        {
73
-          title: '硬件',
74
-          content: '为优化客户体验,应以客户需求度较高的设备为主',
75
-        },
76
-        {
77
-          title: '控制系统',
78
-          content:
79
-            '开发语音中控,集成对于全屋智慧家居设备的语音控制,同时提供辅助客户端应用进行远程或备选控制同时提供辅助客户端应用进行远程或备选控制',
80
-        },
81
-        {
82
-          title: '合作模式',
83
-          content:
84
-            '成立银城智慧家居实验样板间,请各硬件供应商和系统集成商进行测试赛马',
85
-        },
86
-      ],
87
-    },
88
-    {
89
-      id: '2',
90
-      tabName: '智慧充电',
91
-      children: [
92
-        {
93
-          title: '智能寻桩',
94
-          content: '快速查询到身边的合适的充电设施',
95
-        },
96
-        {
97
-          title: '有效预约',
98
-          content: '高效的分配调度机制,确保预约能够成功保留',
99
-        },
100
-        {
101
-          title: '实时监控',
102
-          content: '充电电流、使用费用实时查询',
103
-        },
104
-        {
105
-          title: '高效分配',
106
-          content: '后台自动分配空闲可用充电桩',
107
-        },
108
-        {
109
-          title: '便捷支付',
110
-          content: '微信、支付宝支付轻松便捷',
111
-        },
112
-        {
113
-          title: '自动清算',
114
-          content: '自动判断、收费无需人工操作',
115
-        },
116
-      ],
117
-    },
118
-    {
119
-      id: '3',
120
-      tabName: '控制系统',
121
-      children: [
122
-        {
123
-          title: '手动遥控',
124
-          content:
125
-            '目前中国较为成熟的智慧公寓产品均以开关、面板或APP为主要控制方式',
126
-        },
127
-        {
128
-          title: '语音控制',
129
-          content:
130
-            '银城可切入更加便捷的语音家居领域,打造差异化品牌形象,实现弯道超车声控技术本身已较为稳定及成熟',
131
-        },
132
-        {
133
-          title: '自动控制',
134
-          content:
135
-            '通过人工智能实现对于用户需求的自动感知,并以此来控制智能家居是最为便捷的方式,也是银城的未来的发展方向',
136
-        },
137
-      ],
138
-    },
139
-  ]
140
-}
13
+  },
14
+  {
15
+    type: 'LeftMiddleRightImgTextPro',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        link: 'http://www.baidu.com',
20
+        thumb: '/public/image/community/satisfaction.png',
21
+        title: '提升用户满意度',
22
+        subTitle:
23
+          '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
24
+      },
25
+      {
26
+        id: '2',
27
+        link: 'http://www.baidu.com',
28
+        thumb: '/public/image/community/optimization.png',
29
+        title: '优化运营效率',
30
+        subTitle:
31
+          '利用智能化设备辅助人工,提升人员工作效率;基于数据实现人力等资源的优化调配',
32
+      },
33
+      {
34
+        id: '3',
35
+        link: 'http://www.baidu.com',
36
+        thumb: '/public/image/community/marketing.png',
37
+        title: '支撑精准营销',
38
+        subTitle:
39
+          '通过智能化设备收集客户数据,丰富客户画像;未来可基于社区客户画像,实现对于社区客户的精准营销',
40
+      },
41
+    ],
42
+    componentTitle: '社区目的',
43
+    componentsBg: 'bg-img',
44
+    hoverBackColor: 'white',
45
+  },
46
+  {
47
+    type: 'LeftMiddleRightText',
48
+    listOrData: [
49
+      {
50
+        id: '1',
51
+        children: [
52
+          {
53
+            title: '安防需求',
54
+            content: '女性、有宠物或有未成年儿童的业主对智能门锁及安全摄像头需较高',
55
+            url: '/public/building/message.png',
56
+          },
57
+        ],
58
+      },
59
+      {
60
+        id: '2',
61
+        children: [
62
+          {
63
+            title: '节能经济需求',
64
+            content:
65
+              '消费者希望智能家居在能节约能源,这样就算智能家居本身价格较高也可以接受',
66
+            url: '/public/building/message.png',
67
+          },
68
+        ],
69
+      },
70
+      {
71
+        id: '3',
72
+        children: [
73
+          {
74
+            title: '生活便利需求',
75
+            content: '消费者希望智能家居能提升便利性',
76
+            url: '/public/building/message.png',
77
+          },
78
+        ],
79
+      },
80
+    ],
81
+    componentTitle: '客户需求程度',
82
+    titleTextAlign: 'text-end',
83
+    textAlign: 'text-end',
84
+    componentsBg: 'bg-grey',
85
+  },
86
+  {
87
+    type: 'VerticalNavigationContent',
88
+    list: [
89
+      {
90
+        id: '1',
91
+        tabName: '实施步骤',
92
+        children: [
93
+          {
94
+            title: '完成SCRM&SCM基本功能',
95
+            content:
96
+              '搭建智慧展馆的架构基础,将数据化用户画像收集起来,为展馆数字化,智慧化做铺垫。',
97
+          },
98
+          {
99
+            title: '完成ESS展会业务系统&OSS运营支持系统展馆线上线下一体化体验',
100
+            content:
101
+              '通过运营平台给参观客户定制专属参观方案,联动馆内IOT物联网设备平台进行有效的互动,增加体验感的同时记录客户参展信息,为后续丰富用户画像做数据支撑基础。',
102
+          },
103
+          {
104
+            title: '数据看板及BI报表通过展前',
105
+            content:
106
+              '展中的数据收集,使用数据漏斗分析各个维度的用户需求,给出分析和商业跟进价值,做的一展一分析,数据可视化,为展后工作做指导,初步建成智慧展馆平台目标。',
107
+          },
108
+        ],
109
+      },
110
+    ],
111
+    componentTitle: '相关资源',
112
+    titleTextAlign: 'text-left',
113
+    textAlign: 'text-left',
114
+    componentsBg: 'bg-even',
115
+  },
116
+  {
117
+    type: 'Footer',
118
+    lang: 'zh'
119
+  }
120
+]

+ 78
- 51
src/data/zh/crm.js Parādīt failu

@@ -1,57 +1,84 @@
1
-export default {
2
-  sNav: ['服务产品', '成功案例', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/solutions/services/industry-integration/industry-integration-banner-pc.jpg',
5
-    title: 'CRM管理',
6
-    content: 'CRM管理CRM管理',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['服务产品', '成功案例', '相关资源'],
7 5
   },
8
-  informationList: [
9
-    {
10
-      id: '1',
11
-      link: 'http://www.baidu.com',
12
-      thumb:
13
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/solutions/services/industry-integration/industry-integration-banner-pc.jpg',
14 10
       title: 'CRM管理',
15
-      subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
11
+      content: 'CRM管理CRM管理',
16 12
     },
17
-    {
18
-      id: '2',
19
-      link: 'http://www.baidu.com',
20
-      thumb:
21
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
22
-      title: 'CRM管理',
23
-      subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
24
-    },
25
-    {
26
-      id: '3',
27
-      link: 'http://www.baidu.com',
28
-      thumb:
29
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
30
-      title: 'CRM管理',
31
-      subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
32
-    },
33
-  ],
34
-  leftImgRightTextList: [
35
-    {
36
-      id: '1',
37
-      url: 'https://e.huawei.com/-/mediae/images/solutions/computing/ascend-computing/ascend-computing-case-2.jpg',
38
-      children: {
13
+  },
14
+  {
15
+    type: 'LeftMiddleRightImgTextPro',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        link: 'http://www.baidu.com',
20
+        thumb:
21
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
39 22
         title: 'CRM管理',
40
-        content:
41
-          'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
23
+        subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
42 24
       },
43
-    },
44
-  ],
45
-  verticalNavigationContentList: [
46
-    {
47
-      id: '1',
48
-      tabName: '白皮书',
49
-      children: [
50
-        {
51
-          title:
52
-            'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
25
+      {
26
+        id: '2',
27
+        link: 'http://www.baidu.com',
28
+        thumb:
29
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
30
+        title: 'CRM管理',
31
+        subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
32
+      },
33
+      {
34
+        id: '3',
35
+        link: 'http://www.baidu.com',
36
+        thumb:
37
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
38
+        title: 'CRM管理',
39
+        subTitle: 'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
40
+      },
41
+    ],
42
+    componentTitle: '服务产品',
43
+    componentsBg: 'bg-img',
44
+  },
45
+  {
46
+    type: 'LeftImgRightText',
47
+    listOrData: [
48
+      {
49
+        id: '1',
50
+        url: 'https://e.huawei.com/-/mediae/images/solutions/computing/ascend-computing/ascend-computing-case-2.jpg',
51
+        children: {
52
+          title: 'CRM管理',
53
+          content:
54
+            'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
53 55
         },
54
-      ],
55
-    },
56
-  ]
57
-}
56
+      },
57
+    ],
58
+    componentTitle: '成功案例',
59
+    textAlign: 'text-center',
60
+  },
61
+  {
62
+    type: 'VerticalNavigationContent',
63
+    list: [
64
+      {
65
+        id: '1',
66
+        tabName: '白皮书',
67
+        children: [
68
+          {
69
+            title:
70
+              'CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理CRM管理',
71
+          },
72
+        ],
73
+      },
74
+    ],
75
+    componentTitle: '相关资源',
76
+    titleTextAlign: 'text-left',
77
+    textAlign: 'text-left',
78
+    componentsBg: 'bg-even',
79
+  },
80
+  {
81
+    type: 'Footer',
82
+    lang: 'zh'
83
+  }
84
+]

+ 131
- 103
src/data/zh/custom.js Parādīt failu

@@ -1,64 +1,80 @@
1
-export default {
2
-  sNav: ['场景化解决方案', '相关产品', '成功案例', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/EBG/Images/SolutionV2/enterprise-network/sd-wan/cloudwan/cloud-wan-banner-pc.jpg',
5
-    title: '定制开发',
6
-    content: '定制开发定制开发',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['场景化解决方案', '相关产品', '成功案例', '相关资源'],
7 5
   },
8
-  informationList: [
9
-    {
10
-      id: '1',
11
-      link: 'http://www.baidu.com',
12
-      thumb:
13
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/EBG/Images/SolutionV2/enterprise-network/sd-wan/cloudwan/cloud-wan-banner-pc.jpg',
14 10
       title: '定制开发',
15
-      subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
11
+      content: '定制开发定制开发',
16 12
     },
17
-    {
18
-      id: '2',
19
-      link: 'http://www.baidu.com',
20
-      thumb:
21
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
22
-      title: '定制开发',
23
-      subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
24
-    },
25
-    {
26
-      id: '3',
27
-      link: 'http://www.baidu.com',
28
-      thumb:
29
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
30
-      title: '定制开发',
31
-      subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
32
-    },
33
-  ],
34
-  carouselList: [
35
-    {
36
-      id: '1',
37
-      link: 'http://www.baidu.com',
38
-      thumb:
39
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
40
-      title: '定制开发',
41
-      subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
42
-    },
43
-    {
44
-      id: '2',
45
-      link: 'http://www.baidu.com',
46
-      thumb:
47
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
48
-      title: '定制开发',
49
-      subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
50
-    },
51
-    {
52
-      id: '3',
53
-      link: 'http://www.baidu.com',
54
-      thumb:
55
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
56
-      title: '定制开发',
57
-      subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
58
-    },
59
-  ],
60
-  carouselList2: [
61
-    [
13
+  },
14
+  {
15
+    type: 'LeftMiddleRightImgTextPro',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        link: 'http://www.baidu.com',
20
+        thumb:
21
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
22
+        title: '定制开发',
23
+        subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
24
+      },
25
+      {
26
+        id: '2',
27
+        link: 'http://www.baidu.com',
28
+        thumb:
29
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
30
+        title: '定制开发',
31
+        subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
32
+      },
33
+      {
34
+        id: '3',
35
+        link: 'http://www.baidu.com',
36
+        thumb:
37
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
38
+        title: '定制开发',
39
+        subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
40
+      },
41
+    ],
42
+    componentTitle: '场景化解决方案',
43
+    hoverBackColor: 'white',
44
+  },
45
+  {
46
+    type: 'LeftMiddleRightImgTextPro',
47
+    listOrData: [
48
+      {
49
+        id: '1',
50
+        link: 'http://www.baidu.com',
51
+        thumb:
52
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
53
+        title: '定制开发',
54
+        subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
55
+      },
56
+      {
57
+        id: '2',
58
+        link: 'http://www.baidu.com',
59
+        thumb:
60
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
61
+        title: '定制开发',
62
+        subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
63
+      },
64
+      {
65
+        id: '3',
66
+        link: 'http://www.baidu.com',
67
+        thumb:
68
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
69
+        title: '定制开发',
70
+        subTitle: '定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
71
+      },
72
+    ],
73
+    componentTitle: '相关产品'
74
+  },
75
+  {
76
+    type: 'Carousel',
77
+    list: [
62 78
       [
63 79
         {
64 80
           id: '1',
@@ -71,8 +87,6 @@ export default {
71 87
           },
72 88
         },
73 89
       ],
74
-    ],
75
-    [
76 90
       [
77 91
         {
78 92
           id: '2',
@@ -86,46 +100,60 @@ export default {
86 100
         },
87 101
       ],
88 102
     ],
89
-  ],
90
-  list2: [
91
-    {
92
-      id: '1',
93
-      tabName: '彩页',
94
-      children: [
95
-        {
96
-          title: '定制开发定制开发定制开发定制开发定制开发定制开发',
97
-        },
98
-        {
99
-          title: '定制开发定制开发定制开发定制开发定制开发',
100
-        },
101
-        {
102
-          title: '定制开发定制开发定制开发定制开发定制开发定制开发',
103
-        },
104
-        {
105
-          title:
106
-            '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
107
-        },
108
-        {
109
-          title:
110
-            '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
111
-        },
112
-        {
113
-          title:
114
-            '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
115
-        },
116
-      ],
117
-    },
118
-    {
119
-      id: '2',
120
-      tabName: '白皮书',
121
-      children: [
122
-        {
123
-          title: '定制开发定制开发定制开发定制开发定制开发',
124
-        },
125
-        {
126
-          title: '定制开发定制开发定制开发定制开发',
127
-        },
128
-      ],
129
-    },
130
-  ]
131
-}
103
+    componentTitle: '成功案例',
104
+    line: '0',
105
+    componentsBg: 'bg-img',
106
+  },
107
+  {
108
+    type: 'VerticalNavigationContent',
109
+    list: [
110
+      {
111
+        id: '1',
112
+        tabName: '彩页',
113
+        children: [
114
+          {
115
+            title: '定制开发定制开发定制开发定制开发定制开发定制开发',
116
+          },
117
+          {
118
+            title: '定制开发定制开发定制开发定制开发定制开发',
119
+          },
120
+          {
121
+            title: '定制开发定制开发定制开发定制开发定制开发定制开发',
122
+          },
123
+          {
124
+            title:
125
+              '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
126
+          },
127
+          {
128
+            title:
129
+              '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
130
+          },
131
+          {
132
+            title:
133
+              '定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发定制开发',
134
+          },
135
+        ],
136
+      },
137
+      {
138
+        id: '2',
139
+        tabName: '白皮书',
140
+        children: [
141
+          {
142
+            title: '定制开发定制开发定制开发定制开发定制开发',
143
+          },
144
+          {
145
+            title: '定制开发定制开发定制开发定制开发',
146
+          },
147
+        ],
148
+      },
149
+    ],
150
+    componentTitle: '相关资源',
151
+    titleTextAlign: 'text-left',
152
+    textAlign: 'text-left',
153
+    componentsBg: 'bg-even',
154
+  },
155
+  {
156
+    type: 'Footer',
157
+    lang: 'zh'
158
+  }
159
+]

+ 207
- 170
src/data/zh/erp.js Parādīt failu

@@ -1,76 +1,94 @@
1
-export default {
2
-  sNav: [
3
-    '选择云致的理由',
4
-    '场景化解决方案',
5
-    '我们如何帮助客户成功',
6
-    '配套产品',
7
-    '相关资源',
8
-  ],
9
-  imgProData: {
10
-    url: '//e.huawei.com/-/mediae/images/products/storage/all-flash-storage/all-flash-storage-banner-pc_001.jpg',
11
-    title: 'ERP',
12
-    content: 'ERPERP',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: [
5
+      '选择云致的理由',
6
+      '场景化解决方案',
7
+      '我们如何帮助客户成功',
8
+      '配套产品',
9
+      '相关资源',
10
+    ],
13 11
   },
14
-  leftImgRightTextList: [
15
-    {
16
-      id: '1',
17
-      url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
18
-      children: {
19
-        title: 'ERPERPERPERPERPERPERPERP',
20
-        content:
21
-          'ERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERP',
22
-      },
23
-    },
24
-    {
25
-      id: '2',
26
-      url: 'https://e.huawei.com/-/mediae/images/case-studies/solutions/campus/2023/chongqing-lianglu-guoyuan-port/banner-bequoted.jpg',
27
-      children: {
28
-        title: 'ERPERPERPERPERPERPERPERP',
29
-        content:
30
-          'ERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERP',
31
-      },
32
-    },
33
-  ],
34
-  informationList: [
35
-    {
36
-      id: '1',
37
-      link: 'http://www.baidu.com',
38
-      thumb:
39
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
40
-      title: 'ERP',
41
-      subTitle: 'ERPERPERPERPERPERPERP',
42
-    },
43
-    {
44
-      id: '2',
45
-      link: 'http://www.baidu.com',
46
-      thumb:
47
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
48
-      title: 'ERP',
49
-      subTitle: 'ERPERPERPERPERPERPERP',
50
-    },
51
-    {
52
-      id: '3',
53
-      link: 'http://www.baidu.com',
54
-      thumb:
55
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
12
+  {
13
+    type: 'ImgPro',
14
+    listOrData: {
15
+      url: '//e.huawei.com/-/mediae/images/products/storage/all-flash-storage/all-flash-storage-banner-pc_001.jpg',
56 16
       title: 'ERP',
57
-      subTitle: 'ERPERPERPERPERPERPERP',
17
+      content: 'ERPERP',
58 18
     },
59
-  ],
60
-  carouselList: [
61
-    [
62
-      [
63
-        {
64
-          id: '1',
65
-          url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
66
-          children: {
67
-            title: 'ERP',
68
-            content: 'ERPERPERPERPERPERPERPERP',
69
-          },
19
+    componentTitle: '选择云致的理由',
20
+    textAlign: 'text-center',
21
+    componentsBg: 'bg-grey',
22
+  },
23
+  {
24
+    type: 'LeftImgRightText',
25
+    listOrData: [
26
+      {
27
+        id: '1',
28
+        url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
29
+        children: {
30
+          title: 'ERPERPERPERPERPERPERPERP',
31
+          content:
32
+            'ERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERP',
70 33
         },
71
-      ],
34
+      },
35
+      {
36
+        id: '2',
37
+        url: 'https://e.huawei.com/-/mediae/images/case-studies/solutions/campus/2023/chongqing-lianglu-guoyuan-port/banner-bequoted.jpg',
38
+        children: {
39
+          title: 'ERPERPERPERPERPERPERPERP',
40
+          content:
41
+            'ERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERPERP',
42
+        },
43
+      },
44
+    ],
45
+    componentTitle: '选择云致的理由',
46
+    textAlign: 'text-center',
47
+    componentsBg: 'bg-grey',
48
+  },
49
+  {
50
+    type: 'LeftMiddleRightImgTextPro',
51
+    listOrData: [
52
+      {
53
+        id: '1',
54
+        link: 'http://www.baidu.com',
55
+        thumb:
56
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
57
+        title: 'ERP',
58
+        subTitle: 'ERPERPERPERPERPERPERP',
59
+      },
60
+      {
61
+        id: '2',
62
+        link: 'http://www.baidu.com',
63
+        thumb:
64
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
65
+        title: 'ERP',
66
+        subTitle: 'ERPERPERPERPERPERPERP',
67
+      },
68
+      {
69
+        id: '3',
70
+        link: 'http://www.baidu.com',
71
+        thumb:
72
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
73
+        title: 'ERP',
74
+        subTitle: 'ERPERPERPERPERPERPERP',
75
+      },
72 76
     ],
73
-    [
77
+    componentsBg: 'bg-img',
78
+    hoverBackColor: 'white',
79
+  },
80
+  {
81
+    type: 'Carousel',
82
+    list: [
83
+      [{
84
+        id: '1',
85
+        url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
86
+        children: {
87
+          title: 'ERP',
88
+          content: 'ERPERPERPERPERPERPERPERP',
89
+        },
90
+      },
91
+      ],
74 92
       [
75 93
         {
76 94
           id: '2',
@@ -80,106 +98,125 @@ export default {
80 98
             content: 'ERPERPERPERPERPERPERPERP',
81 99
           },
82 100
         },
83
-      ],
101
+      ]
84 102
     ],
85
-  ],
86
-  informationList2: [
87
-    {
88
-      id: '1',
89
-      link: 'http://www.baidu.com',
90
-      thumb:
91
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
92
-      title: 'ERP',
93
-      subTitle: 'ERPERPERPERPERPERPERP',
94
-    },
95
-    {
96
-      id: '2',
97
-      link: 'http://www.baidu.com',
98
-      thumb:
99
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
100
-      title: 'ERP',
101
-      subTitle: 'ERPERPERPERPERPERPERP',
102
-    },
103
-    {
104
-      id: '3',
105
-      link: 'http://www.baidu.com',
106
-      thumb:
107
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
108
-      title: 'ERP',
109
-      subTitle: 'ERPERPERPERPERPERPERP',
110
-    },
111
-  ],
112
-  list2: [
113
-    {
114
-      id: '1',
115
-      tabName: '智慧家居',
116
-      children: [
117
-        {
118
-          title: '硬件',
119
-          content: '为优化客户体验,应以客户需求度较高的设备为主',
120
-        },
121
-        {
122
-          title: '控制系统',
123
-          content:
124
-            '开发语音中控,集成对于全屋智慧家居设备的语音控制,同时提供辅助客户端应用进行远程或备选控制同时提供辅助客户端应用进行远程或备选控制',
125
-        },
126
-        {
127
-          title: '合作模式',
128
-          content:
129
-            '成立银城智慧家居实验样板间,请各硬件供应商和系统集成商进行测试赛马',
130
-        },
131
-      ],
132
-    },
133
-    {
134
-      id: '2',
135
-      tabName: '智慧充电',
136
-      children: [
137
-        {
138
-          title: '智能寻桩',
139
-          content: '快速查询到身边的合适的充电设施',
140
-        },
141
-        {
142
-          title: '有效预约',
143
-          content: '高效的分配调度机制,确保预约能够成功保留',
144
-        },
145
-        {
146
-          title: '实时监控',
147
-          content: '充电电流、使用费用实时查询',
148
-        },
149
-        {
150
-          title: '高效分配',
151
-          content: '后台自动分配空闲可用充电桩',
152
-        },
153
-        {
154
-          title: '便捷支付',
155
-          content: '微信、支付宝支付轻松便捷',
156
-        },
157
-        {
158
-          title: '自动清算',
159
-          content: '自动判断、收费无需人工操作',
160
-        },
161
-      ],
162
-    },
163
-    {
164
-      id: '3',
165
-      tabName: '控制系统',
166
-      children: [
167
-        {
168
-          title: '手动遥控',
169
-          content:
170
-            '目前中国较为成熟的智慧公寓产品均以开关、面板或APP为主要控制方式',
171
-        },
172
-        {
173
-          title: '语音控制',
174
-          content:
175
-            '银城可切入更加便捷的语音家居领域,打造差异化品牌形象,实现弯道超车声控技术本身已较为稳定及成熟',
176
-        },
177
-        {
178
-          title: '自动控制',
179
-          content:
180
-            '通过人工智能实现对于用户需求的自动感知,并以此来控制智能家居是最为便捷的方式,也是银城的未来的发展方向',
181
-        },
182
-      ],
183
-    },
184
-  ]
185
-}
103
+    componentTitle: '我们如何帮助客户成功',
104
+    line: '0',
105
+    componentsBg: 'bg-grey',
106
+  },
107
+  {
108
+    type: 'LeftMiddleRightImgTextPro',
109
+    listOrData: [
110
+      {
111
+        id: '1',
112
+        link: 'http://www.baidu.com',
113
+        thumb:
114
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
115
+        title: 'ERP',
116
+        subTitle: 'ERPERPERPERPERPERPERP',
117
+      },
118
+      {
119
+        id: '2',
120
+        link: 'http://www.baidu.com',
121
+        thumb:
122
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
123
+        title: 'ERP',
124
+        subTitle: 'ERPERPERPERPERPERPERP',
125
+      },
126
+      {
127
+        id: '3',
128
+        link: 'http://www.baidu.com',
129
+        thumb:
130
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
131
+        title: 'ERP',
132
+        subTitle: 'ERPERPERPERPERPERPERP',
133
+      },
134
+    ],
135
+    componentTitle: '配套产品',
136
+    componentsBg: 'bg-img',
137
+  },
138
+  {
139
+    type: 'VerticalNavigationContent',
140
+    list: [
141
+      {
142
+        id: '1',
143
+        tabName: '智慧家居',
144
+        children: [
145
+          {
146
+            title: '硬件',
147
+            content: '为优化客户体验,应以客户需求度较高的设备为主',
148
+          },
149
+          {
150
+            title: '控制系统',
151
+            content:
152
+              '开发语音中控,集成对于全屋智慧家居设备的语音控制,同时提供辅助客户端应用进行远程或备选控制同时提供辅助客户端应用进行远程或备选控制',
153
+          },
154
+          {
155
+            title: '合作模式',
156
+            content:
157
+              '成立银城智慧家居实验样板间,请各硬件供应商和系统集成商进行测试赛马',
158
+          },
159
+        ],
160
+      },
161
+      {
162
+        id: '2',
163
+        tabName: '智慧充电',
164
+        children: [
165
+          {
166
+            title: '智能寻桩',
167
+            content: '快速查询到身边的合适的充电设施',
168
+          },
169
+          {
170
+            title: '有效预约',
171
+            content: '高效的分配调度机制,确保预约能够成功保留',
172
+          },
173
+          {
174
+            title: '实时监控',
175
+            content: '充电电流、使用费用实时查询',
176
+          },
177
+          {
178
+            title: '高效分配',
179
+            content: '后台自动分配空闲可用充电桩',
180
+          },
181
+          {
182
+            title: '便捷支付',
183
+            content: '微信、支付宝支付轻松便捷',
184
+          },
185
+          {
186
+            title: '自动清算',
187
+            content: '自动判断、收费无需人工操作',
188
+          },
189
+        ],
190
+      },
191
+      {
192
+        id: '3',
193
+        tabName: '控制系统',
194
+        children: [
195
+          {
196
+            title: '手动遥控',
197
+            content:
198
+              '目前中国较为成熟的智慧公寓产品均以开关、面板或APP为主要控制方式',
199
+          },
200
+          {
201
+            title: '语音控制',
202
+            content:
203
+              '银城可切入更加便捷的语音家居领域,打造差异化品牌形象,实现弯道超车声控技术本身已较为稳定及成熟',
204
+          },
205
+          {
206
+            title: '自动控制',
207
+            content:
208
+              '通过人工智能实现对于用户需求的自动感知,并以此来控制智能家居是最为便捷的方式,也是银城的未来的发展方向',
209
+          },
210
+        ],
211
+      },
212
+    ],
213
+    componentTitle: '相关资源',
214
+    titleTextAlign: 'text-left',
215
+    textAlign: 'text-left',
216
+    componentsBg: 'bg-even',
217
+  },
218
+  {
219
+    type: 'Footer',
220
+    lang: 'zh'
221
+  }
222
+]

+ 86
- 64
src/data/zh/eshop.js Parādīt failu

@@ -1,66 +1,88 @@
1
-export default {
2
-  sNav: ['电商产品', '相关资源'],
3
-  imgProData: {
4
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/ProductV2/enterprise-networking/security/topic/security-products-pc.jpg',
5
-    title: '电商系统',
6
-    content: '电商系统电商系统',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['电商产品', '相关资源'],
7 5
   },
8
-  carouselList: [
9
-    {
10
-      id: '1',
11
-      children: [
12
-        {
13
-          title: '电商系统',
14
-          content:
15
-            '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
16
-          url: '/public/building/message.png',
17
-        },
18
-      ],
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: 'https://e.huawei.com/-/mediae/EBG/Images/ProductV2/enterprise-networking/security/topic/security-products-pc.jpg',
10
+      title: '电商系统',
11
+      content: '电商系统电商系统',
19 12
     },
20
-    {
21
-      id: '2',
22
-      children: [
23
-        {
24
-          title: '电商系统',
25
-          content:
26
-            '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
27
-          url: '/public/building/message.png',
28
-        },
29
-      ],
30
-    },
31
-    {
32
-      id: '3',
33
-      children: [
34
-        {
35
-          title: '电商系统',
36
-          content:
37
-            '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
38
-          url: '/public/building/message.png',
39
-        },
40
-      ],
41
-    },
42
-  ],
43
-  verticalNavigationContentList: [
44
-    {
45
-      id: '1',
46
-      tabName: '彩页',
47
-      children: [
48
-        {
49
-          title: '电商系统电商系统电商系统电商系统电商系统电商系统',
50
-        },
51
-        {
52
-          title:
53
-            '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
54
-        },
55
-        {
56
-          title:
57
-            '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
58
-        },
59
-        {
60
-          title:
61
-            '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
62
-        },
63
-      ],
64
-    },
65
-  ]
66
-}
13
+  },
14
+  {
15
+    type: 'LeftMiddleRightText',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        children: [
20
+          {
21
+            title: '电商系统',
22
+            content:
23
+              '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
24
+            url: '/public/building/message.png',
25
+          },
26
+        ],
27
+      },
28
+      {
29
+        id: '2',
30
+        children: [
31
+          {
32
+            title: '电商系统',
33
+            content:
34
+              '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
35
+            url: '/public/building/message.png',
36
+          },
37
+        ],
38
+      },
39
+      {
40
+        id: '3',
41
+        children: [
42
+          {
43
+            title: '电商系统',
44
+            content:
45
+              '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
46
+            url: '/public/building/message.png',
47
+          },
48
+        ],
49
+      },
50
+    ],
51
+    componentTitle: '电商产品',
52
+    componentsBg: 'bg-grey',
53
+  },
54
+  {
55
+    type: 'VerticalNavigationContent',
56
+    list: [
57
+      {
58
+        id: '1',
59
+        tabName: '彩页',
60
+        children: [
61
+          {
62
+            title: '电商系统电商系统电商系统电商系统电商系统电商系统',
63
+          },
64
+          {
65
+            title:
66
+              '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
67
+          },
68
+          {
69
+            title:
70
+              '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
71
+          },
72
+          {
73
+            title:
74
+              '电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统电商系统',
75
+          },
76
+        ],
77
+      },
78
+    ],
79
+    componentTitle: '相关资源',
80
+    titleTextAlign: 'text-left',
81
+    textAlign: 'text-left',
82
+    componentsBg: 'bg-even',
83
+  },
84
+  {
85
+    type: 'Footer',
86
+    lang: 'zh'
87
+  }
88
+]

+ 135
- 102
src/data/zh/exhibitionAll.js Parādīt failu

@@ -1,74 +1,60 @@
1
-export default {
2
-  sNav: ['5G网络覆盖', '成功案例', '界面设计与用户体验', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/solutions/digital-site/digital-site-banner-pc.png',
5
-    title: '智慧展馆',
6
-    content: '智慧展馆有智慧',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['5G网络覆盖', '成功案例', '界面设计与用户体验', '相关资源'],
7 5
   },
8
-  informationList: [
9
-    {
10
-      id: '1',
11
-      link: 'http://www.baidu.com',
12
-      thumb: '/public/image/exhibition-all/3g.png',
13
-      title: '3G图片时代',
14
-      subTitle:
15
-        '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/solutions/digital-site/digital-site-banner-pc.png',
10
+      title: '智慧展馆',
11
+      content: '智慧展馆有智慧',
16 12
     },
17
-    {
18
-      id: '2',
19
-      link: 'http://www.baidu.com',
20
-      thumb: '/public/image/exhibition-all/4g.png',
21
-      title: '4G视频时代',
22
-      subTitle:
23
-        '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
24
-    },
25
-    {
26
-      id: '3',
27
-      link: 'http://www.baidu.com',
28
-      thumb: '/public/image/exhibition-all/5g.png',
29
-      title: '5G万物互联时代',
30
-      subTitle:
31
-        '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
32
-    },
33
-  ],
34
-  list2: [
35
-    {
36
-      id: '1',
37
-      tabName: '实施步骤',
38
-      children: [
39
-        {
40
-          title: '完成SCRM&SCM基本功能',
41
-          content:
42
-            '搭建智慧展馆的架构基础,将数据化用户画像收集起来,为展馆数字化,智慧化做铺垫。',
43
-        },
44
-        {
45
-          title: '完成ESS展会业务系统&OSS运营支持系统展馆线上线下一体化体验',
46
-          content:
47
-            '通过运营平台给参观客户定制专属参观方案,联动馆内IOT物联网设备平台进行有效的互动,增加体验感的同时记录客户参展信息,为后续丰富用户画像做数据支撑基础。',
48
-        },
49
-        {
50
-          title: '数据看板及BI报表通过展前',
13
+  },
14
+  {
15
+    type: 'LeftMiddleRightImgTextPro',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        link: 'http://www.baidu.com',
20
+        thumb: '/public/image/exhibition-all/3g.png',
21
+        title: '3G图片时代',
22
+        subTitle:
23
+          '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
24
+      },
25
+      {
26
+        id: '2',
27
+        link: 'http://www.baidu.com',
28
+        thumb: '/public/image/exhibition-all/4g.png',
29
+        title: '4G视频时代',
30
+        subTitle:
31
+          '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
32
+      },
33
+      {
34
+        id: '3',
35
+        link: 'http://www.baidu.com',
36
+        thumb: '/public/image/exhibition-all/5g.png',
37
+        title: '5G万物互联时代',
38
+        subTitle:
39
+          '利用智能化手段,提升社区居住的便捷性和安全性,提升社区居民的满意度',
40
+      },
41
+    ],
42
+    componentTitle: '5G网络覆盖',
43
+    componentsBg: 'bg-img',
44
+    hoverBackColor: 'white',
45
+  },
46
+  {
47
+    type: 'Carousel',
48
+    list: [
49
+      [{
50
+        id: '1',
51
+        url: '/public/image/exhibition-all/pavilion.png',
52
+        children: {
53
+          title: '展馆管理',
51 54
           content:
52
-            '展中的数据收集,使用数据漏斗分析各个维度的用户需求,给出分析和商业跟进价值,做的一展一分析,数据可视化,为展后工作做指导,初步建成智慧展馆平台目标。',
53
-        },
54
-      ],
55
-    },
56
-  ],
57
-  carouselList2: [
58
-    [
59
-      [
60
-        {
61
-          id: '1',
62
-          url: '/public/image/exhibition-all/pavilion.png',
63
-          children: {
64
-            title: '展馆管理',
65
-            content:
66
-              '统一、标准化管理,根据参观行业等,快速高效的为客户提供参观内容,并同步至智慧展厅。',
67
-          },
55
+            '统一、标准化管理,根据参观行业等,快速高效的为客户提供参观内容,并同步至智慧展厅。',
68 56
         },
69
-      ],
70
-    ],
71
-    [
57
+      },],
72 58
       [
73 59
         {
74 60
           id: '2',
@@ -80,8 +66,6 @@ export default {
80 66
           },
81 67
         },
82 68
       ],
83
-    ],
84
-    [
85 69
       [
86 70
         {
87 71
           id: '3',
@@ -92,10 +76,7 @@ export default {
92 76
               '建立客户全方位画像,掌握客户的兴趣和需求,并通过个性化的邀约和营销策略,提高客户参展率和到访率。',
93 77
           },
94 78
         },
95
-      ],
96
-    ],
97
-    [
98
-      [
79
+      ], [
99 80
         {
100 81
           id: '4',
101 82
           url: '/public/image/exhibition-all/release.png',
@@ -105,33 +86,85 @@ export default {
105 86
               '快速发布展厅信息内容,省去繁杂的编辑环节,为客户提供最好的展馆参观体验。',
106 87
           },
107 88
         },
108
-      ],
89
+      ]
109 90
     ],
110
-  ],
111
-  informationList2: [
112
-    {
113
-      id: '1',
114
-      link: 'http://www.baidu.com',
115
-      thumb: '/public/image/exhibition-all/concise.png',
116
-      title: '简洁明了的操作界面',
117
-      subTitle:
118
-        '采用简洁、直观的操作界面设计,方便用户快速上手使用BOSS系统。避免复杂和繁琐的操作流程,提高用户体验。',
119
-    },
120
-    {
121
-      id: '2',
122
-      link: 'http://www.baidu.com',
123
-      thumb: '/public/image/exhibition-all/personality.png',
124
-      title: '提供个性化定制服务',
125
-      subTitle:
126
-        '根据不同用户的需求和习惯,提供个性化的定制服务。例如:界面主题、布局、配色等可根据用户喜好进行定制,提高用户体验的个性化程度。',
127
-    },
128
-    {
129
-      id: '3',
130
-      link: 'http://www.baidu.com',
131
-      thumb: '/public/image/exhibition-all/feedback.png',
132
-      title: '实时反馈与互动',
133
-      subTitle:
134
-        '在BOSS系统中实现实时反馈与互动功能,提升用户参与感和体验感。例如:在用户操作时给出实时提示和引导信息,便于用户更好地理解和使用系统。同时,提供互动交流平台,方便用户之间的沟通与交流。',
135
-    },
136
-  ]
137
-}
91
+    componentTitle: '成功案例',
92
+    line: '0',
93
+    textAlign: 'text-center',
94
+    titleTextAlign: 'text-center',
95
+    componentsBg: 'bg-grey',
96
+  },
97
+  {
98
+    type: 'LeftMiddleRightImgTextPro',
99
+    listOrData: [
100
+      {
101
+        id: '1',
102
+        link: 'http://www.baidu.com',
103
+        thumb: '/public/image/exhibition-all/pavilion.png',
104
+        title: '展馆管理',
105
+        subTitle:
106
+          '统一、标准化管理,根据参观行业等,快速高效的为客户提供参观内容,并同步至智慧展厅。',
107
+      },
108
+      {
109
+        id: '2',
110
+        link: 'http://www.baidu.com',
111
+        thumb: '/public/image/exhibition-all/resource.png',
112
+        title: '资源管理',
113
+        subTitle:
114
+          '统一、标准化管理,根据参观行业等,快速高效的为客户提供参观内容,并同步至智慧展厅。',
115
+      },
116
+      {
117
+        id: '3',
118
+        link: 'http://www.baidu.com',
119
+        thumb: '/public/image/exhibition-all/visit.png',
120
+        title: '参观管理',
121
+        subTitle:
122
+          '建立客户全方位画像,掌握客户的兴趣和需求,并通过个性化的邀约和营销策略,提高客户参展率和到访率。',
123
+      },
124
+      {
125
+        id: '4',
126
+        link: 'http://www.baidu.com',
127
+        thumb: '/public/image/exhibition-all/release.png',
128
+        title: '发布管理',
129
+        subTitle:
130
+          '快速发布展厅信息内容,省去繁杂的编辑环节,为客户提供最好的展馆参观体验。',
131
+      },
132
+    ],
133
+    componentTitle: '界面设计与用户体验',
134
+    componentsBg: 'bg-img',
135
+  },
136
+  {
137
+    type: 'VerticalNavigationContent',
138
+    list: [
139
+      {
140
+        id: '1',
141
+        tabName: '实施步骤',
142
+        children: [
143
+          {
144
+            title: '完成SCRM&SCM基本功能',
145
+            content:
146
+              '搭建智慧展馆的架构基础,将数据化用户画像收集起来,为展馆数字化,智慧化做铺垫。',
147
+          },
148
+          {
149
+            title: '完成ESS展会业务系统&OSS运营支持系统展馆线上线下一体化体验',
150
+            content:
151
+              '通过运营平台给参观客户定制专属参观方案,联动馆内IOT物联网设备平台进行有效的互动,增加体验感的同时记录客户参展信息,为后续丰富用户画像做数据支撑基础。',
152
+          },
153
+          {
154
+            title: '数据看板及BI报表通过展前',
155
+            content:
156
+              '展中的数据收集,使用数据漏斗分析各个维度的用户需求,给出分析和商业跟进价值,做的一展一分析,数据可视化,为展后工作做指导,初步建成智慧展馆平台目标。',
157
+          },
158
+        ],
159
+      },
160
+    ],
161
+    componentTitle: '相关资源',
162
+    titleTextAlign: 'text-left',
163
+    textAlign: 'text-left',
164
+    componentsBg: 'bg-even',
165
+  },
166
+  {
167
+    type: 'Footer',
168
+    lang: 'zh'
169
+  }
170
+]

+ 146
- 117
src/data/zh/gov.js Parādīt failu

@@ -1,38 +1,51 @@
1
-export default {
2
-  sNav: ['场景化解决方案', '成功案例', '新闻与活动', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/industries/education/topic/education-banner-pc-02.jpg',
5
-    title: '政务服务',
6
-    content: '政务服务政务服务',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['场景化解决方案', '成功案例', '新闻与活动', '相关资源'],
7 5
   },
8
-  informationList: [
9
-    {
10
-      id: '1',
11
-      link: 'http://www.baidu.com',
12
-      thumb:
13
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/industries/education/topic/education-banner-pc-02.jpg',
14 10
       title: '政务服务',
15
-      subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
11
+      content: '政务服务政务服务',
16 12
     },
17
-    {
18
-      id: '2',
19
-      link: 'http://www.baidu.com',
20
-      thumb:
21
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
22
-      title: '政务服务',
23
-      subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
24
-    },
25
-    {
26
-      id: '3',
27
-      link: 'http://www.baidu.com',
28
-      thumb:
29
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
30
-      title: '政务服务',
31
-      subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
32
-    },
33
-  ],
34
-  carouselList: [
35
-    [
13
+  },
14
+  {
15
+    type: 'LeftMiddleRightImgTextPro',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        link: 'http://www.baidu.com',
20
+        thumb:
21
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
22
+        title: '政务服务',
23
+        subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
24
+      },
25
+      {
26
+        id: '2',
27
+        link: 'http://www.baidu.com',
28
+        thumb:
29
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
30
+        title: '政务服务',
31
+        subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
32
+      },
33
+      {
34
+        id: '3',
35
+        link: 'http://www.baidu.com',
36
+        thumb:
37
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
38
+        title: '政务服务',
39
+        subTitle: '政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
40
+      },
41
+    ],
42
+    componentTitle: '场景化解决方案',
43
+    componentsBg: 'bg-img',
44
+    white: 'white',
45
+  },
46
+  {
47
+    type: 'Carousel',
48
+    list: [
36 49
       [
37 50
         {
38 51
           id: '1',
@@ -45,8 +58,6 @@ export default {
45 58
           },
46 59
         },
47 60
       ],
48
-    ],
49
-    [
50 61
       [
51 62
         {
52 63
           id: '2',
@@ -58,87 +69,105 @@ export default {
58 69
               '政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
59 70
           },
60 71
         },
61
-      ],
72
+      ]
62 73
     ],
63
-  ],
64
-  carouselList2: [
65
-    {
66
-      id: '1',
67
-      children: [
68
-        {
69
-          title: '政务服务',
70
-          content:
71
-            '政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
72
-          url: '/public/building/message.png',
73
-        },
74
-      ],
75
-    },
76
-    {
77
-      id: '2',
78
-      children: [
79
-        {
80
-          title: '政务服务',
81
-          content:
82
-            '政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
83
-          url: '/public/building/message.png',
84
-        },
85
-      ],
86
-    },
87
-    {
88
-      id: '3',
89
-      children: [
90
-        {
91
-          title: '政务服务',
92
-          content:
93
-            '政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
94
-          url: '/public/building/message.png',
95
-        },
96
-      ],
97
-    },
98
-  ],
99
-  list2: [
100
-    {
101
-      id: '1',
102
-      tabName: '白皮书白皮书白皮书',
103
-      children: [
104
-        {
105
-          title: '智慧园区2030',
106
-          content:
107
-            '智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030',
108
-        },
109
-        {
110
-          title: 'Future Intelligent Campus White Paper For Asia Pacific',
111
-          content: 'Future Intelligent Campus White Paper For Asia Pacific',
112
-        },
113
-        {
114
-          title: 'Future Net Zero Intelligent Campus White Paper ME&CA 2023',
115
-          content: 'Future Intelligent Campus White Paper For Asia Pacific',
116
-        },
117
-        {
118
-          title: '智慧园区发展白皮书(上海)',
119
-          content: '智慧园区发展白皮书(上海)',
120
-        },
121
-        {
122
-          title: '未来智慧园区白皮书2022',
123
-          content: '未来智慧园区白皮书2022',
124
-        },
125
-        {
126
-          title: '未来智慧园区白皮书',
127
-          content: '未来智慧园区白皮书',
128
-        },
129
-      ],
130
-    },
131
-    {
132
-      id: '2',
133
-      tabName: '彩页彩页',
134
-      children: [
135
-        {
136
-          title: '华为智慧园区解决方案介绍',
137
-        },
138
-        {
139
-          title: '园区产品组合方案彩页23.0',
140
-        },
141
-      ],
142
-    },
143
-  ]
144
-}
74
+    componentTitle: '成功案例',
75
+    line: '0',
76
+    componentsBg: 'bg-grey',
77
+  },
78
+  {
79
+    type: 'LeftMiddleRightText',
80
+    listOrData: [
81
+      {
82
+        id: '1',
83
+        children: [
84
+          {
85
+            title: '政务服务',
86
+            content:
87
+              '政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
88
+            url: '/public/building/message.png',
89
+          },
90
+        ],
91
+      },
92
+      {
93
+        id: '2',
94
+        children: [
95
+          {
96
+            title: '政务服务',
97
+            content:
98
+              '政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
99
+            url: '/public/building/message.png',
100
+          },
101
+        ],
102
+      },
103
+      {
104
+        id: '3',
105
+        children: [
106
+          {
107
+            title: '政务服务',
108
+            content:
109
+              '政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务政务服务',
110
+            url: '/public/building/message.png',
111
+          },
112
+        ],
113
+      },
114
+    ],
115
+    componentTitle: '新闻与活动'
116
+  },
117
+  {
118
+    type: 'VerticalNavigationContent',
119
+    list: [
120
+      {
121
+        id: '1',
122
+        tabName: '白皮书白皮书白皮书',
123
+        children: [
124
+          {
125
+            title: '智慧园区2030',
126
+            content:
127
+              '智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030智慧园区2030',
128
+          },
129
+          {
130
+            title: 'Future Intelligent Campus White Paper For Asia Pacific',
131
+            content: 'Future Intelligent Campus White Paper For Asia Pacific',
132
+          },
133
+          {
134
+            title: 'Future Net Zero Intelligent Campus White Paper ME&CA 2023',
135
+            content: 'Future Intelligent Campus White Paper For Asia Pacific',
136
+          },
137
+          {
138
+            title: '智慧园区发展白皮书(上海)',
139
+            content: '智慧园区发展白皮书(上海)',
140
+          },
141
+          {
142
+            title: '未来智慧园区白皮书2022',
143
+            content: '未来智慧园区白皮书2022',
144
+          },
145
+          {
146
+            title: '未来智慧园区白皮书',
147
+            content: '未来智慧园区白皮书',
148
+          },
149
+        ],
150
+      },
151
+      {
152
+        id: '2',
153
+        tabName: '彩页彩页',
154
+        children: [
155
+          {
156
+            title: '华为智慧园区解决方案介绍',
157
+          },
158
+          {
159
+            title: '园区产品组合方案彩页23.0',
160
+          },
161
+        ],
162
+      },
163
+    ],
164
+    componentTitle: '相关资源',
165
+    titleTextAlign: 'text-left',
166
+    textAlign: 'text-left',
167
+    componentsBg: 'bg-even',
168
+  },
169
+  {
170
+    type: 'Footer',
171
+    lang: 'zh'
172
+  }
173
+]

+ 35
- 0
src/data/zh/govEntHealth.js Parādīt failu

@@ -0,0 +1,35 @@
1
+export default [
2
+  {
3
+    type: 'NavSubMenu',
4
+    list: [
5
+      {
6
+        id: '1',
7
+        href: '/products-solutions/gov-ent-health/gov',
8
+        url: '/public/menu/gov-ent-health/gov.png',
9
+        title: '政务服务',
10
+        subTitle:
11
+          '各级政府、各相关部门及事业单位,根据法律法规,为社会团体、企事业单位和个人提供的许可、确认、裁决、奖励、处罚等行政服务。',
12
+      },
13
+      {
14
+        id: '2',
15
+        href: '/products-solutions/gov-ent-health/bank',
16
+        url: '/public/menu/gov-ent-health/bank.png',
17
+        title: '银行业务',
18
+        subTitle:
19
+          '各级政府、各相关部门及事业单位,根据法律法规,为社会团体、企事业单位和个人提供的许可、确认、裁决、奖励、处罚等行政服务。',
20
+      },
21
+      {
22
+        id: '3',
23
+        href: '/products-solutions/gov-ent-health/healthcare',
24
+        url: '/public/menu/gov-ent-health/healthcare.png',
25
+        title: '医院医疗',
26
+        subTitle:
27
+          '各级政府、各相关部门及事业单位,根据法律法规,为社会团体、企事业单位和个人提供的许可、确认、裁决、奖励、处罚等行政服务。',
28
+      },
29
+    ]
30
+  },
31
+  {
32
+    type: 'Footer',
33
+    lang: 'zh'
34
+  }
35
+]

+ 127
- 97
src/data/zh/healthcare.js Parādīt failu

@@ -1,32 +1,45 @@
1
-export default {
2
-  sNav: ['场景化解决方案', '成功案例', '相关产品', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/industries/healthcare/healthcare/healthcare-banner-pc.jpg',
5
-    title: '医院医疗',
6
-    content: '医院医疗医院医疗',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['场景化解决方案', '成功案例', '相关产品', '相关资源'],
7 5
   },
8
-  leftImgRightTextList: [
9
-    {
10
-      id: '1',
11
-      url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
12
-      children: {
13
-        title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
14
-        content:
15
-          '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
16
-      },
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/industries/healthcare/healthcare/healthcare-banner-pc.jpg',
10
+      title: '医院医疗',
11
+      content: '医院医疗医院医疗',
17 12
     },
18
-    {
19
-      id: '2',
20
-      url: 'https://e.huawei.com/-/mediae/images/case-studies/solutions/campus/2023/chongqing-lianglu-guoyuan-port/banner-bequoted.jpg',
21
-      children: {
22
-        title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
23
-        content:
24
-          '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
13
+  },
14
+  {
15
+    type: 'LeftImgRightText',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        url: 'https://e.huawei.com/-/mediae/images/case-studies/industries/education/2022/southeast-university-smart-campus/banner-bequoted1.jpg',
20
+        children: {
21
+          title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
22
+          content:
23
+            '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
24
+        },
25 25
       },
26
-    },
27
-  ],
28
-  carouselList: [
29
-    [
26
+      {
27
+        id: '2',
28
+        url: 'https://e.huawei.com/-/mediae/images/case-studies/solutions/campus/2023/chongqing-lianglu-guoyuan-port/banner-bequoted.jpg',
29
+        children: {
30
+          title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
31
+          content:
32
+            '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
33
+        },
34
+      }
35
+    ],
36
+    componentTitle: '场景化解决方案',
37
+    textAlign: 'text-center',
38
+    componentsBg: 'bg-grey',
39
+  },
40
+  {
41
+    type: 'Carousel',
42
+    carouselList: [
30 43
       [
31 44
         {
32 45
           id: '1',
@@ -39,8 +52,6 @@ export default {
39 52
           },
40 53
         },
41 54
       ],
42
-    ],
43
-    [
44 55
       [
45 56
         {
46 57
           id: '2',
@@ -54,72 +65,91 @@ export default {
54 65
         },
55 66
       ],
56 67
     ],
57
-  ],
58
-  carouselList2: [
59
-    {
60
-      id: '1',
61
-      link: 'http://www.baidu.com',
62
-      thumb:
63
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
64
-      title: '医院医疗',
65
-      subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
66
-    },
67
-    {
68
-      id: '2',
69
-      link: 'http://www.baidu.com',
70
-      thumb:
71
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
72
-      title: '医院医疗',
73
-      subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
74
-    },
75
-    {
76
-      id: '3',
77
-      link: 'http://www.baidu.com',
78
-      thumb:
79
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
80
-      title: '医院医疗',
81
-      subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
82
-    },
83
-  ],
84
-  list2: [
85
-    {
86
-      id: '1',
87
-      tabName: '彩页',
88
-      children: [
89
-        {
90
-          title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
91
-        },
92
-        {
93
-          title: '医院医疗医院医疗医院医疗医院医疗医院医疗',
94
-        },
95
-        {
96
-          title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
97
-        },
98
-        {
99
-          title:
100
-            '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
101
-        },
102
-        {
103
-          title:
104
-            '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
105
-        },
106
-        {
107
-          title:
108
-            '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
109
-        },
110
-      ],
111
-    },
112
-    {
113
-      id: '2',
114
-      tabName: '白皮书',
115
-      children: [
116
-        {
117
-          title: '医院医疗医院医疗医院医疗医院医疗医院医疗',
118
-        },
119
-        {
120
-          title: '医院医疗医院医疗医院医疗医院医疗',
121
-        },
122
-      ],
123
-    },
124
-  ]
125
-}
68
+    componentTitle: '成功案例',
69
+    line: '0',
70
+    componentsBg: 'bg-img',
71
+  },
72
+  {
73
+    type: 'LeftMiddleRightImgTextPro',
74
+    listOrData: [
75
+      {
76
+        id: '1',
77
+        link: 'http://www.baidu.com',
78
+        thumb:
79
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
80
+        title: '医院医疗',
81
+        subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
82
+      },
83
+      {
84
+        id: '2',
85
+        link: 'http://www.baidu.com',
86
+        thumb:
87
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
88
+        title: '医院医疗',
89
+        subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
90
+      },
91
+      {
92
+        id: '3',
93
+        link: 'http://www.baidu.com',
94
+        thumb:
95
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
96
+        title: '医院医疗',
97
+        subTitle: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
98
+      },
99
+    ],
100
+    componentTitle: '相关产品',
101
+    componentsBg: 'bg-img',
102
+  },
103
+  {
104
+    type: 'VerticalNavigationContent',
105
+    list: [
106
+      {
107
+        id: '1',
108
+        tabName: '彩页',
109
+        children: [
110
+          {
111
+            title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
112
+          },
113
+          {
114
+            title: '医院医疗医院医疗医院医疗医院医疗医院医疗',
115
+          },
116
+          {
117
+            title: '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
118
+          },
119
+          {
120
+            title:
121
+              '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
122
+          },
123
+          {
124
+            title:
125
+              '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
126
+          },
127
+          {
128
+            title:
129
+              '医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗医院医疗',
130
+          },
131
+        ],
132
+      },
133
+      {
134
+        id: '2',
135
+        tabName: '白皮书',
136
+        children: [
137
+          {
138
+            title: '医院医疗医院医疗医院医疗医院医疗医院医疗',
139
+          },
140
+          {
141
+            title: '医院医疗医院医疗医院医疗医院医疗',
142
+          },
143
+        ],
144
+      },
145
+    ],
146
+    componentTitle: '相关资源',
147
+    titleTextAlign: 'text-left',
148
+    textAlign: 'text-left',
149
+    componentsBg: 'bg-even',
150
+  },
151
+  {
152
+    type: 'Footer',
153
+    lang: 'zh'
154
+  }
155
+]

+ 127
- 122
src/data/zh/homepage.js Parādīt failu

@@ -1,134 +1,139 @@
1 1
 
2 2
 export default [
3
-
4 3
   {
5
-    type: 'ImgPro',    
6
-    imgProData: {
4
+    type: 'ImgPro',
5
+    listOrData: {
7 6
       url: '//e.huawei.com/-/mediae/images/home/banner/jiasu-banner-pc1.jpg',
8 7
       title: '加速行业智能化',
9 8
       content:
10 9
         '华为持续引领数智基础设施产品与解决方案创新,使能百模千态,赋能千行万业智能化转型',
11 10
     },
12
-  }
13
-
14
-
15
-]
16
-
17
-export default {
18
-  firstpage: {
19
-    thumb: '../image/homepage/thumb1.png',
20
-    title: '科技化 数字化 智能化',
21
-    subTitle: '引领企业基础设施产品与解决方案创新,赋能企业加速发展',
22
-    link: '',
11
+    ratio: '16 / 9',
12
+    titleSize: '60px',
13
+    textWeight: 'fw-bold',
14
+    position: 'positionBottom'
23 15
   },
24
-  imgProData: {
25
-    url: '//e.huawei.com/-/mediae/images/home/banner/jiasu-banner-pc1.jpg',
26
-    title: '加速行业智能化',
27
-    content:
28
-      '华为持续引领数智基础设施产品与解决方案创新,使能百模千态,赋能千行万业智能化转型',
16
+  {
17
+    type: 'LeftImgRightText',
18
+    listOrData: [
19
+      {
20
+        id: '1',
21
+        url: 'https://e.huawei.com/topic/sitecore/new-value-together/img/architecture/jiagoutu-cn.png',
22
+        children: {
23
+          title: '5G时代数字化营销新平台',
24
+          content:
25
+            '中国房地产行业面对着新媒体突飞猛进的传播环境,传统地产营销模式也正面临着全新的转型。精准投放客户,精细化管理项目,降低营销费效比,提升人员能效,已经成为顶尖地产营销人的共识。为提高开发商费效比而生,是基于微信小程序实现的房产创新营销模式;以资讯获取+利益诱导作为核心实现裂变传播;以 数据抓取+分析作为核心驱动力实现在线获客、 精准沟通、社交化传播、客户留存、精准转化 等,构建的精准获客平台。将所有客户汇聚在巨大的流量池中,将信息的 传达与接收、社交传播、活动转化、数据分析 集中于一个入口,最终形成地产生命全周期的 营销闭环与流量闭环,实现成交化。',
26
+        },
27
+      },
28
+      {
29
+        id: '1',
30
+        url: 'https://e.huawei.com/topic/sitecore/new-value-together/img/architecture/jiagoutu-cn.png',
31
+        children: {
32
+          title: '社区团购小程序系统',
33
+          content:
34
+            '商品销量、团长推广和会员分成等平台现状多方位、多维度展示;丰富的数据报表帮助商家更准确的制定营销方案,赚的更高收益。商品基础信息设置、商品库存报警,商品发布、上下架、团长专属商品、规格设置、分类设置……全维度细化商品管理,全面管理在售商品。通过设置普通红包、节日红包、生日红包、新人红包、拼手气红包等红包优惠券,可以将社团群的活跃程度增加,提高团员的消费数据量,扩大社区团购品牌的影响力。通过设置秒杀活动可以更多的进行促销活动吸引社区用户进行购买商品,同时可以加大宣传品牌力度,将社区团购的优势推广,也可以招募更多的团长、供应商来为自己的平台的服务。通过配送路线、配送人员的添加设置,可以用配送员来管理多个社区-团长,这样可以无需再在订单列表筛选团长进行发货,可以统一根据配送路线绑定的社区-团长一键发货,简化流程。在统计分析页面,可以显示商品销量统计、团长销量统计、团长佣金统计、用户分成统计等分析页面,可以通过更多的数据来分析各个商品的销售趋势,以及团长的盈利情况。我们在系统设置中遵循更加人性化的设置理念,将风格设置、金额设置、基础设置等统计划分模块,在风格设置中可以遵循自己的想法设置不同的首页、团长切换等。',
35
+        },
36
+      },
37
+    ],
38
+    componentTitle: '产品与解决方案',
39
+    textAlign: 'text-center'
29 40
   },
30
-  leftImgRightTextData: [
31
-    {
32
-      id: '1',
33
-      url: 'https://e.huawei.com/topic/sitecore/new-value-together/img/architecture/jiagoutu-cn.png',
34
-      children: {
35
-        title: '5G时代数字化营销新平台',
36
-        content:
37
-          '中国房地产行业面对着新媒体突飞猛进的传播环境,传统地产营销模式也正面临着全新的转型。精准投放客户,精细化管理项目,降低营销费效比,提升人员能效,已经成为顶尖地产营销人的共识。为提高开发商费效比而生,是基于微信小程序实现的房产创新营销模式;以资讯获取+利益诱导作为核心实现裂变传播;以 数据抓取+分析作为核心驱动力实现在线获客、 精准沟通、社交化传播、客户留存、精准转化 等,构建的精准获客平台。将所有客户汇聚在巨大的流量池中,将信息的 传达与接收、社交传播、活动转化、数据分析 集中于一个入口,最终形成地产生命全周期的 营销闭环与流量闭环,实现成交化。',
41
+  {
42
+    type: 'LeftMiddleRightImgTextPro',
43
+    listOrData: [
44
+      {
45
+        id: '1',
46
+        link: 'http://www.baidu.com',
47
+        thumb:
48
+          'https://e.huawei.com/-/mediae/images/home/newsevents/events/events-finance-summit-2024.jpg',
49
+        title: '房源交易系统',
50
+        subTitle: '房源交易业务支撑系统,涵盖新房、二手房、租房的功能管理模块。',
38 51
       },
39
-    },
40
-    {
41
-      id: '1',
42
-      url: 'https://e.huawei.com/topic/sitecore/new-value-together/img/architecture/jiagoutu-cn.png',
43
-      children: {
44
-        title: '社区团购小程序系统',
45
-        content:
46
-          '商品销量、团长推广和会员分成等平台现状多方位、多维度展示;丰富的数据报表帮助商家更准确的制定营销方案,赚的更高收益。商品基础信息设置、商品库存报警,商品发布、上下架、团长专属商品、规格设置、分类设置……全维度细化商品管理,全面管理在售商品。通过设置普通红包、节日红包、生日红包、新人红包、拼手气红包等红包优惠券,可以将社团群的活跃程度增加,提高团员的消费数据量,扩大社区团购品牌的影响力。通过设置秒杀活动可以更多的进行促销活动吸引社区用户进行购买商品,同时可以加大宣传品牌力度,将社区团购的优势推广,也可以招募更多的团长、供应商来为自己的平台的服务。通过配送路线、配送人员的添加设置,可以用配送员来管理多个社区-团长,这样可以无需再在订单列表筛选团长进行发货,可以统一根据配送路线绑定的社区-团长一键发货,简化流程。在统计分析页面,可以显示商品销量统计、团长销量统计、团长佣金统计、用户分成统计等分析页面,可以通过更多的数据来分析各个商品的销售趋势,以及团长的盈利情况。我们在系统设置中遵循更加人性化的设置理念,将风格设置、金额设置、基础设置等统计划分模块,在风格设置中可以遵循自己的想法设置不同的首页、团长切换等。',
52
+      {
53
+        id: '2',
54
+        link: 'http://www.baidu.com',
55
+        thumb:
56
+          'https://e.huawei.com/-/mediae/images/home/newsevents/events/events-hpc2024.jpg',
57
+        title: '城的空间',
58
+        subTitle:
59
+          '为提升售楼处的体验,提高数字化和智能化的进程,提高小区的品质和形象,引入售楼处和后续小区的私有化会所形象,专门为品质生活服务的需求应运而生。',
47 60
       },
48
-    },
49
-  ],
50
-  caseList: [
51
-    {
52
-      id: '1',
53
-      link: 'http://www.baidu.com',
54
-      thumb:
55
-        'https://e.huawei.com/-/mediae/images/home/newsevents/events/events-finance-summit-2024.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/newsevents/events/events-hpc2024.jpg',
64
-      title: '城的空间',
65
-      subTitle:
66
-        '为提升售楼处的体验,提高数字化和智能化的进程,提高小区的品质和形象,引入售楼处和后续小区的私有化会所形象,专门为品质生活服务的需求应运而生。',
67
-    },
68
-    {
69
-      id: '3',
70
-      link: 'http://www.baidu.com',
71
-      thumb:
72
-        'https://e.huawei.com/-/mediae/images/events/list/2307-storage-ai-product-launch-event-list.jpg',
73
-      title: '资源管理平台',
74
-      subTitle:
75
-        '是针对集团性企业有众多供应商库和众多分公司,对于内部信息 不对称,资源拥有量不清楚的情况,做一个自有资源展示、交易平台。',
76
-    },
77
-    {
78
-      id: '4',
79
-      link: 'http://www.baidu.com',
80
-      thumb:
81
-        'https://e.huawei.com/-/mediae/images/events/list/2023-cn-data-storage-user-forum-list.jpg',
82
-      title: '智慧社区',
83
-      subTitle:
84
-        '物业系统(停车系统、缴费系统、门禁系统、公告发布系统)、安防系统、管家系统(智能家居)、社区系统以及智能硬件模块对接,实现用户数据采 集、用户电子化管理、用户激活等功能。',
85
-    },
86
-    {
87
-      id: '5',
88
-      link: 'http://www.baidu.com',
89
-      thumb:
90
-        'https://e.huawei.com/-/mediae/EBG2022/Events/list-230426-cn-smart-manufacturing-data-infrastructure.jpg',
91
-      title: '智慧消防控制平台',
92
-      subTitle:
93
-        '展示大屏(分析),依赖动态且丰富的主题信息设计,配合 设计感强的大屏场景设计,从而展示数据及业务现状,达到 一定的数据应用价值。',
94
-    },
95
-    {
96
-      id: '6',
97
-      link: 'http://www.baidu.com',
98
-      thumb:
99
-        'https://e.huawei.com/-/mediae/images/events/list/220909-cn-longkou-intelligent-city.jpg',
100
-      title: '邓州市共享农机系统',
101
-      subTitle:
102
-        '农机共享平台针对农业农村 局等管理单位提供管理运营 的功能,农业农村局等管理 单位,担任审核、运营及数 据管理的职能。',
103
-    },
104
-  ],
105
-  informationList: [
106
-    {
107
-      id: '1',
108
-      link: 'http://www.baidu.com',
109
-      thumb:
110
-        'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-4.jpg',
111
-      title: '因聚而生 数智有为”华为举办中国合作伙伴大会2024',
112
-      subTitle:
113
-        '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
114
-    },
115
-    {
116
-      id: '2',
117
-      link: 'http://www.baidu.com',
118
-      thumb:
119
-        'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-1.jpg',
120
-      title: '华为连续四年获Gartner Peer Insights™ SD-WAN “客户之选”',
121
-      subTitle:
122
-        '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
123
-    },
124
-    {
125
-      id: '3',
126
-      link: 'http://www.baidu.com',
127
-      thumb:
128
-        'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg',
129
-      title: '华为独家荣获Gartner Peer Insights™',
130
-      subTitle:
131
-        '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
132
-    },
133
-  ]
134
-}
61
+      {
62
+        id: '3',
63
+        link: 'http://www.baidu.com',
64
+        thumb:
65
+          'https://e.huawei.com/-/mediae/images/events/list/2307-storage-ai-product-launch-event-list.jpg',
66
+        title: '资源管理平台',
67
+        subTitle:
68
+          '是针对集团性企业有众多供应商库和众多分公司,对于内部信息 不对称,资源拥有量不清楚的情况,做一个自有资源展示、交易平台。',
69
+      },
70
+      {
71
+        id: '4',
72
+        link: 'http://www.baidu.com',
73
+        thumb:
74
+          'https://e.huawei.com/-/mediae/images/events/list/2023-cn-data-storage-user-forum-list.jpg',
75
+        title: '智慧社区',
76
+        subTitle:
77
+          '物业系统(停车系统、缴费系统、门禁系统、公告发布系统)、安防系统、管家系统(智能家居)、社区系统以及智能硬件模块对接,实现用户数据采 集、用户电子化管理、用户激活等功能。',
78
+      },
79
+      {
80
+        id: '5',
81
+        link: 'http://www.baidu.com',
82
+        thumb:
83
+          'https://e.huawei.com/-/mediae/EBG2022/Events/list-230426-cn-smart-manufacturing-data-infrastructure.jpg',
84
+        title: '智慧消防控制平台',
85
+        subTitle:
86
+          '展示大屏(分析),依赖动态且丰富的主题信息设计,配合 设计感强的大屏场景设计,从而展示数据及业务现状,达到 一定的数据应用价值。',
87
+      },
88
+      {
89
+        id: '6',
90
+        link: 'http://www.baidu.com',
91
+        thumb:
92
+          'https://e.huawei.com/-/mediae/images/events/list/220909-cn-longkou-intelligent-city.jpg',
93
+        title: '邓州市共享农机系统',
94
+        subTitle:
95
+          '农机共享平台针对农业农村 局等管理单位提供管理运营 的功能,农业农村局等管理 单位,担任审核、运营及数 据管理的职能。',
96
+      },
97
+    ],
98
+    componentTitle: '案例展示'
99
+  },
100
+  {
101
+    type: 'LeftMiddleRightImgTextPro',
102
+    listOrData: [
103
+      {
104
+        id: '1',
105
+        link: 'http://www.baidu.com',
106
+        thumb:
107
+          'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-4.jpg',
108
+        title: '因聚而生 数智有为”华为举办中国合作伙伴大会2024',
109
+        subTitle:
110
+          '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
111
+      },
112
+      {
113
+        id: '2',
114
+        link: 'http://www.baidu.com',
115
+        thumb:
116
+          'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-1.jpg',
117
+        title: '华为连续四年获Gartner Peer Insights™ SD-WAN “客户之选”',
118
+        subTitle:
119
+          '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
120
+      },
121
+      {
122
+        id: '3',
123
+        link: 'http://www.baidu.com',
124
+        thumb:
125
+          'https://e.huawei.com/-/mediae/images/home/newsevents/news/news-20240314-2.jpg',
126
+        title: '华为独家荣获Gartner Peer Insights™',
127
+        subTitle:
128
+          '华为智能型边缘方案,云边协同、统一运维,打造敏捷智能的园区IT边缘',
129
+      },
130
+    ],
131
+    componentTitle: '最新资讯',
132
+    btnBottomDisplay: 'true',
133
+    bhref: '/zh/news'
134
+  },
135
+  {
136
+    type: 'Footer',
137
+    lang: 'zh'
138
+  }
139
+]

+ 136
- 105
src/data/zh/house.js Parādīt failu

@@ -1,12 +1,19 @@
1
-export default {
2
-  sNav: ['成功案例', '新闻与活动', '行业话题', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/industries/commercial-market/commercial-market/commercial-market-branding-banner-pc2.jpg',
5
-    title: '房源交易',
6
-    content: '房源交易房源交易',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['成功案例', '新闻与活动', '行业话题', '相关资源'],
7 5
   },
8
-  carouselList: [
9
-    [
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/industries/commercial-market/commercial-market/commercial-market-branding-banner-pc2.jpg',
10
+      title: '房源交易',
11
+      content: '房源交易房源交易',
12
+    },
13
+  },
14
+  {
15
+    type: 'Carousel',
16
+    carouselList: [
10 17
       [
11 18
         {
12 19
           id: '1',
@@ -18,8 +25,6 @@ export default {
18 25
           },
19 26
         },
20 27
       ],
21
-    ],
22
-    [
23 28
       [
24 29
         {
25 30
           id: '2',
@@ -32,98 +37,124 @@ export default {
32 37
         },
33 38
       ],
34 39
     ],
35
-  ],
36
-  carouselList2: [
37
-    {
38
-      id: '1',
39
-      link: 'http://www.baidu.com',
40
-      thumb:
41
-        'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-driving-bank-of-beijing-digital.jpg',
42
-      title: '房源交易',
43
-      subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
44
-    },
45
-    {
46
-      id: '2',
47
-      link: 'http://www.baidu.com',
48
-      thumb:
49
-        'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-wuling-manufacturing-plant.jpg',
50
-      title: '房源交易',
51
-      subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
52
-    },
53
-    {
54
-      id: '3',
55
-      link: 'http://www.baidu.com',
56
-      thumb:
57
-        'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-zjhtcm.jpg',
58
-      title: '房源交易',
59
-      subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
60
-    },
61
-  ],
62
-  informationList: [
63
-    {
64
-      id: '1',
65
-      link: 'http://www.baidu.com',
66
-      thumb:
67
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
68
-      title: '房源交易',
69
-      subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
70
-    },
71
-    {
72
-      id: '2',
73
-      link: 'http://www.baidu.com',
74
-      thumb:
75
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
76
-      title: '房源交易',
77
-      subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
78
-    },
79
-    {
80
-      id: '3',
81
-      link: 'http://www.baidu.com',
82
-      thumb:
83
-        'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
84
-      title: '房源交易',
85
-      subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
86
-    },
87
-  ],
88
-  list2: [
89
-    {
90
-      id: '1',
91
-      tabName: '彩页',
92
-      children: [
93
-        {
94
-          title: '房源交易房源交易房源交易房源交易房源交易房源交易',
95
-        },
96
-        {
97
-          title: '房源交易房源交易房源交易房源交易房源交易',
98
-        },
99
-        {
100
-          title: '房源交易房源交易房源交易房源交易房源交易房源交易',
101
-        },
102
-        {
103
-          title:
104
-            '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
105
-        },
106
-        {
107
-          title:
108
-            '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
109
-        },
110
-        {
111
-          title:
112
-            '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
113
-        },
114
-      ],
115
-    },
116
-    {
117
-      id: '2',
118
-      tabName: '白皮书',
119
-      children: [
120
-        {
121
-          title: '房源交易房源交易房源交易房源交易房源交易',
122
-        },
123
-        {
124
-          title: '房源交易房源交易房源交易房源交易',
125
-        },
126
-      ],
127
-    },
128
-  ]
129
-}
40
+    componentTitle: '成功案例',
41
+    line: '0',
42
+    textAlign: 'text-center',
43
+    titleTextAlign: 'text-center',
44
+    componentsBg: 'bg-grey',
45
+  },
46
+  {
47
+    type: 'LeftMiddleRightImgTextPro',
48
+    listOrData: [
49
+      {
50
+        id: '1',
51
+        link: 'http://www.baidu.com',
52
+        thumb:
53
+          'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-driving-bank-of-beijing-digital.jpg',
54
+        title: '房源交易',
55
+        subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
56
+      },
57
+      {
58
+        id: '2',
59
+        link: 'http://www.baidu.com',
60
+        thumb:
61
+          'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-wuling-manufacturing-plant.jpg',
62
+        title: '房源交易',
63
+        subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
64
+      },
65
+      {
66
+        id: '3',
67
+        link: 'http://www.baidu.com',
68
+        thumb:
69
+          'https://e.huawei.com/-/mediae/images/home/casestorys/casestorys-zjhtcm.jpg',
70
+        title: '房源交易',
71
+        subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
72
+      },
73
+    ],
74
+    componentTitle: '新闻与活动',
75
+    componentsBg: 'bg-img',
76
+    hoverBackColor: 'white',
77
+  },
78
+  {
79
+    type: 'LeftMiddleRightImgTextPro',
80
+    listOrData: [
81
+      {
82
+        id: '1',
83
+        link: 'http://www.baidu.com',
84
+        thumb:
85
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-1.jpg',
86
+        title: '房源交易',
87
+        subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
88
+      },
89
+      {
90
+        id: '2',
91
+        link: 'http://www.baidu.com',
92
+        thumb:
93
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-2.jpg',
94
+        title: '房源交易',
95
+        subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
96
+      },
97
+      {
98
+        id: '3',
99
+        link: 'http://www.baidu.com',
100
+        thumb:
101
+          'https://e.huawei.com/-/mediae/EBG/Images/SolutionV4/mining-2021/xiejuting/daka/shouye/br-box-4.jpg',
102
+        title: '房源交易',
103
+        subTitle: '房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
104
+      },
105
+    ],
106
+    componentTitle: '行业话题'
107
+  },
108
+  {
109
+    type: 'VerticalNavigationContent',
110
+    list: [
111
+      {
112
+        id: '1',
113
+        tabName: '彩页',
114
+        children: [
115
+          {
116
+            title: '房源交易房源交易房源交易房源交易房源交易房源交易',
117
+          },
118
+          {
119
+            title: '房源交易房源交易房源交易房源交易房源交易',
120
+          },
121
+          {
122
+            title: '房源交易房源交易房源交易房源交易房源交易房源交易',
123
+          },
124
+          {
125
+            title:
126
+              '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
127
+          },
128
+          {
129
+            title:
130
+              '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
131
+          },
132
+          {
133
+            title:
134
+              '房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易房源交易',
135
+          },
136
+        ],
137
+      },
138
+      {
139
+        id: '2',
140
+        tabName: '白皮书',
141
+        children: [
142
+          {
143
+            title: '房源交易房源交易房源交易房源交易房源交易',
144
+          },
145
+          {
146
+            title: '房源交易房源交易房源交易房源交易',
147
+          },
148
+        ],
149
+      },
150
+    ],
151
+    componentTitle: '相关资源',
152
+    titleTextAlign: 'text-left',
153
+    textAlign: 'text-left',
154
+    componentsBg: 'bg-even',
155
+  },
156
+  {
157
+    type: 'Footer',
158
+    lang: 'zh'
159
+  }
160
+]

+ 28
- 0
src/data/zh/industrialInternet.js Parādīt failu

@@ -0,0 +1,28 @@
1
+export default [
2
+  {
3
+    type: 'NavSubMenu',
4
+    list: [
5
+      {
6
+        id: '1',
7
+        href: '/products-solutions/industrial-internet/mes',
8
+        url: '/public/menu/industrial-internet/mes.png',
9
+        title: '云致MES',
10
+        subTitle:
11
+          '在数字化、智能化技术的支持下,对楼宇的运营、管理和服务进行全面升级的一种新型楼宇形态',
12
+      },
13
+      {
14
+        id: '2',
15
+        href: '/products-solutions/industrial-internet/erp',
16
+        url: '/public/menu/industrial-internet/erp.png',
17
+        title: 'ERP',
18
+        subTitle:
19
+          '在数字化、智能化技术的支持下,对楼宇的运营、管理和服务进行全面升级的一种新型楼宇形态',
20
+      },
21
+    ]
22
+  }
23
+  ,
24
+  {
25
+    type: 'Footer',
26
+    lang: 'zh'
27
+  }
28
+]

+ 43
- 0
src/data/zh/lot.js Parādīt failu

@@ -0,0 +1,43 @@
1
+export default [
2
+  {
3
+    type: 'NavSubMenu',
4
+    list: [
5
+      {
6
+        id: '1',
7
+        href: '/products-solutions/lot/building',
8
+        url: '/public/menu/lot/building.png',
9
+        title: '智慧楼宇',
10
+        subTitle:
11
+          '在数字化、智能化技术的支持下,对楼宇的运营、管理和服务进行全面升级的一种新型楼宇形态',
12
+      },
13
+      {
14
+        id: '2',
15
+        href: '/products-solutions/lot/agriculture',
16
+        url: '/public/menu/lot/agriculture.png',
17
+        title: '智慧农业',
18
+        subTitle:
19
+          '现代科学技术与农业种植相结合,实现无人化、自动化、智能化管理的农业生产方式。',
20
+      },
21
+      {
22
+        id: '3',
23
+        href: '/products-solutions/lot/community',
24
+        url: '/public/menu/lot/community.png',
25
+        title: '智慧社区',
26
+        subTitle:
27
+          '在传统住宅社区的基础上,利用互联网、物联网、云计算、大数据等现代信息技术,实现社区管理智能化和服务智能化的新型居住社区。',
28
+      },
29
+      {
30
+        id: '4',
31
+        href: '/products-solutions/lot/exhibition-all',
32
+        url: '/public/menu/lot/exhibition-all.png',
33
+        title: '智慧展馆',
34
+        subTitle:
35
+          '运用先进的信息技术和智能化设备,将展馆打造成一个智能化、数字化、互动化的展览空间,为参观者提供更加丰富、便捷、高效的观展体验。',
36
+      },
37
+    ]
38
+  },
39
+  {
40
+    type: 'Footer',
41
+    lang: 'zh'
42
+  }
43
+]

+ 114
- 85
src/data/zh/mes.js Parādīt failu

@@ -1,93 +1,122 @@
1
-export default {
2
-  sNav: ['数智云简介', '数智云架构', '相关资源'],
3
-  imgProData: {
4
-    url: 'https://e.huawei.com/-/mediae/EBG/Images/ProductV2/enterprise-networking/switches/topic/switches-banner-pc-1130.jpg',
5
-    title: '云致MES',
6
-    content: '加工行业量身打造',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['数智云简介', '数智云架构', '相关资源'],
7 5
   },
8
-  list2: [
9
-    {
10
-      id: '1',
11
-      tabName: '应用价值',
12
-      children: [
13
-        {
14
-          title: '降低成本',
15
-          content:
16
-            '降低人工订单处理错误率 ,优化作业流程,  减少现场跟单成本 ,有效控制发货节奏 ,   对账省时省力。',
17
-        },
18
-        {
19
-          title: '提高效率',
20
-          content:
21
-            '信息采集、反馈实时精准 ,生产进度透 明 ,产销协同 ,作业更高效。',
22
-        },
23
-        {
24
-          title: '品质保证',
25
-          content: '生产过程品质流程透明 ,可有效追溯货 物 ,保证生产品质。',
26
-        },
27
-        {
28
-          title: '规避风险',
29
-          content:
30
-            '建立良性的绩效考核体系 ,规范考核标准,  提升员工积极性 ,实现企业与员工的双赢,  提升企业竟争力与战斗力 ,持续良性运营。',
31
-        },
32
-      ],
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: 'https://e.huawei.com/-/mediae/EBG/Images/ProductV2/enterprise-networking/switches/topic/switches-banner-pc-1130.jpg',
10
+      title: '云致MES',
11
+      content: '加工行业量身打造',
33 12
     },
34
-    {
35
-      id: '1',
36
-      tabName: '客户案例',
37
-      children: [
38
-        {
39
-          title: '庆有建筑',
40
-          content:
41
-            '公司位于昆山千灯镇西纬路18号 ,现有员工60余人;  专业从事以铝板为原材料 ,   加工制作铝幕墙、  各种室内铝板造型吊顶、   墙面和包柱铝板等产品的专业企业;   2019年9月导入数智云系统 ,  同年10月成功上线。',
42
-        },
43
-        {
44
-          title: '湘源建筑',
45
-          content:
46
-            '公司位于昆山市淀山湖镇黄浦江南路218号 ,  现有员工近80余人 ,是一家建筑    装饰材料的生产厂商 ,产品种类覆盖金属领域、  阳极氧化板、  4D木纹转印、  复    合板、  烤瓷铝板等。  2020年导入数智云系统。',
47
-        },
48
-        {
49
-          title: '众晶金属',
50
-          content:
51
-            '公司位于昆山市黄浦江北路586号 ,  现有员工近200人 ,  公司主营UL电控箱、     空压机外壳、   铝加工品、不锈钢加工品、钣金加工等。  2018年6月导入ERP及    数智云系统。',
52
-        },
53
-        {
54
-          title: '顺天金属',
55
-          content:
56
-            '公司位于昆山市千灯镇季广路208号 ,  现有员工近200人 ,  是一家精密钣金制    造企业 ,  主营钣金件加工、  电箱电柜生产。  2012年导入ERP ,  2019年至今 ,     陆续导入智物流、  ICS智能下料、  数智云等智能制造系统。',
57
-        },
58
-        {
59
-          title: '弘束金属',
13
+  },
14
+  {
15
+    type: 'LeftImgRightText',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        url: '/public/image/mes/wisdom.png',
20
+        children: {
21
+          title: '数智云',
60 22
           content:
61
-            '公司位于苏州高新区南御前街8号 ,现有员工150余人;  是一家专业从事精密钣 金制造、  机械零部件精加工、  表面喷涂的企业;  2021年3月导入数智云系统。',
23
+            '数智云是响应国家智能制造2025发展战略 ,  为非标行业量身打造的一套数字智能化管理平台!  结合非标行业小批量、  多机种、  非标定制的特性 ,充分考量传统ERP推行中的难点 ,运用流行的智能化技术以及云应用 ,重塑非标厂数字化管理模式,  实现简约管理、  降本增效!  是一个可以云布署、  免安装、  成本低、  零风险、  1周上线、  上线即见效的非标厂专属平台。',
62 24
         },
63
-        {
64
-          title: '阪青钣金',
25
+      },
26
+    ],
27
+    componentTitle: '数智云简介',
28
+    textAlign: 'text-center',
29
+    componentsBg: 'bg-grey',
30
+  },
31
+  {
32
+    type: 'LeftImgRightText',
33
+    listOrData: [
34
+      {
35
+        id: '1',
36
+        url: '/public/image/mes/architecture.png',
37
+        children: {
38
+          title: '数智云架构',
65 39
           content:
66
-            '公司位于昆山市淀山湖镇杨家角路18号 ,  20多年钣金加工经验 ,创立新时代精 密钣金制造工厂 ,产品涉及钣金件、  金属箱柜、  非标机械的制造等。  2018年导 入ERP ,  2019年导入数智云等智能制造系统。',
40
+            '依托 物联网 、  人工智能 、  大数据 、  云计算技术,  有效联接各类智能设备 、  移动终端 、  企业管理系统   等,  帮助企业快速实现内部物流移动化 、  透明化 、  精益化、  智能化的  “四化”管理,  从而提高效率,  降低成本,  提升   效益,  加速数字智能化转型升级,  强化企业竞争力。',
67 41
         },
68
-      ],
69
-    },
70
-  ],
71
-  leftImgRightTextData2: [
72
-    {
73
-      id: '1',
74
-      url: '/public/image/mes/wisdom.png',
75
-      children: {
76
-        title: '数智云',
77
-        content:
78
-          '数智云是响应国家智能制造2025发展战略 ,  为非标行业量身打造的一套数字智能化管理平台!  结合非标行业小批量、  多机种、  非标定制的特性 ,充分考量传统ERP推行中的难点 ,运用流行的智能化技术以及云应用 ,重塑非标厂数字化管理模式,  实现简约管理、  降本增效!  是一个可以云布署、  免安装、  成本低、  零风险、  1周上线、  上线即见效的非标厂专属平台。',
79 42
       },
80
-    },
81
-  ],
82
-  leftImgRightTextData3: [
83
-    {
84
-      id: '1',
85
-      url: '/public/image/mes/architecture.png',
86
-      children: {
87
-        title: '数智云架构',
88
-        content:
89
-          '依托 物联网 、  人工智能 、  大数据 、  云计算技术,  有效联接各类智能设备 、  移动终端 、  企业管理系统   等,  帮助企业快速实现内部物流移动化 、  透明化 、  精益化、  智能化的  “四化”管理,  从而提高效率,  降低成本,  提升   效益,  加速数字智能化转型升级,  强化企业竞争力。',
43
+    ],
44
+    componentTitle: '数智云架构',
45
+    textAlign: 'text-center',
46
+    componentsBg: 'bg-grey',
47
+  },
48
+  {
49
+    type: 'VerticalNavigationContent',
50
+    list: [
51
+      {
52
+        id: '1',
53
+        tabName: '应用价值',
54
+        children: [
55
+          {
56
+            title: '降低成本',
57
+            content:
58
+              '降低人工订单处理错误率 ,优化作业流程,  减少现场跟单成本 ,有效控制发货节奏 ,   对账省时省力。',
59
+          },
60
+          {
61
+            title: '提高效率',
62
+            content:
63
+              '信息采集、反馈实时精准 ,生产进度透 明 ,产销协同 ,作业更高效。',
64
+          },
65
+          {
66
+            title: '品质保证',
67
+            content: '生产过程品质流程透明 ,可有效追溯货 物 ,保证生产品质。',
68
+          },
69
+          {
70
+            title: '规避风险',
71
+            content:
72
+              '建立良性的绩效考核体系 ,规范考核标准,  提升员工积极性 ,实现企业与员工的双赢,  提升企业竟争力与战斗力 ,持续良性运营。',
73
+          },
74
+        ],
90 75
       },
91
-    },
92
-  ]
93
-}
76
+      {
77
+        id: '1',
78
+        tabName: '客户案例',
79
+        children: [
80
+          {
81
+            title: '庆有建筑',
82
+            content:
83
+              '公司位于昆山千灯镇西纬路18号 ,现有员工60余人;  专业从事以铝板为原材料 ,   加工制作铝幕墙、  各种室内铝板造型吊顶、   墙面和包柱铝板等产品的专业企业;   2019年9月导入数智云系统 ,  同年10月成功上线。',
84
+          },
85
+          {
86
+            title: '湘源建筑',
87
+            content:
88
+              '公司位于昆山市淀山湖镇黄浦江南路218号 ,  现有员工近80余人 ,是一家建筑    装饰材料的生产厂商 ,产品种类覆盖金属领域、  阳极氧化板、  4D木纹转印、  复    合板、  烤瓷铝板等。  2020年导入数智云系统。',
89
+          },
90
+          {
91
+            title: '众晶金属',
92
+            content:
93
+              '公司位于昆山市黄浦江北路586号 ,  现有员工近200人 ,  公司主营UL电控箱、     空压机外壳、   铝加工品、不锈钢加工品、钣金加工等。  2018年6月导入ERP及    数智云系统。',
94
+          },
95
+          {
96
+            title: '顺天金属',
97
+            content:
98
+              '公司位于昆山市千灯镇季广路208号 ,  现有员工近200人 ,  是一家精密钣金制    造企业 ,  主营钣金件加工、  电箱电柜生产。  2012年导入ERP ,  2019年至今 ,     陆续导入智物流、  ICS智能下料、  数智云等智能制造系统。',
99
+          },
100
+          {
101
+            title: '弘束金属',
102
+            content:
103
+              '公司位于苏州高新区南御前街8号 ,现有员工150余人;  是一家专业从事精密钣 金制造、  机械零部件精加工、  表面喷涂的企业;  2021年3月导入数智云系统。',
104
+          },
105
+          {
106
+            title: '阪青钣金',
107
+            content:
108
+              '公司位于昆山市淀山湖镇杨家角路18号 ,  20多年钣金加工经验 ,创立新时代精 密钣金制造工厂 ,产品涉及钣金件、  金属箱柜、  非标机械的制造等。  2018年导 入ERP ,  2019年导入数智云等智能制造系统。',
109
+          },
110
+        ],
111
+      },
112
+    ],
113
+    componentTitle: '相关资源',
114
+    titleTextAlign: 'text-left',
115
+    textAlign: 'text-left',
116
+    componentsBg: 'bg-even',
117
+  },
118
+  {
119
+    type: 'Footer',
120
+    lang: 'zh'
121
+  }
122
+]

+ 39
- 29
src/data/zh/news.js Parādīt failu

@@ -1,30 +1,40 @@
1
-export default {
2
-  imgProData: {
3
-    url: '//e.huawei.com/-/mediae/images/news/common-banner/news-banner-pc1.jpg',
4
-    title: '最新资讯',
5
-    content: '最新资讯最新资讯',
6
-  },
7
-  text: [
8
-    {
9
-      title:
10
-        '广东省地震局与华为签署全面合作协议1资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯',
11
-      content:
12
-        '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。1资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯',
13
-    },
14
-    {
15
-      title: '广东省地震局与华为签署全面合作协议',
16
-      content:
17
-        '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。',
18
-    },
19
-    {
20
-      title: '广东省地震局与华为签署全面合作协议',
21
-      content:
22
-        '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。',
1
+export default [
2
+  {
3
+    type: 'ImgPro',
4
+    listOrData: {
5
+      url: '//e.huawei.com/-/mediae/images/news/common-banner/news-banner-pc1.jpg',
6
+      title: '最新资讯',
7
+      content: '最新资讯最新资讯',
23 8
     },
24
-    {
25
-      title: '广东省地震局与华为签署全面合作协议',
26
-      content:
27
-        '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。',
28
-    },
29
-  ]
30
-}
9
+  },
10
+  {
11
+    type: 'List',
12
+    text: [
13
+      {
14
+        title:
15
+          '广东省地震局与华为签署全面合作协议1资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯',
16
+        content:
17
+          '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。1资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯资讯',
18
+      },
19
+      {
20
+        title: '广东省地震局与华为签署全面合作协议',
21
+        content:
22
+          '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。',
23
+      },
24
+      {
25
+        title: '广东省地震局与华为签署全面合作协议',
26
+        content:
27
+          '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。',
28
+      },
29
+      {
30
+        title: '广东省地震局与华为签署全面合作协议',
31
+        content:
32
+          '广东省地震局与华为在深圳签署全面合作协议,广东省地震局党组书记、局长孙佩卿,广东省地震局党组成员、副局长何晓灵,华为中国政企数字政府部委应急管理系统部部长史磊,华为政府&公共事业(广东)总经理郑欣等相关负责人出席签约仪式,何晓灵与郑欣分别代表双方签约。',
33
+      },
34
+    ]
35
+  },
36
+  {
37
+    type: 'Footer',
38
+    lang: 'zh'
39
+  }
40
+]

+ 42
- 0
src/data/zh/others.js Parādīt failu

@@ -0,0 +1,42 @@
1
+export default [
2
+  {
3
+    type: 'NavSubMenu',
4
+    list: [
5
+      {
6
+        id: '1',
7
+        href: '/products-solutions/others/eshop',
8
+        url: '/public/menu/others/eshop.png',
9
+        title: '电商系统',
10
+        subTitle: '商务活动中各参与方和支持企业进行交易活动的电子技术手段的集合',
11
+      },
12
+      {
13
+        id: '2',
14
+        href: '/products-solutions/others/shigongli',
15
+        url: '/public/menu/others/shigongli.png',
16
+        title: '旅游住宿',
17
+        subTitle:
18
+          '游客在旅游过程中所涉及的住宿环节,它是旅游活动的重要组成部分,为游客提供休息、放松和恢复精力的场所。',
19
+      },
20
+      {
21
+        id: '3',
22
+        href: '/products-solutions/others/house',
23
+        url: '/public/menu/others/house.png',
24
+        title: '房源交易',
25
+        subTitle:
26
+          '在房地产市场中,房屋权利人通过委托房地产经纪机构或其他渠道,将其房屋进行买卖、租赁或其他形式的交易行为。',
27
+      },
28
+      {
29
+        id: '4',
30
+        href: '/products-solutions/others/crm',
31
+        url: '/public/menu/others/crm.png',
32
+        title: 'CRM管理',
33
+        subTitle:
34
+          '利用软件、硬件和网络技术,为企业建立客户信息收集、管理、分析和利用的信息系统。该系统以客户数据的管理为核心,记录企业在市场营销和销售过程中与客户发生的各种交互行为',
35
+      },
36
+    ]
37
+  },
38
+  {
39
+    type: 'Footer',
40
+    lang: 'zh'
41
+  }
42
+]

+ 41
- 0
src/data/zh/productsSolutions.js Parādīt failu

@@ -0,0 +1,41 @@
1
+export default [
2
+  {
3
+    type: 'NavSubMenu',
4
+    list: [
5
+      {
6
+        id: '1',
7
+        href: '/products-solutions/lot',
8
+        url: '/public/menu/lot/building.png',
9
+        title: '智慧物联',
10
+        subTitle:
11
+          '将物联网与人工智能等先进技术结合实现更智能、高效、自动化的系统和应用',
12
+      },
13
+      {
14
+        id: '2',
15
+        href: '/products-solutions/industrial-internet',
16
+        url: '/public/menu/products-solutions/internet.png',
17
+        title: '工业互联网',
18
+        subTitle:
19
+          '新一代信息通信技术与工业经济深度融合的新型基础设施、应用模式和工业生态',
20
+      },
21
+      {
22
+        id: '3',
23
+        href: '/product/gov-ent-health',
24
+        url: '/public/menu/products-solutions/health.png',
25
+        title: '政企医疗',
26
+        subTitle: '政府与企业在医疗领域的合作或互动',
27
+      },
28
+      {
29
+        id: '4',
30
+        href: '/product/others',
31
+        url: '/public/menu/products-solutions/other.png',
32
+        title: '其他业务',
33
+        subTitle: '一个公司或组织的主营业务之外的所有其他活动或收入来源',
34
+      },
35
+    ]
36
+  },
37
+  {
38
+    type: 'Footer',
39
+    lang: 'zh'
40
+  }
41
+]

+ 90
- 67
src/data/zh/shigongli.js Parādīt failu

@@ -1,23 +1,36 @@
1
-export default {
2
-  sNav: ['旅游住宿', '成功案例', '相关资源'],
3
-  imgProData: {
4
-    url: '//e.huawei.com/-/mediae/images/industries/real-estate/real-estate/banner-pc.png',
5
-    title: '旅游住宿',
6
-    content: '旅游住宿旅游住宿',
1
+export default [
2
+  {
3
+    type: 'ScrollingNavbar',
4
+    sNav: ['旅游住宿', '成功案例', '相关资源'],
7 5
   },
8
-  leftImgRightTextList: [
9
-    {
10
-      id: '1',
11
-      url: 'https://e.huawei.com/-/mediae/images/solutions/computing/ascend-computing/ascend-computing-case-2.jpg',
12
-      children: {
13
-        title: '旅游住宿',
14
-        content:
15
-          '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
16
-      },
6
+  {
7
+    type: 'ImgPro',
8
+    listOrData: {
9
+      url: '//e.huawei.com/-/mediae/images/industries/real-estate/real-estate/banner-pc.png',
10
+      title: '旅游住宿',
11
+      content: '旅游住宿旅游住宿',
17 12
     },
18
-  ],
19
-  carouselList: [
20
-    [
13
+  },
14
+  {
15
+    type: 'LeftImgRightText',
16
+    listOrData: [
17
+      {
18
+        id: '1',
19
+        url: 'https://e.huawei.com/-/mediae/images/solutions/computing/ascend-computing/ascend-computing-case-2.jpg',
20
+        children: {
21
+          title: '旅游住宿',
22
+          content:
23
+            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
24
+        },
25
+      },
26
+    ],
27
+    componentTitle: '旅游住宿',
28
+    textAlign: 'text-center',
29
+    componentsBg: 'bg-grey',
30
+  },
31
+  {
32
+    type: 'Carousel',
33
+    list: [
21 34
       [
22 35
         {
23 36
           id: '1',
@@ -29,8 +42,6 @@ export default {
29 42
           },
30 43
         },
31 44
       ],
32
-    ],
33
-    [
34 45
       [
35 46
         {
36 47
           id: '2',
@@ -43,50 +54,62 @@ export default {
43 54
         },
44 55
       ],
45 56
     ],
46
-  ],
47
-  verticalNavigationContentList: [
48
-    {
49
-      id: '1',
50
-      tabName: '白皮书',
51
-      children: [
52
-        {
53
-          title:
54
-            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
55
-        },
56
-        {
57
-          title:
58
-            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
59
-        },
60
-        {
61
-          title:
62
-            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
63
-        },
64
-        {
65
-          title:
66
-            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
67
-        },
68
-        {
69
-          title:
70
-            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
71
-        },
72
-        {
73
-          title:
74
-            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
75
-        },
76
-      ],
77
-    },
78
-    {
79
-      id: '2',
80
-      tabName: '彩页',
81
-      children: [
82
-        {
83
-          title: '旅游住宿旅游住宿旅游住宿旅游住宿',
84
-        },
85
-        {
86
-          title:
87
-            '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
88
-        },
89
-      ],
90
-    },
91
-  ]
92
-}
57
+    componentTitle: '成功案例',
58
+    titleTextAlign: 'text-left',
59
+    textAlign: 'text-left',
60
+    line: '0',
61
+    componentsBg: 'bg-img',
62
+  },
63
+  {
64
+    type: 'VerticalNavigationContent',
65
+    list: [
66
+      {
67
+        id: '1',
68
+        tabName: '白皮书',
69
+        children: [
70
+          {
71
+            title:
72
+              '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
73
+          },
74
+          {
75
+            title:
76
+              '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
77
+          },
78
+          {
79
+            title:
80
+              '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
81
+          },
82
+          {
83
+            title:
84
+              '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
85
+          },
86
+          {
87
+            title:
88
+              '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
89
+          },
90
+          {
91
+            title:
92
+              '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
93
+          },
94
+        ],
95
+      },
96
+      {
97
+        id: '2',
98
+        tabName: '彩页',
99
+        children: [
100
+          {
101
+            title: '旅游住宿旅游住宿旅游住宿旅游住宿',
102
+          },
103
+          {
104
+            title:
105
+              '旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿旅游住宿',
106
+          },
107
+        ],
108
+      },
109
+    ],
110
+    componentTitle: '相关资源',
111
+    titleTextAlign: 'text-left',
112
+    textAlign: 'text-left',
113
+    componentsBg: 'bg-even',
114
+  }
115
+]

+ 6
- 23
src/pages/[lang]/about/index.astro Parādīt failu

@@ -1,31 +1,14 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
4
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
5
-import Carousel from '@/components/children/Carousel.astro'
6
-import ImgPro from '@/components/ImgPro.astro'
7
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
8
-import Text from '@/components/children/Text.astro'
9
-import Footer from '@/components/Footer.astro'
10
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
11 4
 const { lang = 'zh' } = Astro.params
12 5
 const list = Astro.locals.globalData?.about
13 6
 ---
14 7
 
15 8
 <Layout title="关于云致">
16
-  <ImgPro listOrData={list?.imgProData} />
17
-  <LeftImgRightText
18
-    listOrData={list?.data}
19
-    componentTitle="发展背景"
20
-    textAlign="text-center"
21
-    componentsBg="bg-grey"
22
-  />
23
-  <LeftMiddleRightImgTextPro
24
-    componentTitle="案例统计"
25
-    listOrData={list?.informationList2}
26
-    componentsBg="bg-img"
27
-  />
28
-  <ImgPro listOrData={list?.imgProData2} imgMb="5" />
29
-  <ImgPro listOrData={list?.imgProData3} imgMb="5" />
30
-  <Footer lang={lang} />
9
+  {
10
+    list.map((item, index) => {
11
+      return <DynamicComponent {...item} key={index} />
12
+    })
13
+  }
31 14
 </Layout>

+ 1
- 45
src/pages/[lang]/index.astro Parādīt failu

@@ -1,21 +1,5 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import Footer from '@/components/Footer.astro'
4
-import Navbar from '@/components/Navbar.astro'
5
-import ImgPro from '@/components/ImgPro.astro'
6
-import LeftOneRightFourImg from '@/components/LeftOneRightFourImg.astro'
7
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
8
-import Carousel from '@/components/children/Carousel.astro'
9
-import LeftRightCarousel from '@/components/LeftRightCarousel.astro'
10
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
11
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
12
-import FooterMenu from '@/components/NavMenu/FooterMenu.jsx'
13
-import menus from '@/data/zh/menuenu'
14
-import pageData from '@/data/zh/homepageage'
15
-
16
-import Container from '@/components/Container.astro'
17
-import MediaCard from '@/components/MediaCard/MediaCard1.astro'
18
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
19 3
 import DynamicComponent from '@/components/DynamicComponent.astro'
20 4
 import type { Code, Debug } from 'astro:components'
21 5
 
@@ -32,37 +16,9 @@ const list = Astro.locals.globalData?.homepage
32 16
 ---
33 17
 
34 18
 <Layout title="官网">
35
-
36 19
   {
37 20
     list.map((item, index) => {
38
-      <DynamicComponent {...item} key={index} />
21
+      return <DynamicComponent {...item} key={index} />
39 22
     })
40 23
   }
41
-
42
-
43
-  <!-- <ImgPro
44
-    listOrData={list?.imgProData}
45
-    ratio="16 / 9"
46
-    titleSize="60px"
47
-    textWeight="fw-bold"
48
-    position="positionBottom"
49
-  />
50
-  <LeftImgRightText
51
-    listOrData={list?.leftImgRightTextData}
52
-    componentTitle="产品与解决方案"
53
-    textAlign="text-center"
54
-  />
55
-  <LeftMiddleRightImgTextPro
56
-    listOrData={list?.caseList}
57
-    componentTitle="案例展示"
58
-  />
59
-
60
-  <LeftMiddleRightImgTextPro
61
-    listOrData={list?.informationList}
62
-    componentTitle="最新资讯"
63
-    btnBottomDisplay={true}
64
-    bhref=`/${lang}/news`
65
-  /> -->
66
-
67
-  <Footer lang={lang} />
68 24
 </Layout>

+ 6
- 12
src/pages/[lang]/news/index.astro Parādīt failu

@@ -1,20 +1,14 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import Carousel from '@/components/children/Carousel.astro'
6
-import ImgPro from '@/components/ImgPro.astro'
7
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
8
-import Text from '@/components/children/Text.astro'
9
-import List from '@/components/List.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 const { lang = 'zh' } = Astro.params
13 5
 const list = Astro.locals.globalData?.news
14 6
 ---
15 7
 
16 8
 <Layout title="最新资讯">
17
-  <ImgPro listOrData={list?.imgProData} />
18
-  <List text={list?.text} />
19
-  <Footer lang={lang} />
9
+  {
10
+    list.map((item, index) => {
11
+      return <DynamicComponent {...item} key={index} />
12
+    })
13
+  }
20 14
 </Layout>

+ 7
- 30
src/pages/[lang]/product/gov-ent-health/index.astro Parādīt failu

@@ -1,40 +1,17 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import NavSubMenu from '@/components/NavSubMenu.astro'
4
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
5 4
 const { lang = 'zh' } = Astro.params
6 5
 
7
-const list = [
8
-  {
9
-    id: '1',
10
-    href: '/products-solutions/gov-ent-health/gov',
11
-    url: '/public/menu/gov-ent-health/gov.png',
12
-    title: '政务服务',
13
-    subTitle:
14
-      '各级政府、各相关部门及事业单位,根据法律法规,为社会团体、企事业单位和个人提供的许可、确认、裁决、奖励、处罚等行政服务。',
15
-  },
16
-  {
17
-    id: '2',
18
-    href: '/products-solutions/gov-ent-health/bank',
19
-    url: '/public/menu/gov-ent-health/bank.png',
20
-    title: '银行业务',
21
-    subTitle:
22
-      '各级政府、各相关部门及事业单位,根据法律法规,为社会团体、企事业单位和个人提供的许可、确认、裁决、奖励、处罚等行政服务。',
23
-  },
24
-  {
25
-    id: '3',
26
-    href: '/products-solutions/gov-ent-health/healthcare',
27
-    url: '/public/menu/gov-ent-health/healthcare.png',
28
-    title: '医院医疗',
29
-    subTitle:
30
-      '各级政府、各相关部门及事业单位,根据法律法规,为社会团体、企事业单位和个人提供的许可、确认、裁决、奖励、处罚等行政服务。',
31
-  },
32
-]
6
+const list = Astro.locals.globalData?.govEntHealth
33 7
 ---
34 8
 
35 9
 <Layout title="菜单">
36
-  <NavSubMenu list={list} />
37
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
38 15
 </Layout>
39 16
 
40 17
 <style>

+ 7
- 37
src/pages/[lang]/product/others/index.astro Parādīt failu

@@ -1,47 +1,17 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import NavSubMenu from '@/components/NavSubMenu.astro'
4
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
5 4
 const { lang = 'zh' } = Astro.params
6 5
 
7
-const list = [
8
-  {
9
-    id: '1',
10
-    href: '/products-solutions/others/eshop',
11
-    url: '/public/menu/others/eshop.png',
12
-    title: '电商系统',
13
-    subTitle: '商务活动中各参与方和支持企业进行交易活动的电子技术手段的集合',
14
-  },
15
-  {
16
-    id: '2',
17
-    href: '/products-solutions/others/shigongli',
18
-    url: '/public/menu/others/shigongli.png',
19
-    title: '旅游住宿',
20
-    subTitle:
21
-      '游客在旅游过程中所涉及的住宿环节,它是旅游活动的重要组成部分,为游客提供休息、放松和恢复精力的场所。',
22
-  },
23
-  {
24
-    id: '3',
25
-    href: '/products-solutions/others/house',
26
-    url: '/public/menu/others/house.png',
27
-    title: '房源交易',
28
-    subTitle:
29
-      '在房地产市场中,房屋权利人通过委托房地产经纪机构或其他渠道,将其房屋进行买卖、租赁或其他形式的交易行为。',
30
-  },
31
-  {
32
-    id: '4',
33
-    href: '/products-solutions/others/crm',
34
-    url: '/public/menu/others/crm.png',
35
-    title: 'CRM管理',
36
-    subTitle:
37
-      '利用软件、硬件和网络技术,为企业建立客户信息收集、管理、分析和利用的信息系统。该系统以客户数据的管理为核心,记录企业在市场营销和销售过程中与客户发生的各种交互行为',
38
-  },
39
-]
6
+const list = Astro.locals.globalData?.others
40 7
 ---
41 8
 
42 9
 <Layout title="菜单">
43
-  <NavSubMenu list={list} />
44
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
45 15
 </Layout>
46 16
 
47 17
 <style>

+ 6
- 38
src/pages/[lang]/products-solutions/gov-ent-health/bank/custom/index.astro Parādīt failu

@@ -1,47 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import ImgPro from '@/components/ImgPro.astro'
6
-import Carousel from '@/components/children/Carousel.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import Text3 from '@/components/children/Text3.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 
13 5
 const { lang = 'zh' } = Astro.params
14 6
 const list = Astro.locals.globalData?.custom
15 7
 ---
16 8
 
17 9
 <Layout title="定制开发">
18
-  <ScrollingNavbar sNav={list?.sNav} />
19
-  <ImgPro listOrData={list?.imgProData} />
20
-  <LeftMiddleRightImgTextPro
21
-    componentTitle="场景化解决方案"
22
-    listOrData={list?.informationList}
23
-    white="white"
24
-  />
25
-  <LeftMiddleRightImgTextPro
26
-    componentTitle="相关产品"
27
-    listOrData={list?.carouselList}
28
-  />
29
-  <Carousel
30
-    componentTitle="成功案例"
31
-    list={list?.carouselList2}
32
-    Children={LeftImgRightText}
33
-    line="0"
34
-    componentsBg="bg-img"
35
-  />
36
-  <VerticalNavigationContent
37
-    list={list?.list2}
38
-    ellipsis="line-ellipsis-small"
39
-    ellipsis="line-ellipsis-small"
40
-    Children={Text3}
41
-    componentTitle="相关资源"
42
-    titleTextAlign="text-left"
43
-    textAlign="text-left"
44
-    componentsBg="bg-even"
45
-  />
46
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
47 15
 </Layout>

+ 6
- 40
src/pages/[lang]/products-solutions/gov-ent-health/bank/index.astro Parādīt failu

@@ -1,49 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import ImgPro from '@/components/ImgPro.astro'
6
-import Carousel from '@/components/children/Carousel.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import Text3 from '@/components/children/Text3.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 
13 5
 const { lang = 'zh' } = Astro.params
14 6
 const list = Astro.locals.globalData?.bank
15 7
 ---
16 8
 
17 9
 <Layout title="银行业务">
18
-  <ScrollingNavbar sNav={list?.sNav} />
19
-  <ImgPro listOrData={list?.imgProData} />
20
-  <LeftMiddleRightImgTextPro
21
-    componentTitle="场景化解决方案"
22
-    listOrData={list?.informationList}
23
-    componentsBg="bg-img"
24
-    white="white"
25
-  />
26
-  <Carousel
27
-    componentTitle="我们如何帮助客户成功"
28
-    list={list?.carouselList}
29
-    line="0"
30
-    Children={LeftImgRightText}
31
-    componentsBg="bg-grey"
32
-  />
33
-  <LeftMiddleRightImgTextPro
34
-    componentTitle="新闻资讯"
35
-    listOrData={list?.carouselList2}
36
-    componentsBg="bg-img"
37
-  />
38
-  <VerticalNavigationContent
39
-    list={list?.verticalNavigationContentList}
40
-    ellipsis="line-ellipsis-small"
41
-    ellipsis="line-ellipsis-small"
42
-    Children={Text3}
43
-    componentTitle="相关资源"
44
-    titleTextAlign="text-left"
45
-    textAlign="text-left"
46
-    componentsBg="bg-even"
47
-  />
48
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
49 15
 </Layout>

+ 6
- 27
src/pages/[lang]/products-solutions/gov-ent-health/gov/civilized-city/index.astro Parādīt failu

@@ -1,36 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import ImgPro from '@/components/ImgPro.astro'
6
-import Carousel from '@/components/children/Carousel.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import Text3 from '@/components/children/Text3.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
11 4
 
12 5
 const { lang = 'zh' } = Astro.params
13 6
 const list = Astro.locals.globalData?.civilizedCity
14 7
 ---
15 8
 
16 9
 <Layout title="文明创城">
17
-  <ScrollingNavbar sNav={list?.sNav} />
18
-  <ImgPro listOrData={list?.imgProData} />
19
-  <LeftImgRightText
20
-    listOrData={list?.leftImgRightTextList}
21
-    componentTitle="场景化解决方案"
22
-    textAlign="text-center"
23
-    componentsBg="bg-grey"
24
-  />
25
-  <VerticalNavigationContent
26
-    list={list?.list2}
27
-    ellipsis="line-ellipsis-small"
28
-    ellipsis="line-ellipsis-small"
29
-    Children={Text3}
30
-    componentTitle="相关资源"
31
-    titleTextAlign="text-left"
32
-    textAlign="text-left"
33
-    componentsBg="bg-even"
34
-  />
35
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
36 15
 </Layout>

+ 6
- 44
src/pages/[lang]/products-solutions/gov-ent-health/gov/index.astro Parādīt failu

@@ -1,53 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import ImgPro from '@/components/ImgPro.astro'
6
-import Carousel from '@/components/children/Carousel.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import Text3 from '@/components/children/Text3.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
11
-import Footer from '@/components/Footer.astro'
12
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
13 4
 
14 5
 const { lang = 'zh' } = Astro.params
15 6
 const list = Astro.locals.globalData?.gov
16 7
 ---
17 8
 
18 9
 <Layout title="政务服务">
19
-  <ScrollingNavbar sNav={list?.sNav} />
20
-  <ImgPro listOrData={list?.imgProData} />
21
-  <LeftMiddleRightImgTextPro
22
-    componentTitle="场景化解决方案"
23
-    listOrData={list?.informationList}
24
-    componentsBg="bg-img"
25
-    white="white"
26
-  />
27
-  <Carousel
28
-    componentTitle="成功案例"
29
-    list={list?.carouselList}
30
-    line="0"
31
-    Children={LeftImgRightText}
32
-    componentsBg="bg-grey"
33
-  />
34
-  <LeftMiddleRightText
35
-    componentTitle="新闻与活动"
36
-    listOrData={list?.carouselList2}
37
-    btnDisplay={false}
38
-    titleHeight="3.2"
39
-    ellipsis="line-ellipsis-small"
40
-    pt="4"
41
-  />
42
-  <VerticalNavigationContent
43
-    list={list?.list2}
44
-    ellipsis="line-ellipsis-small"
45
-    ellipsis="line-ellipsis-small"
46
-    Children={Text3}
47
-    componentTitle="相关资源"
48
-    titleTextAlign="text-left"
49
-    textAlign="text-left"
50
-    componentsBg="bg-even"
51
-  />
52
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
53 15
 </Layout>

+ 6
- 40
src/pages/[lang]/products-solutions/gov-ent-health/healthcare/index.astro Parādīt failu

@@ -1,49 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import ImgPro from '@/components/ImgPro.astro'
6
-import Carousel from '@/components/children/Carousel.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import Text3 from '@/components/children/Text3.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 
13 5
 const { lang = 'zh' } = Astro.params
14 6
 const list = Astro.locals.globalData?.healthcare
15 7
 ---
16 8
 
17 9
 <Layout title="医院医疗">
18
-  <ScrollingNavbar sNav={list?.sNav} />
19
-  <ImgPro listOrData={list?.imgProData} />
20
-  <LeftImgRightText
21
-    listOrData={list?.leftImgRightTextList}
22
-    componentTitle="场景化解决方案"
23
-    textAlign="text-center"
24
-    componentsBg="bg-grey"
25
-  />
26
-  <Carousel
27
-    componentTitle="成功案例"
28
-    list={list?.carouselList}
29
-    Children={LeftImgRightText}
30
-    line="0"
31
-    componentsBg="bg-img"
32
-  />
33
-  <LeftMiddleRightImgTextPro
34
-    componentTitle="相关产品"
35
-    listOrData={list?.carouselList2}
36
-    componentsBg="bg-img"
37
-  />
38
-  <VerticalNavigationContent
39
-    list={list?.list2}
40
-    ellipsis="line-ellipsis-small"
41
-    ellipsis="line-ellipsis-small"
42
-    Children={Text3}
43
-    componentTitle="相关资源"
44
-    titleTextAlign="text-left"
45
-    textAlign="text-left"
46
-    componentsBg="bg-even"
47
-  />
48
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
49 15
 </Layout>

+ 7
- 39
src/pages/[lang]/products-solutions/index.astro Parādīt failu

@@ -1,49 +1,17 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import NavMenu from '@/components/NavMenu/index.jsx'
4
-import NavSubMenu from '@/components/NavSubMenu.astro'
5
-import Footer from '@/components/Footer.astro'
6
-import menu from '@/data/zh/menu.js'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
7 4
 const { lang = 'zh' } = Astro.params
8 5
 
9
-const list = [
10
-  {
11
-    id: '1',
12
-    href: '/products-solutions/lot',
13
-    url: '/public/menu/lot/building.png',
14
-    title: '智慧物联',
15
-    subTitle:
16
-      '将物联网与人工智能等先进技术结合实现更智能、高效、自动化的系统和应用',
17
-  },
18
-  {
19
-    id: '2',
20
-    href: '/products-solutions/industrial-internet',
21
-    url: '/public/menu/products-solutions/internet.png',
22
-    title: '工业互联网',
23
-    subTitle:
24
-      '新一代信息通信技术与工业经济深度融合的新型基础设施、应用模式和工业生态',
25
-  },
26
-  {
27
-    id: '3',
28
-    href: '/product/gov-ent-health',
29
-    url: '/public/menu/products-solutions/health.png',
30
-    title: '政企医疗',
31
-    subTitle: '政府与企业在医疗领域的合作或互动',
32
-  },
33
-  {
34
-    id: '4',
35
-    href: '/product/others',
36
-    url: '/public/menu/products-solutions/other.png',
37
-    title: '其他业务',
38
-    subTitle: '一个公司或组织的主营业务之外的所有其他活动或收入来源',
39
-  },
40
-]
6
+const list = Astro.locals.globalData?.productsSolutions
41 7
 ---
42 8
 
43 9
 <Layout title="菜单">
44
-  <NavMenu menus={menu} lang={lang} client:load />
45
-  <NavSubMenu list={list} />
46
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
47 15
 </Layout>
48 16
 
49 17
 <style>

+ 6
- 47
src/pages/[lang]/products-solutions/industrial-internet/erp/index.astro Parādīt failu

@@ -1,56 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import ImgPro from '@/components/ImgPro.astro'
6
-import Carousel from '@/components/children/Carousel.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
9
-import Text3 from '@/components/children/Text3.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
13 4
 
14 5
 const { lang = 'zh' } = Astro.params
15 6
 const list = Astro.locals.globalData?.erp
16 7
 ---
17 8
 
18 9
 <Layout title="ERP">
19
-  <ScrollingNavbar sNav={list?.sNav} />
20
-  <ImgPro listOrData={list?.imgProData} />
21
-  <LeftImgRightText
22
-    listOrData={list?.leftImgRightTextList}
23
-    componentTitle="选择云致的理由"
24
-    textAlign="text-center"
25
-    componentsBg="bg-grey"
26
-  />
27
-  <LeftMiddleRightImgTextPro
28
-    componentTitle="场景化解决方案"
29
-    listOrData={list?.informationList}
30
-    componentsBg="bg-img"
31
-    white="white"
32
-  />
33
-  <Carousel
34
-    componentTitle="我们如何帮助客户成功"
35
-    list={list?.carouselList}
36
-    line="0"
37
-    Children={LeftImgRightText}
38
-    componentsBg="bg-grey"
39
-  />
40
-  <LeftMiddleRightImgTextPro
41
-    componentTitle="配套产品"
42
-    listOrData={list?.informationList2}
43
-    componentsBg="bg-img"
44
-  />
45
-  <VerticalNavigationContent
46
-    list={list?.list2}
47
-    ellipsis="line-ellipsis-small"
48
-    ellipsis="line-ellipsis-small"
49
-    Children={Text3}
50
-    componentTitle="相关资源"
51
-    titleTextAlign="text-left"
52
-    textAlign="text-left"
53
-    componentsBg="bg-even"
54
-  />
55
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
56 15
 </Layout>

+ 7
- 23
src/pages/[lang]/products-solutions/industrial-internet/index.astro Parādīt failu

@@ -1,32 +1,16 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import NavSubMenu from '@/components/NavSubMenu.astro'
4
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
5 4
 const { lang = 'zh' } = Astro.params
6
-
7
-const list = [
8
-  {
9
-    id: '1',
10
-    href: '/products-solutions/industrial-internet/mes',
11
-    url: '/public/menu/industrial-internet/mes.png',
12
-    title: '云致MES',
13
-    subTitle:
14
-      '在数字化、智能化技术的支持下,对楼宇的运营、管理和服务进行全面升级的一种新型楼宇形态',
15
-  },
16
-  {
17
-    id: '2',
18
-    href: '/products-solutions/industrial-internet/erp',
19
-    url: '/public/menu/industrial-internet/erp.png',
20
-    title: 'ERP',
21
-    subTitle:
22
-      '在数字化、智能化技术的支持下,对楼宇的运营、管理和服务进行全面升级的一种新型楼宇形态',
23
-  },
24
-]
5
+const list = Astro.locals.globalData?.industrialInternet
25 6
 ---
26 7
 
27 8
 <Layout title="菜单">
28
-  <NavSubMenu list={list} />
29
-  <Footer lang={lang} />
9
+  {
10
+    list.map((item, index) => {
11
+      return <DynamicComponent {...item} key={index} />
12
+    })
13
+  }
30 14
 </Layout>
31 15
 
32 16
 <style>

+ 6
- 32
src/pages/[lang]/products-solutions/industrial-internet/mes/index.astro Parādīt failu

@@ -1,41 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
5
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
6
-import Carousel from '@/components/children/Carousel.astro'
7
-import ImgPro from '@/components/ImgPro.astro'
8
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
9
-import Text3 from '@/components/children/Text3.astro'
10
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
11 4
 
12 5
 const { lang = 'zh' } = Astro.params
13 6
 const list = Astro.locals.globalData?.mes
14 7
 ---
15 8
 
16 9
 <Layout title="云致MES">
17
-  <ScrollingNavbar sNav={list?.sNav} />
18
-  <ImgPro listOrData={list?.imgProData} />
19
-  <LeftImgRightText
20
-    listOrData={list?.leftImgRightTextData2}
21
-    componentTitle="数智云简介"
22
-    textAlign="text-center"
23
-    componentsBg="bg-grey"
24
-  />
25
-  <LeftImgRightText
26
-    listOrData={list?.leftImgRightTextData3}
27
-    componentTitle="数智云架构"
28
-    textAlign="text-center"
29
-    componentsBg="bg-grey"
30
-  />
31
-  <VerticalNavigationContent
32
-    list={list?.list2}
33
-    ellipsis="line-ellipsis-small"
34
-    Children={Text3}
35
-    componentTitle="相关资源"
36
-    titleTextAlign="text-left"
37
-    textAlign="text-left"
38
-    componentsBg="bg-even"
39
-  />
40
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
41 15
 </Layout>

+ 6
- 38
src/pages/[lang]/products-solutions/lot/agriculture/index.astro Parādīt failu

@@ -1,46 +1,14 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import Carousel from '@/components/children/Carousel.astro'
6
-import ImgPro from '@/components/ImgPro.astro'
7
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
8
-import Text3 from '@/components/children/Text3.astro'
9
-import Footer from '@/components/Footer.astro'
10
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 const { lang = 'zh' } = Astro.params
13 5
 const list = Astro.locals.globalData?.agriculture
14 6
 ---
15 7
 
16 8
 <Layout title="智慧农业">
17
-  <ScrollingNavbar sNav={list?.sNav} />
18
-  <ImgPro listOrData={list?.imgProData} />
19
-  <LeftMiddleRightImgTextPro
20
-    componentTitle="项目内容"
21
-    listOrData={list?.informationList}
22
-    componentsBg="bg-img"
23
-    white="white"
24
-  />
25
-  <LeftImgRightText
26
-    listOrData={list?.data}
27
-    componentTitle="大数据可视化平台"
28
-    textAlign="text-center"
29
-    componentsBg="bg-grey"
30
-  />
31
-  <LeftMiddleRightImgTextPro
32
-    componentTitle="”四情“监测系统"
33
-    listOrData={list?.informationList2}
34
-    componentsBg="bg-img"
35
-  />
36
-  <VerticalNavigationContent
37
-    list={list?.list2}
38
-    ellipsis="line-ellipsis-small"
39
-    Children={Text3}
40
-    componentTitle="相关资源"
41
-    titleTextAlign="text-left"
42
-    textAlign="text-left"
43
-    componentsBg="bg-even"
44
-  />
45
-  <Footer lang={lang} />
9
+  {
10
+    list.map((item, index) => {
11
+      return <DynamicComponent {...item} key={index} />
12
+    })
13
+  }
46 14
 </Layout>

+ 6
- 66
src/pages/[lang]/products-solutions/lot/building/index.astro Parādīt failu

@@ -1,75 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import Img from '@/components/children/Img.astro'
4
-import Text3 from '@/components/children/Text3.astro'
5
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
6
-import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
7
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
8
-import Carousel from '@/components/children/Carousel.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import ImgPro from '@/components/ImgPro.astro'
11
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
12
-import Footer from '@/components/Footer.astro'
13
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
14 4
 
15 5
 const { lang = 'zh' } = Astro.params
16 6
 const list = Astro.locals.globalData?.building
17 7
 ---
18 8
 
19 9
 <Layout title="智慧楼宇">
20
-  <ScrollingNavbar sNav={list?.sNav} />
21
-  <ImgPro listOrData={list?.imgProData1} />
22
-  <LeftMiddleRightText
23
-    ellipsis="line-ellipsis-small"
24
-    componentTitle="智慧通行"
25
-    listOrData={list?.carouselList4}
26
-    titleTextAlign="text-end"
27
-    textAlign="text-end"
28
-    titleHeight="3.2"
29
-    pt="4"
30
-    componentsBg="bg-grey"
31
-  />
32
-  <LeftMiddleRightImgTextPro
33
-    componentTitle="智能识别便捷通行"
34
-    listOrData={list?.informationList2}
35
-    componentsBg="bg-img"
36
-    white="white"
37
-  />
38
-  <LeftMiddleRightText
39
-    componentTitle="访客授权快捷登记"
40
-    listOrData={list?.carouselList4}
41
-    btnDisplay={false}
42
-    titleTextAlign="text-end"
43
-    textAlign="text-end"
44
-    titleHeight="3.2"
45
-    ellipsis="line-ellipsis-small"
46
-    pt="4"
47
-    componentsBg="bg-grey"
48
-  />
49
-  <LeftMiddleRightText
50
-    componentTitle="通行记录线上管理"
51
-    listOrData={list?.carouselList5}
52
-    btnDisplay={false}
53
-    titleTextAlign="text-end"
54
-    textAlign="text-end"
55
-    titleHeight="3.2"
56
-    ellipsis="line-ellipsis-small"
57
-    pt="4"
58
-  />
59
-  <ImgPro listOrData={list?.imgProData2} />
60
-  <LeftMiddleRightImgTextPro
61
-    componentTitle="智慧识别便捷通行"
62
-    listOrData={list?.informationList3}
63
-  />
64
-  <ImgPro listOrData={list?.imgProData3} />
65
-  <VerticalNavigationContent
66
-    list={list?.list2}
67
-    ellipsis="line-ellipsis-small"
68
-    Children={Text3}
69
-    componentTitle="相关资源"
70
-    titleTextAlign="text-left"
71
-    textAlign="text-left"
72
-    componentsBg="bg-even"
73
-  />
74
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
75 15
 </Layout>

+ 6
- 38
src/pages/[lang]/products-solutions/lot/community/index.astro Parādīt failu

@@ -1,47 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
5
-import Carousel from '@/components/children/Carousel.astro'
6
-import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
7
-import ImgPro from '@/components/ImgPro.astro'
8
-import Text3 from '@/components/children/Text3.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 
13 5
 const { lang = 'zh' } = Astro.params
14 6
 const list = Astro.locals.globalData?.community
15 7
 ---
16 8
 
17 9
 <Layout title="智慧社区">
18
-  <ScrollingNavbar sNav={list?.sNav} />
19
-  <ImgPro listOrData={list?.imgProData} />
20
-  <LeftMiddleRightImgTextPro
21
-    componentTitle="社区目的"
22
-    listOrData={list?.informationList}
23
-    componentsBg="bg-img"
24
-    white="white"
25
-  />
26
-  <LeftMiddleRightText
27
-    componentTitle="客户需求程度"
28
-    listOrData={list?.carouselList2}
29
-    btnDisplay={false}
30
-    titleTextAlign="text-end"
31
-    textAlign="text-end"
32
-    titleHeight="3.2"
33
-    ellipsis="line-ellipsis-small"
34
-    pt="4"
35
-    componentsBg="bg-grey"
36
-  />
37
-  <VerticalNavigationContent
38
-    list={list?.list2}
39
-    ellipsis="line-ellipsis-small"
40
-    Children={Text3}
41
-    componentTitle="相关资源"
42
-    titleTextAlign="text-left"
43
-    textAlign="text-left"
44
-    componentsBg="bg-even"
45
-  />
46
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
47 15
 </Layout>

+ 6
- 32
src/pages/[lang]/products-solutions/lot/exhibition-all/index.astro Parādīt failu

@@ -9,42 +9,16 @@ import VerticalNavigationContent from '@/components/VerticalNavigationContent.as
9 9
 import Text3 from '@/components/children/Text3.astro'
10 10
 import Footer from '@/components/Footer.astro'
11 11
 import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
12
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 13
 
13 14
 const { lang = 'zh' } = Astro.params
14 15
 const list = Astro.locals.globalData?.exhibitionAll
15 16
 ---
16 17
 
17 18
 <Layout title="智慧展馆">
18
-  <ScrollingNavbar sNav={list?.sNav} />
19
-  <ImgPro listOrData={list?.imgProData} />
20
-  <LeftMiddleRightImgTextPro
21
-    componentTitle="5G网络覆盖"
22
-    listOrData={list?.informationList}
23
-    componentsBg="bg-img"
24
-    white="white"
25
-  />
26
-  <Carousel
27
-    componentTitle="成功案例"
28
-    list={list?.carouselList2}
29
-    Children={LeftImgRightText}
30
-    line="0"
31
-    textAlign="text-center"
32
-    titleTextAlign="text-center"
33
-    componentsBg="bg-grey"
34
-  />
35
-  <LeftMiddleRightImgTextPro
36
-    componentTitle="界面设计与用户体验"
37
-    listOrData={list?.informationList2}
38
-    componentsBg="bg-img"
39
-  />
40
-  <VerticalNavigationContent
41
-    list={list?.list2}
42
-    ellipsis="line-ellipsis-small"
43
-    Children={Text3}
44
-    componentTitle="相关资源"
45
-    titleTextAlign="text-left"
46
-    textAlign="text-left"
47
-    componentsBg="bg-even"
48
-  />
49
-  <Footer lang={lang} />
19
+  {
20
+    list.map((item, index) => {
21
+      return <DynamicComponent {...item} key={index} />
22
+    })
23
+  }
50 24
 </Layout>

+ 7
- 39
src/pages/[lang]/products-solutions/lot/index.astro Parādīt failu

@@ -1,48 +1,16 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import NavSubMenu from '@/components/NavSubMenu.astro'
4
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
5 4
 const { lang = 'zh' } = Astro.params
6
-
7
-const list = [
8
-  {
9
-    id: '1',
10
-    href: '/products-solutions/lot/building',
11
-    url: '/public/menu/lot/building.png',
12
-    title: '智慧楼宇',
13
-    subTitle:
14
-      '在数字化、智能化技术的支持下,对楼宇的运营、管理和服务进行全面升级的一种新型楼宇形态',
15
-  },
16
-  {
17
-    id: '2',
18
-    href: '/products-solutions/lot/agriculture',
19
-    url: '/public/menu/lot/agriculture.png',
20
-    title: '智慧农业',
21
-    subTitle:
22
-      '现代科学技术与农业种植相结合,实现无人化、自动化、智能化管理的农业生产方式。',
23
-  },
24
-  {
25
-    id: '3',
26
-    href: '/products-solutions/lot/community',
27
-    url: '/public/menu/lot/community.png',
28
-    title: '智慧社区',
29
-    subTitle:
30
-      '在传统住宅社区的基础上,利用互联网、物联网、云计算、大数据等现代信息技术,实现社区管理智能化和服务智能化的新型居住社区。',
31
-  },
32
-  {
33
-    id: '4',
34
-    href: '/products-solutions/lot/exhibition-all',
35
-    url: '/public/menu/lot/exhibition-all.png',
36
-    title: '智慧展馆',
37
-    subTitle:
38
-      '运用先进的信息技术和智能化设备,将展馆打造成一个智能化、数字化、互动化的展览空间,为参观者提供更加丰富、便捷、高效的观展体验。',
39
-  },
40
-]
5
+const list = Astro.locals.globalData?.lot
41 6
 ---
42 7
 
43 8
 <Layout title="菜单">
44
-  <NavSubMenu list={list} />
45
-  <Footer lang={lang} />
9
+  {
10
+    list.map((item, index) => {
11
+      return <DynamicComponent {...item} key={index} />
12
+    })
13
+  }
46 14
 </Layout>
47 15
 
48 16
 <style>

+ 6
- 31
src/pages/[lang]/products-solutions/others/crm/index.astro Parādīt failu

@@ -1,40 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import Carousel from '@/components/children/Carousel.astro'
5
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
6
-import Text3 from '@/components/children/Text3.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import ImgPro from '@/components/ImgPro.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 
13 5
 const { lang = 'zh' } = Astro.params
14 6
 const list = Astro.locals.globalData?.crm
15 7
 ---
16 8
 
17 9
 <Layout title="CRM管理">
18
-  <ScrollingNavbar sNav={list?.sNav} />
19
-  <ImgPro listOrData={list?.imgProData} />
20
-  <LeftMiddleRightImgTextPro
21
-    componentTitle="服务产品"
22
-    listOrData={list?.informationList}
23
-    componentsBg="bg-img"
24
-  />
25
-  <LeftImgRightText
26
-    listOrData={list?.leftImgRightTextList}
27
-    componentTitle="成功案例"
28
-    textAlign="text-center"
29
-  />
30
-  <VerticalNavigationContent
31
-    list={list?.verticalNavigationContentList}
32
-    ellipsis="line-ellipsis-small"
33
-    Children={Text3}
34
-    componentTitle="相关资源"
35
-    titleTextAlign="text-left"
36
-    textAlign="text-left"
37
-    componentsBg="bg-even"
38
-  />
39
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
40 15
 </Layout>

+ 6
- 28
src/pages/[lang]/products-solutions/others/eshop/index.astro Parādīt failu

@@ -1,37 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import Carousel from '@/components/children/Carousel.astro'
5
-import Text3 from '@/components/children/Text3.astro'
6
-import ImgPro from '@/components/ImgPro.astro'
7
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
8
-import LeftMiddleRightText from '@/components/LeftMiddleRightText.astro'
9
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
10 4
 
11 5
 const { lang = 'zh' } = Astro.params
12 6
 const list = Astro.locals.globalData?.eshop
13 7
 ---
14 8
 
15 9
 <Layout title="电商系统">
16
-  <ScrollingNavbar sNav={list?.sNav} />
17
-  <ImgPro listOrData={list?.imgProData} />
18
-  <LeftMiddleRightText
19
-    componentTitle="电商产品"
20
-    listOrData={list?.carouselList}
21
-    btnDisplay={false}
22
-    titleHeight="3.2"
23
-    ellipsis="line-ellipsis-small"
24
-    pt="4"
25
-    componentsBg="bg-grey"
26
-  />
27
-  <VerticalNavigationContent
28
-    list={list?.verticalNavigationContentList}
29
-    ellipsis="line-ellipsis-small"
30
-    Children={Text3}
31
-    componentTitle="相关资源"
32
-    titleTextAlign="text-left"
33
-    textAlign="text-left"
34
-    componentsBg="bg-even"
35
-  />
36
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
37 15
 </Layout>

+ 6
- 40
src/pages/[lang]/products-solutions/others/house/index.astro Parādīt failu

@@ -1,49 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import Carousel from '@/components/children/Carousel.astro'
5
-import LeftMiddleRightImgText from '@/components/LeftMiddleRightImgText.astro'
6
-import Text3 from '@/components/children/Text3.astro'
7
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
8
-import ImgPro from '@/components/ImgPro.astro'
9
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
10
-import Footer from '@/components/Footer.astro'
11
-import LeftMiddleRightImgTextPro from '@/components/LeftMiddleRightImgTextPro/index.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
12 4
 
13 5
 const { lang = 'zh' } = Astro.params
14 6
 const list = Astro.locals.globalData?.house
15 7
 ---
16 8
 
17 9
 <Layout title="房源交易">
18
-  <ScrollingNavbar sNav={list?.sNav} />
19
-  <ImgPro listOrData={list?.imgProData} />
20
-  <Carousel
21
-    componentTitle="成功案例"
22
-    list={list?.carouselList}
23
-    Children={LeftImgRightText}
24
-    line="0"
25
-    textAlign="text-center"
26
-    titleTextAlign="text-center"
27
-    componentsBg="bg-grey"
28
-  />
29
-  <LeftMiddleRightImgTextPro
30
-    componentTitle="新闻与活动"
31
-    listOrData={list?.carouselList2}
32
-    componentsBg="bg-img"
33
-    white="white"
34
-  />
35
-  <LeftMiddleRightImgTextPro
36
-    componentTitle="行业话题"
37
-    listOrData={list?.informationList}
38
-  />
39
-  <VerticalNavigationContent
40
-    list={list?.list2}
41
-    ellipsis="line-ellipsis-small"
42
-    Children={Text3}
43
-    componentTitle="相关资源"
44
-    titleTextAlign="text-left"
45
-    textAlign="text-left"
46
-    componentsBg="bg-even"
47
-  />
48
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
49 15
 </Layout>

+ 6
- 34
src/pages/[lang]/products-solutions/others/shigongli/index.astro Parādīt failu

@@ -1,43 +1,15 @@
1 1
 ---
2 2
 import Layout from '@/layouts/Layout.astro'
3
-import ScrollingNavbar from '@/components/ScrollingNavbar.astro'
4
-import Carousel from '@/components/children/Carousel.astro'
5
-import Text3 from '@/components/children/Text3.astro'
6
-import LeftImgRightText from '@/components/LeftImgRightText.astro'
7
-import ImgPro from '@/components/ImgPro.astro'
8
-import VerticalNavigationContent from '@/components/VerticalNavigationContent.astro'
9
-import Footer from '@/components/Footer.astro'
3
+import DynamicComponent from '@/components/DynamicComponent.astro'
10 4
 
11 5
 const { lang = 'zh' } = Astro.params
12 6
 const list = Astro.locals.globalData?.shigongli
13 7
 ---
14 8
 
15 9
 <Layout title="旅游住宿">
16
-  <ScrollingNavbar sNav={list?.sNav} />
17
-  <ImgPro listOrData={list?.imgProData} />
18
-  <LeftImgRightText
19
-    listOrData={list?.leftImgRightTextList}
20
-    componentTitle="旅游住宿"
21
-    textAlign="text-center"
22
-    componentsBg="bg-grey"
23
-  />
24
-  <Carousel
25
-    componentTitle="成功案例"
26
-    list={list?.carouselList}
27
-    Children={LeftImgRightText}
28
-    titleTextAlign="text-left"
29
-    textAlign="text-left"
30
-    line="0"
31
-    componentsBg="bg-img"
32
-  />
33
-  <VerticalNavigationContent
34
-    list={list?.verticalNavigationContentList}
35
-    ellipsis="line-ellipsis-small"
36
-    Children={Text3}
37
-    componentTitle="相关资源"
38
-    titleTextAlign="text-left"
39
-    textAlign="text-left"
40
-    componentsBg="bg-even"
41
-  />
42
-  <Footer lang={lang} />
10
+  {
11
+    list.map((item, index) => {
12
+      return <DynamicComponent {...item} key={index} />
13
+    })
14
+  }
43 15
 </Layout>