Commit 50deb8e4997a2e2ff4a9b54647a7c3743ce769c1
1 parent
4f8a4a11
add common footer
add footer images
Showing
4 changed files
with
114 additions
and
4 deletions
webintroduce/src/assets/images/footer_lx.png
0 → 100644
902 Bytes
webintroduce/src/assets/images/rnt_app.png
0 → 100644
16.3 KB
webintroduce/src/assets/images/rnt_gzh.png
0 → 100644
16.2 KB
webintroduce/src/components/VFooter.vue
1 | 1 | <template> |
2 | 2 | <div class="footer-wrap"> |
3 | - <div class="contentWidth">123123</div> | |
3 | + <div class="contentWidth"> | |
4 | + <!--底部 上半部 --> | |
5 | + <div class="footer-cont clearfix"> | |
6 | + <div class="fl"> | |
7 | + <div class="footer-title">联系我们</div> | |
8 | + <ul class="footer-links"> | |
9 | + <li class="footer-tell">电 话: (0510) 66055077</li> | |
10 | + <li class="footer-adr">地 址: 江苏省无锡新区菱湖大道200号中国传感网国际创新园A座6层</li> | |
11 | + <li class="footer-email">E-mail: info@zte-its.com</li> | |
12 | + </ul> | |
13 | + </div> | |
14 | + <div class="footer-360 fr"> | |
15 | + <div class="fl"> | |
16 | + <div class="app-title">任你停APP</div> | |
17 | + <div class="footer-app"></div> | |
18 | + </div> | |
19 | + <div class="fl mr-l98"> | |
20 | + <div class="app-title">任你停公众号</div> | |
21 | + <div class="footer-wx"></div> | |
22 | + </div> | |
23 | + </div> | |
24 | + </div> | |
25 | + <!--/* 版本号 */--> | |
26 | + <div class="copyright">Copyright © 2018. ZTE ITS LIMITED. 京ICP备18048325号-1</div> | |
27 | + </div> | |
4 | 28 | </div> |
5 | 29 | </template> |
6 | 30 | |
7 | 31 | <script> |
8 | 32 | export default { |
9 | - name: 'VFooter' | |
33 | + name: 'VFooter', | |
34 | + data(){ | |
35 | + | |
36 | + } | |
10 | 37 | } |
11 | 38 | </script> |
12 | 39 | |
13 | -<style scoped> | |
40 | +<style scoped lang="scss"> | |
14 | 41 | .footer-wrap{ |
15 | - height: 100px; | |
42 | + height:355px; | |
16 | 43 | background: #000; |
44 | + .contentWidth{ | |
45 | + width: 1200px; | |
46 | + margin: 0 auto; | |
47 | + /* 底部 上半部 */ | |
48 | + .footer-cont{ | |
49 | + height: 275px; | |
50 | + padding-top:52px; | |
51 | + width: 100%; | |
52 | + border-bottom: 1px solid rgba(255,255,255,.2); | |
53 | + .footer-title{ | |
54 | + width:80px; | |
55 | + height:16px; | |
56 | + font-size:16px; | |
57 | + font-family:PingFang-SC-Medium; | |
58 | + font-weight:500; | |
59 | + color:rgba(255,255,255,1); | |
60 | + text-align: left; | |
61 | + } | |
62 | + .footer-links{ | |
63 | + margin-top: 40px; | |
64 | + text-align: left; | |
65 | + >li{ | |
66 | + height: 17px; | |
67 | + line-height: 17px; | |
68 | + margin-bottom: 17px; | |
69 | + font-size:14px; | |
70 | + text-indent: 30px; | |
71 | + font-family:PingFang-SC-Medium; | |
72 | + font-weight:500; | |
73 | + color:rgba(255,255,255,.5); | |
74 | + } | |
75 | + .footer-tell{ | |
76 | + background: url("../assets/images/footer_lx.png") no-repeat; | |
77 | + background-position: 0px 0px; | |
78 | + } | |
79 | + .footer-adr{ | |
80 | + background: url("../assets/images/footer_lx.png") no-repeat; | |
81 | + background-position: 0px -34px; | |
82 | + } | |
83 | + .footer-email{ | |
84 | + background: url("../assets/images/footer_lx.png") no-repeat; | |
85 | + background-position: 0px -69px; | |
86 | + } | |
87 | + } | |
88 | + .footer-360{ | |
89 | + width: 360px; | |
90 | + >div{ | |
91 | + text-align: left; | |
92 | + width: 130px; | |
93 | + color: #fff; | |
94 | + height:16px; | |
95 | + font-size:16px; | |
96 | + font-family:PingFang-SC-Medium; | |
97 | + font-weight:500; | |
98 | + } | |
99 | + .app-title{ | |
100 | + margin-bottom: 40px; | |
101 | + } | |
102 | + .footer-app{ | |
103 | + width: 130px; | |
104 | + height: 130px; | |
105 | + background: url("../assets/images/rnt_app.png") no-repeat; | |
106 | + } | |
107 | + .footer-wx{ | |
108 | + width: 130px; | |
109 | + height: 130px; | |
110 | + background: url("../assets/images/rnt_gzh.png") no-repeat; | |
111 | + } | |
112 | + .mr-l98{ | |
113 | + margin-left: 98px; | |
114 | + } | |
115 | + } | |
116 | + } | |
117 | + /* 版本号 */ | |
118 | + .copyright{ | |
119 | + margin-top: 28px; | |
120 | + height:13px; | |
121 | + font-size:12px; | |
122 | + font-family:PingFang-SC-Medium; | |
123 | + font-weight:500; | |
124 | + color:rgba(255,255,255,.3); | |
125 | + } | |
126 | + } | |
17 | 127 | } |
18 | 128 | </style> | ... | ... |