footer.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <template>
  2. <footer class="v-footer">
  3. <div id="sino-footer">
  4. <div class="sino-footer-box">
  5. <div class="footer-info">
  6. <ul class="ul-info">
  7. <li class="tel">400-6807300</li>
  8. <li class="small-tel">010-59626411</li>
  9. <li class="small-tel">010-53608318</li>
  10. <li class="small-tel">010-53608322</li>
  11. <li class="time">周一至周日10:00-19:00</li>
  12. <li class="foote-logo">
  13. <img src="~/assets/images/index/logo2.png" alt="" srcset="">
  14. </li>
  15. </ul>
  16. <div class="left_circle">
  17. <img src="~/assets/images/index/left_circle.png" alt="" srcset="">
  18. </div>
  19. </div>
  20. <div class="footer-nav">
  21. <ul class="footer-nav-parent">
  22. <li class="footer-nav-list">
  23. <nuxt-link class="title" to="/">产品与服务</nuxt-link>
  24. <ul class="footer-nav-child">
  25. <li>
  26. <nuxt-link to="/product/list">产品商城</nuxt-link>
  27. </li>
  28. <li>
  29. <nuxt-link to="/product/course">多端课堂</nuxt-link>
  30. </li>
  31. </ul>
  32. </li>
  33. <li class="footer-nav-list">
  34. <nuxt-link class="title" to="/">关于我们</nuxt-link>
  35. <ul class="footer-nav-child">
  36. <li>
  37. <nuxt-link to="/about/brand">品牌故事</nuxt-link>
  38. </li>
  39. <li>
  40. <nuxt-link to="/about/team">专家团队</nuxt-link>
  41. </li>
  42. <li>
  43. <nuxt-link to="/about/contact">联系我们</nuxt-link>
  44. </li>
  45. <li>
  46. <nuxt-link to="/">线下门店</nuxt-link>
  47. </li>
  48. </ul>
  49. </li>
  50. </ul>
  51. </div>
  52. <div class="footer-about">
  53. <div class="title">关注我们</div>
  54. <div class="content">
  55. <ul>
  56. <li class="first">
  57. <img class="wx" src="~/assets/images/index/wechat.png" alt="" srcset="~/assets/images/index/wechat.png 1x, ~/assets/images/index/wechat@2x.png 2x">
  58. <div class="officle">
  59. <p>逻辑狗</p>
  60. <p>中德智慧教育</p>
  61. <div class="qr">
  62. <img src="~/assets/images/index/account_01.png" alt="" srcset="">
  63. </div>
  64. </div>
  65. </li>
  66. <li class="second">
  67. <img class="wx" src="~/assets/images/index/wechat.png" alt="" srcset="">
  68. <div class="officle">
  69. <p>逻辑狗</p>
  70. <p>logico</p>
  71. <div class="qr">
  72. <img src="~/assets/images/index/account_02.png" alt="" srcset="">
  73. </div>
  74. </div>
  75. </li>
  76. <li class="three">
  77. <img class="wx" src="~/assets/images/index/wechat.png" alt="" srcset="">
  78. <div class="officle">
  79. <p>逻辑狗</p>
  80. <p>妈咪社团</p>
  81. <div class="qr">
  82. <img src="~/assets/images/index/account_03.png" alt="" srcset="">
  83. </div>
  84. </div>
  85. </li>
  86. </ul>
  87. </div>
  88. </div>
  89. </div>
  90. <div class="sino-footer-bottom">
  91. <p class="copyright">Copyright © 2020.北京中德智慧教育文化有限公司 京ICP备15045880号-2</p>
  92. <p>京公网安备 11010502032093号</p>
  93. </div>
  94. </div>
  95. </footer>
  96. </template>
  97. <style lang="scss" scoped>
  98. @import '~static/common/style.sass';
  99. #sino-footer {
  100. background: $theme_footer;
  101. padding: 68px 0 28px;
  102. .sino-footer-box {
  103. display: flex;
  104. justify-content: space-around;
  105. width: 1200px;
  106. height: auto;
  107. margin: 0 auto 73px;
  108. .footer-info {
  109. position: relative;
  110. // margin-right: 130px;
  111. // background-image: url("~assets/images/index/left_circle.png");
  112. // background-repeat: no-repeat;
  113. // background-position: top 8px left 0px;
  114. // background-size: 137px 137px;
  115. .ul-info {
  116. position: relative;
  117. z-index: 10;
  118. }
  119. .tel {
  120. color: #FFFFFF;
  121. font-size: 46px;
  122. line-height: 46px;
  123. font-family: PingFangSC-Medium, sans-serif;
  124. font-weight: 500;
  125. }
  126. .small-tel {
  127. color: #9EA1AB;
  128. margin: 8px 0;
  129. }
  130. .time {
  131. color: #9EA1AB;
  132. line-height: 20px;
  133. margin-bottom:62px;
  134. }
  135. .foote-logo {
  136. width: 190px;
  137. background: #FFFFFF;
  138. border-radius: 10px;
  139. opacity: 0.5;
  140. img {
  141. border-radius: 10px;
  142. height: 60px;
  143. }
  144. }
  145. .left_circle {
  146. position: absolute;
  147. z-index: 1;
  148. top: 8px;
  149. left: -124px;
  150. width: 137px;
  151. height: 137px;
  152. // background: linear-gradient(239deg, #171D31 0%, #252A3E 100%);
  153. font-size: 0;
  154. border-radius: 50%;
  155. img {
  156. width: 137px;
  157. height: 137px;
  158. }
  159. }
  160. }
  161. .footer-nav {
  162. .footer-nav-parent {
  163. display: flex;
  164. .footer-nav-list {
  165. margin-right: 105px;
  166. .title {
  167. font-size: 22px;
  168. font-weight: 400;
  169. color: #ffffff;
  170. }
  171. .footer-nav-child {
  172. margin-top: 55px;
  173. li {
  174. margin-bottom: 20px;
  175. &:last-child {
  176. margin-bottom: 0px;
  177. }
  178. a {
  179. color: #9EA1AB;
  180. font-size: 14px;
  181. }
  182. }
  183. }
  184. }
  185. }
  186. }
  187. .footer-about {
  188. .title {
  189. font-size: 22px;
  190. font-weight: 400;
  191. color: #ffffff;
  192. }
  193. .content {
  194. margin-top: 64px;
  195. ul {
  196. display: flex;
  197. li {
  198. // margin-right: 82px;
  199. &:last-child {
  200. margin-right: 0px;
  201. }
  202. &.first {
  203. margin-right: 62px;
  204. }
  205. &.second {
  206. margin-right: 95px;
  207. }
  208. p {
  209. color: #858893;
  210. font-size:12px;
  211. line-height:17px;
  212. }
  213. }
  214. .officle {
  215. margin-top: 27px;
  216. position: relative;
  217. }
  218. }
  219. .wx {
  220. width: 57px;
  221. height: 46px;
  222. &:hover + .officle {
  223. .qr {
  224. display: block;
  225. }
  226. }
  227. }
  228. .qr {
  229. display: none;
  230. position: absolute;
  231. left: 50%;
  232. bottom: -20px;
  233. transform: translate(-50%, 100%);
  234. img {
  235. width: 148px;
  236. height: 144px;
  237. vertical-align: middle;
  238. }
  239. }
  240. }
  241. }
  242. }
  243. .sino-footer-bottom {
  244. width: 1200px;
  245. margin: 0 auto;
  246. display: flex;
  247. p {
  248. font-size: 12px;
  249. line-height: 17px;
  250. color: #717379;
  251. }
  252. .copyright {
  253. margin-right: 330px;
  254. }
  255. }
  256. }
  257. </style>
  258. <script>
  259. import { mapState } from 'vuex'
  260. export default {
  261. name: 'VFooter',
  262. components: {},
  263. computed: {
  264. ...mapState(['headProdNav','headNewsNav','indexLinksData'])
  265. },
  266. // mounted (){
  267. // //判断是否为首页,首页则改变友情链接控制字段,只在首页显示
  268. // let that = this
  269. // if(that.$route.params.tag === undefined && that.$route.fullPath === '/'){
  270. // that.$store.commit('setIndexShowLinks', true)
  271. // }else {
  272. // that.$store.commit('setIndexShowLinks', false)
  273. // }
  274. // }
  275. }
  276. </script>