Company.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <section class="com-ctnr">
  3. <mt-header title="企业认证">
  4. <span @click='$router.go(-1);' slot="left">
  5. <
  6. </span>
  7. </mt-header>
  8. <div class="bigBox">
  9. <div class="navBox">
  10. <div class="nav-ctnr" :class="{active:$route.path == '/mine/company/firmInfo'}"><span>企业信息</span>
  11. <div class="nav-icon"></div>
  12. </div>
  13. <div class="nav-ctnr" :class="{active:$route.path == '/mine/company/legal'}"><span>法人信息</span>
  14. <div class="nav-icon"></div>
  15. </div>
  16. <div class="nav-ctnr" :class="{active:$route.path == '/mine/company/author'}"><span>授权人信息</span>
  17. <div class="nav-icon"></div>
  18. </div>
  19. <img src="../assets/img/toRight.png" />
  20. <img src="../assets/img/toRight.png" class="toImg"/>
  21. </div>
  22. <router-view></router-view>
  23. </div>
  24. </section>
  25. </template>
  26. <script type="text/javascript">
  27. import uploader from "./Uploader.vue"
  28. export default{
  29. data(){
  30. return {
  31. firm:{
  32. name:"",
  33. tel:"",
  34. address:"",
  35. permit:"",
  36. isrc:""
  37. }
  38. }
  39. },
  40. components:{
  41. uploader
  42. }
  43. }
  44. </script>
  45. <style scoped>
  46. .com-ctnr{
  47. position: absolute;
  48. left: 0;
  49. right: 0;
  50. top: 0;
  51. bottom: 0;
  52. background: #60c0ff;
  53. overflow: hidden;
  54. .mint-header{
  55. height: 1.492537rem;
  56. font-size: 0.453092rem;
  57. background-color: #60c0ff;
  58. span{
  59. margin-left: 0.266525rem;
  60. }
  61. }
  62. .bigBox{
  63. height: 100%;
  64. .navBox{
  65. color: #fff;
  66. display: flex;
  67. justify-content: space-around;
  68. width: 8.795309rem;
  69. margin: 0 auto;
  70. position: relative;
  71. font-size: 0.373134rem;
  72. .nav-ctnr{
  73. .nav-icon:empty{
  74. display: none;
  75. width: 0.399787rem;
  76. height: 0.053305rem;
  77. margin: 10px auto 0;
  78. background-color: #fff;
  79. }
  80. }
  81. .active{
  82. .nav-icon:empty{
  83. display: block;
  84. }
  85. }
  86. img{
  87. position: absolute;
  88. width: .26666667rem;
  89. top: 0.166525rem;
  90. left: 2.73177rem;
  91. }
  92. img.toImg{
  93. left: 5.53333333rem;
  94. }
  95. }
  96. /*.wrap-ctnr{
  97. height: 100%;
  98. background: #E8EFF5;
  99. margin-top: 1.066098rem;
  100. .info-ctnr{
  101. background-color: #fff;
  102. width: 8.795309rem;
  103. margin: 0 auto;
  104. border-radius: 0.133262rem;
  105. position: relative;
  106. top: -1.066098rem;
  107. box-shadow: 0 0 20px 5px rgba(96, 192, 255, 0.35);
  108. overflow: hidden;
  109. .mint-field{
  110. height: 1.172708rem;
  111. line-height: 1.172708rem;
  112. border-bottom: 2px solid #e8eff5;
  113. }
  114. }
  115. .btn-box{
  116. display: block;
  117. width: 8.795309rem;
  118. height: 1.066098rem;
  119. line-height: 1.066098rem;
  120. margin: 0 auto;
  121. border-radius: 40px;
  122. background-color: #60c0ff;
  123. color: #fff;
  124. font-size: 30px;
  125. box-shadow: 0 0 20px 5px rgba(96, 192, 255, 0.35);
  126. }
  127. }*/
  128. }
  129. }
  130. </style>
  131. <style>
  132. .com-ctnr{
  133. }
  134. </style>