Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sensorConsult
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhanglw
sensorConsult
Commits
793b35c6
Commit
793b35c6
authored
Jun 19, 2023
by
zhanglw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
首页
parent
ace830dd
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
436 additions
and
37 deletions
+436
-37
diamond.png
src/assets/home_images/diamond.png
+0
-0
hot.png
src/assets/home_images/hot.png
+0
-0
p_logo.png
src/assets/home_images/p_logo.png
+0
-0
to_like_a.png
src/assets/home_images/to_like_a.png
+0
-0
to_like_b.png
src/assets/home_images/to_like_b.png
+0
-0
top_area.png
src/assets/home_images/top_area.png
+0
-0
homeFooter.vue
src/views/homepage/components/homeFooter.vue
+120
-0
index.vue
src/views/homepage/index.vue
+316
-37
No files found.
src/assets/home_images/
品质
.png
→
src/assets/home_images/
diamond
.png
View file @
793b35c6
File moved
src/assets/home_images/hot.png
0 → 100644
View file @
793b35c6
1.95 KB
src/assets/home_images/p_logo.png
0 → 100644
View file @
793b35c6
8.83 KB
src/assets/home_images/to_like_a.png
0 → 100644
View file @
793b35c6
678 Bytes
src/assets/home_images/
点赞_块
.png
→
src/assets/home_images/
to_like_b
.png
View file @
793b35c6
File moved
src/assets/home_images/top_area.png
0 → 100644
View file @
793b35c6
79.6 KB
src/views/homepage/components/homeFooter.vue
0 → 100644
View file @
793b35c6
<
template
>
<div
class=
"footer"
>
<div
class=
"footer-content"
>
<el-row
:gutter=
"30"
>
<el-col
v-for=
"(item,index) in dataList"
:key=
"index"
:span=
"4"
>
<div
class=
"title"
>
{{
item
.
name
}}
</div>
<div
v-for=
"(t,i) in item.list"
:key=
"'lb_'+i"
class=
"label"
:title=
"t.name"
>
<a
:href=
"t.url||'http://www.minestar.cn'"
target=
"_blank"
>
{{
t
.
name
}}
</a>
</div>
</el-col>
</el-row>
</div>
<div
v-if=
"$store.state.settings.showFooter"
class=
"footer-bottom"
>
<span
v-html=
"$store.state.settings.footerTxt"
/>
<span
v-if=
"$store.state.settings.caseNumber"
>
⋅
</span>
<a
href=
"https://beian.miit.gov.cn/#/Integrated/index"
target=
"_blank"
>
{{
$store
.
state
.
settings
.
caseNumber
}}
</a>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
dataList
:
[
{
name
:
'
用户指南
'
,
list
:
[
{
name
:
'
注册登录流程
'
,
url
:
''
},
{
name
:
'
采购商指南
'
,
url
:
''
}
]
},
{
name
:
'
关于我们
'
,
list
:
[
{
name
:
'
平台介绍
'
,
url
:
''
}
]
},
{
name
:
'
联系我们
'
,
list
:
[
{
name
:
'
提供建议
'
,
url
:
''
},
{
name
:
'
我要合作
'
,
url
:
''
},
{
name
:
'
联系方式
'
,
url
:
''
}
]
},
{
name
:
'
常见问题
'
,
list
:
[
{
name
:
'
采购商常见问题
'
,
url
:
''
},
{
name
:
'
供应商常见问题
'
,
url
:
''
}
]
},
{
name
:
'
友情链接
'
,
list
:
[
{
name
:
'
佛山英沃传感科技有限公司佛山英沃传感科技有限公司
'
,
url
:
''
},
{
name
:
'
佛山英沃传感科技有限公司
'
,
url
:
''
},
{
name
:
'
佛山英沃传感科技有限公司
'
,
url
:
''
}
]
}
]
}
},
mounted
()
{
this
.
$nextTick
(()
=>
{
})
},
methods
:
{
click
()
{}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.footer-content
{
width
:
100%
;
height
:
267px
;
bottom
:
33px
;
padding-top
:
20px
;
padding-left
:
210px
;
background
:
none
repeat
scroll
0
0
#1C1E25
;
font-family
:
Source
Han
Sans
CN
;
font-weight
:
400
;
color
:
#E8E6E6
;
user-select
:
none
;
z-index
:
99
;
.title
{
margin
:
30px
0
;
font-size
:
26px
;
}
.label
{
width
:
300px
;
margin
:
15px
0
;
cursor
:pointer
;
font-size
:
18px
;
overflow
:hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;
-o-text-overflow
:ellipsis
;
}
.label
:hover
{
font-weight
:
600
;
}
}
.footer-bottom
{
width
:
100%
;
height
:
33px
;
bottom
:
0
;
padding
:
10px
6px
0
6px
;
text-align
:
center
;
background
:
none
repeat
scroll
0
0
black
;
overflow
:
hidden
;
font-size
:
0
.7rem
!
important
;
letter-spacing
:
0
.8px
;
font-family
:
Arial
,
sans-serif
!
important
;
color
:
#E8E6E6
;
z-index
:
99
;
}
</
style
>
src/views/homepage/index.vue
View file @
793b35c6
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment