Result.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <section class="res-ctnr">
  3. <div class="firmlist">
  4. <ul>
  5. <li v-for="item in frimList">{{item}}<span>已实名▶</span></li>
  6. </ul>
  7. <p>添加企业认证</p>
  8. <router-link to="/mine/company/firmInfo" class="addicon">+</router-link>
  9. </div>
  10. </section>
  11. </template>
  12. <script type="text/javascript">
  13. export default{
  14. data(){
  15. return{
  16. frimList: this.$store.state.frimList
  17. }
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. .res-ctnr{
  23. margin-top: 1.066098rem;
  24. height: 100%;
  25. background-color: #E8EFF5;
  26. .firmlist{
  27. height: 13.326226rem;
  28. width: 8.795309rem;
  29. border-radius: 0.133262rem;
  30. margin: 0 auto;
  31. background-color: #fff;
  32. box-shadow: 0 0 20px 5px rgba(96, 192, 255, 0.35);
  33. position: relative;
  34. top: -1.599147rem;
  35. ul{
  36. width: 7.995736rem;
  37. margin: 0 auto;
  38. height: 11.327292rem;
  39. border-bottom: 2px solid #60c0ff;
  40. li{
  41. font-size: 0.426439rem;
  42. color: #1491e2;
  43. text-align: left;
  44. padding: 10px 0 10px;
  45. height: 0.799574rem;
  46. line-height: 0.799574rem;
  47. span{
  48. float: right;
  49. font-size: 0.319829rem;
  50. }
  51. }
  52. }
  53. p{
  54. font-size: 0.373134rem;
  55. height: 1.998934rem;
  56. line-height: 1.998934rem;
  57. color: #1491e2;
  58. }
  59. .addicon{
  60. display: block;
  61. color: #60c0ff;
  62. font-size: 0.799574rem;
  63. background-color: #fff;
  64. width: 1.332623rem;
  65. height: 1.332623rem;
  66. border-radius: 50%;
  67. line-height: 1.332623rem;
  68. margin: 0 auto;
  69. position: relative;
  70. top: -0.666311rem;
  71. box-shadow: 0 0 20px 5px rgba(96, 192, 255, 0.35);
  72. }
  73. }
  74. }
  75. </style>