LoginHeader.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <nav class="x-navbar">
  3. <div class="container">
  4. <div class="navbar-header">
  5. <input type="hidden" name="iconUrl" value="/static/img/icon_mall_index.png">
  6. <a class="navbar-brand" href="https://www.usoftmall.com/">
  7. 欢迎登录
  8. </a>
  9. </div>
  10. <div class="collapse navbar-collapse navbar-right">
  11. <a href="http://www.ubtob.com">优软云首页</a> <a href="http://uas.ubtob.com/serve#/">帮助</a>
  12. </div>
  13. </div>
  14. </nav>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'LoginHeader',
  19. data () {
  20. return {}
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. @import '~assets/scss/mixins';
  26. @import '~assets/scss/variables';
  27. .x-navbar{
  28. height: 80px;
  29. line-height: 80px;
  30. margin: 0;
  31. .container{
  32. position: relative;
  33. width: 990px!important;
  34. a.navbar-brand{
  35. padding: 0 0 0 85px;
  36. height: inherit;
  37. line-height: inherit;
  38. font-family: "\5FAE\8F6F\96C5\9ED1";
  39. font-size: 24px;
  40. font-weight: 400;
  41. color: #888;
  42. background: url(/images/all/icon_brand.png) left center no-repeat;
  43. }
  44. .collapse{
  45. a{
  46. padding-left: 12px;
  47. margin-right: 10px;
  48. color: #666;
  49. outline: 0;
  50. border-left: 1px solid #ddd;
  51. &:first-child{
  52. border-width: 0;
  53. }
  54. }
  55. }
  56. }
  57. }
  58. </style>