helpHeader.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <div class="user_center">
  3. <div class="wrap">
  4. <div class="wid1190">
  5. <div class="fl">
  6. <nuxt-link :to="'/'"><img src="/images/help/logo.png"/></nuxt-link>
  7. <!--<span>我的商城<a ng-href="{{homeUrl}}">返回商城首页</a> </span>-->
  8. </div>
  9. <!--<div class="nav">
  10. <ul>
  11. <li ng-class="{'active' : active == 'home'}"><a href="#home" class="active">首页</a></li>
  12. <li ng-class="{'active' : active == 'message'}" ><a href="#message">消息(0)</a></li>
  13. <li ng-class="{'active' : active == 'browsing-history'}" s><a href="#browsing-history">浏览历史</a></li>
  14. </ul>
  15. </div>-->
  16. <!--<div id="mall-search" class="search-right fr" ng-controller="SearchCtrl">
  17. <input type="text" ng-model="keyword" ng-change="onChange()" ng-search="search()" ng-focus="onFocus()" ng-blur="onBlur()" ng-keyup="onKeyup()"placeholder="型号/类别/品牌" />
  18. <a class="seek" ng-click="search()">搜索</a>
  19. <ul class="association" ng-show="associate || associateEnter" ng-mouseenter="onAssociateEnter()" ng-mouseleave="onAssociateLeave()">
  20. <li ng-repeat="as in associates" ng-bind="as" ng-class="{'active': $index==selectIndex}"
  21. ng-click="onAssociateClick(as)"></li>
  22. </ul>
  23. </div>-->
  24. <span class="help-title">帮助中心</span>
  25. </div>
  26. </div>
  27. </div>
  28. </template>
  29. <script>
  30. export default {
  31. name: 'helpHeader'
  32. }
  33. </script>
  34. <style>
  35. .user_center {
  36. width: 100%;
  37. margin: 0px auto;
  38. height: 80px;
  39. background: #5078cb;
  40. }
  41. .wid1190{
  42. width: 100%;
  43. display: inline-block;
  44. }
  45. .user_center .fl {
  46. width: 230px;
  47. position: relative;
  48. }
  49. .user_center .fl a img {
  50. float: left;
  51. margin-top: 15px;
  52. }
  53. .user_center .fl span {
  54. font-size: 18px;
  55. color: #fff;
  56. position: relative;
  57. top: 15px;
  58. left: 10px;
  59. }
  60. .user_center .fl span a {
  61. width: 86px;
  62. height: 20px;
  63. display: inline-block;
  64. text-align: center;
  65. color: #fff;
  66. font-size: 11px;
  67. border: #fff 1px solid;
  68. border-radius: 10px;
  69. line-height: 20px;
  70. }
  71. .user_center .fl span a:hover {
  72. background: #d2272d;
  73. color: #fff;
  74. }
  75. .user_center .nav {
  76. background: none;
  77. width: 500px;
  78. float: left;
  79. margin-left: 20px;
  80. line-height: 80px;
  81. margin-bottom: 0px;
  82. }
  83. .user_center .nav ul {
  84. width: 100%;
  85. margin: 0px auto;
  86. }
  87. .user_center .nav ul li {
  88. font-size: 18px;
  89. width: 120px;
  90. float: left;
  91. text-align: center;
  92. position: relative;
  93. }
  94. .user_center .nav ul li a {
  95. color: #fff;
  96. height: 30px;
  97. display: inline-block;
  98. line-height: 30px;
  99. font-size: 14px;
  100. width: 100%;
  101. display: inline-block;
  102. }
  103. .user_center .wrap{
  104. width: 1190px;
  105. margin: 0 auto;
  106. }
  107. .help-title{
  108. float: right;
  109. line-height: 80px;
  110. font-size: 24px;
  111. color: #fff;
  112. margin-right: 20px;
  113. }
  114. </style>