Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
hager
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-11-07 10:57:45 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9c22ec23a57a99516ef92a5d3d94633121cee10d
9c22ec23
1 parent
8fd159dc
✨ feat: 客户修改需求
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
11 deletions
src/components/common/hagerFooter.vue
src/views/about/index.vue
src/views/index.vue
src/views/product/index.vue
src/components/common/hagerFooter.vue
View file @
9c22ec2
<!--
* @Date: 2024-09-26 13:42:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-1
0-29 14:57:15
* @LastEditTime: 2024-1
1-07 10:44:34
* @FilePath: /hager/src/components/common/hagerFooter.vue
* @Description: 文件描述
-->
...
...
@@ -107,6 +107,7 @@
<p>海格电气中国总部</p>
<p>上海市静安区山西北路99号苏河湾中心21层01、02单元</p>
<p>粤ICP备2021117768号-3</p>
<p>粤公网安备44133002100282号</p>
</div>
</div>
<div class="link-box xs">
...
...
src/views/about/index.vue
View file @
9c22ec2
<!--
* @Date: 2024-10-17 09:22:56
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-11-0
6 16:08:11
* @LastEditTime: 2024-11-0
7 10:53:15
* @FilePath: /hager/src/views/about/index.vue
* @Description: 文件描述
-->
...
...
@@ -102,7 +102,7 @@ export default {
img: 'https://cdn.ipadbiz.cn/hager/img/tiny/g05@2x.png',
c_title: '可持续发展',
e_title: 'Sustainable Development',
content: '
海格集团是全球领先的电气及智能化解决方案和服务提供商,应用领域涵盖住宅、商业建筑、公共建筑和工业
。',
content: '
作为一家有着明确价值观的家族企业,我们今天就行动起来,以确保未来成功。海格电气一直持续不断地投资我们的员工及其技能开发和培训、优化我们的生态平衡、开发更节能的流程和解决方案
。',
link: '/about/development',
},{
img: 'https://cdn.ipadbiz.cn/hager/img/about/g06@2x.png',
...
...
src/views/index.vue
View file @
9c22ec2
<!--
* @Date: 2024-08-27 10:06:30
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-11-0
6 16:08:59
* @LastEditTime: 2024-11-0
7 10:50:53
* @FilePath: /hager/src/views/index.vue
* @Description: 首页
-->
...
...
@@ -28,22 +28,22 @@
<div :class="['hager-global-info', is_xs ? 'xs' : '']">
<div class="hager-global-info-item">
<p class="num"><span>32</span> 亿欧元</p>
<p class="text">2023年总营收</p>
<p class="text
-cn
">2023年总营收</p>
<p class="text">2023 sales revenue:3.2 billion euros</p>
</div>
<div class="hager-global-info-item">
<p class="num" style="font-size: 1.85rem;"><span>100</span> +</p>
<p class="text">国家采用海格解决方案</p>
<p class="text
-cn
">国家采用海格解决方案</p>
<p class="text">100+ countries adopted Hager solutions</p>
</div>
<div class="hager-global-info-item">
<p class="num"><span>13,000</span> 位</p>
<p class="text">全球员工</p>
<p class="text
-cn
">全球员工</p>
<p class="text">13,000 employees around the world</p>
</div>
<div class="hager-global-info-item">
<p class="num"><span>22</span> 个</p>
<p class="text">生产基地</p>
<p class="text
-cn
">生产基地</p>
<p class="text">22 production sites</p>
</div>
</div>
...
...
@@ -411,15 +411,19 @@ export default {
}
.hager-global-info-item {
.num {
color: @
prim
ary-color;
color: @
second
ary-color;
font-size: 1.5rem;
font-weight: bold;
span {
font-size: 3rem;
}
}
.text-cn {
line-height: 1.8;
}
.text {
line-height: 1.8;
font-size: 0.9rem;
}
}
}
...
...
src/views/product/index.vue
View file @
9c22ec2
<!--
* @Date: 2024-09-27 16:53:09
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-11-0
6 17:54:41
* @LastEditTime: 2024-11-0
7 10:56:07
* @FilePath: /hager/src/views/product/index.vue
* @Description: 文件描述
-->
...
...
@@ -37,7 +37,7 @@
<el-col :span="18">
<div class="product-list">
<div class="product-item" v-for="(item, index) in product_list" :key="index">
<div class="product-item-img">
<div class="product-item-img"
@click="goToDetail(item)"
>
<img style="width: 100%; height: auto;" :src="item.cover">
</div>
<p @click="goToDetail(item)" class="product-item-title">{{ item.product_name }}</p>
...
...
@@ -263,6 +263,9 @@ export default {
box-sizing: border-box;
border-radius: 8px;
border: 1px solid #eee;
&:hover {
cursor: pointer;
}
}
.product-item-title {
// text-align: center;
...
...
Please
register
or
login
to post a comment