Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
吴迪
gs1
Commits
f0a3a282
Commit
f0a3a282
authored
Sep 29, 2021
by
tang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitee.com/gs1-office-web-sit/gs1
parents
2ef0cfe5
202b9626
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
106 additions
and
18 deletions
+106
-18
_reset.scss
src/assets/css/_reset.scss
+1
-0
dianhua.png
src/assets/image/foot/dianhua.png
+0
-0
weixin.png
src/assets/image/foot/weixin.png
+0
-0
footer.vue
src/components/layout/footer.vue
+99
-17
index.vue
src/components/layout/header/index.vue
+4
-0
main.vue
src/components/main.vue
+2
-1
No files found.
src/assets/css/_reset.scss
View file @
f0a3a282
...
...
@@ -8,6 +8,7 @@ html,body,ul,li,ol,dl,dd,dt,p,h1,h2,h3,h4,h5,h6,form,img {
html
,
body
,
#app
{
height
:
100%
;
background
:
#F0F5FA
;
}
body
{
...
...
src/assets/image/foot/dianhua.png
0 → 100644
View file @
f0a3a282
2.94 KB
src/assets/image/foot/weixin.png
0 → 100644
View file @
f0a3a282
12.4 KB
src/components/layout/footer.vue
View file @
f0a3a282
<
template
>
<footer>
<div
style=
"color:yellow;"
>
©Copyright 2020 江北新区
</div>
</footer>
<div
class=
"foot"
>
<div
class=
"container"
>
<div
class=
"row foot-top"
>
<div
class=
"col-lg-2"
>
<div
class=
"foot-cate"
>
咨询电话
</div>
<div
class=
"zxdh"
>
<img
src=
"../../assets/image/foot/dianhua.png"
alt=
""
/>
</div>
</div>
<div
class=
"col-lg-7"
>
<div
class=
"foot-cate"
>
友情链接
</div>
<div
class=
"row link"
>
<div
class=
"col-lg-4"
>
国家市场监督管理总局
</div>
<div
class=
"col-lg-4"
>
国家市场监督管理总局
</div>
<div
class=
"col-lg-4"
>
国家市场监督管理总局
</div>
<div
class=
"col-lg-4"
>
国家市场监督管理总局
</div>
<div
class=
"col-lg-4"
>
国际物品编码组织(GS1)成员网站
</div>
</div>
</div>
<div
class=
"col-lg-3"
>
<div
class=
"row"
>
<div
class=
"col qrcode"
>
<div
class=
"foot-cate"
>
官方微信
</div>
<div
class=
"qrcode_img"
>
<img
src=
"../../assets/image/foot/weixin.png"
alt=
""
/>
</div>
</div>
<div
class=
"col qrcode"
>
<div
class=
"foot-cate"
>
官方微信
</div>
<div
class=
"qrcode_img"
>
<img
src=
"../../assets/image/foot/weixin.png"
alt=
""
/>
</div>
</div>
</div>
</div>
</div>
<div
class=
"foot-line"
></div>
<div
class=
"row foot-middle"
>
<div
class=
"col-lg-1"
>
语言
</div>
<div
class=
"col col-lg-1 checked"
>
简体中文
</div>
<div
class=
"col col-lg-1"
>
English
</div>
</div>
<div
class=
"foot-line"
></div>
<div
class=
"row foot-bottom"
>
<div
class=
"col-lg-2"
>
版权所有:中国物品编码中心
</div>
<div
class=
"col-lg-4"
>
京ICP备11036137号-10 | 京公网安备11010102001434号
</div>
<div
class=
"col-lg-6"
>
地址:北京市东城区安定门外大街138号皇
</div>
</div>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
}
},
computed
:{
},
methods
:
{
},
mounted
()
{
},
created
(){
}
}
export
default
{
data
()
{
return
{};
},
computed
:
{},
methods
:
{},
mounted
()
{},
created
()
{},
};
</
script
>
<
style
lang=
"scss"
>
</
style
>
<
style
lang=
"scss"
scoped
>
.foot
{
background
:
#fff
;
.foot-cate
{
font-family
:
PingFangSC-Medium
,
PingFang
SC
;
font-weight
:
500
;
color
:
#0e2c6b
;
font-size
:
16px
;
margin-bottom
:
10px
;
margin-top
:
30px
;
}
.foot-line
{
height
:
1px
;
background
:
rgba
(
14
,
44
,
107
,
0.13
);
box-shadow
:
0px
-1px
1px
0px
rgba
(
0
,
0
,
0
,
0.04
);
}
.foot-top
{
padding-bottom
:
20px
;
}
.foot-middle
{
padding
:
20px
0
;
.checked{
color
:
#F26335
;
}
}
.foot-bottom
{
padding
:
20px
0
;
}
.link
{
div
{
line-height
:
30px
;
}
}
.qrcode
{
text-align
:
center
;
}
}
</
style
>
src/components/layout/header/index.vue
View file @
f0a3a282
...
...
@@ -69,6 +69,9 @@ export default {
</
script
>
<
style
lang=
"scss"
>
.navbar
{
background
:
#fff
;
}
.gs-header-nav
{
.navbar-nav-wrap
{
...
...
@@ -98,6 +101,7 @@ export default {
margin
:
0
16px
;
}
}
.navbar-toggler
{
...
...
src/components/main.vue
View file @
f0a3a282
...
...
@@ -8,10 +8,11 @@
<
script
>
import
Header
from
"./layout/header/index.vue"
;
//
import Footer from "./layout/footer.vue"
import
Footer
from
"./layout/footer.vue"
export
default
{
components
:
{
Header
,
Footer
,
},
data
()
{
return
{
...
...
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