PersonalMaterial.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <div class="personal-material">
  3. <a href="">&lt;返回上一层</a>
  4. <div class="personal-material-header">
  5. <p><i class="fa fa-exclamation-circle"></i>抱歉,您的账户未绑定企业,暂无卖家权限!</p>
  6. <a href="">查看申请记录</a>
  7. </div>
  8. <div class="personal-material-content">
  9. <div class="is-open-store">
  10. <p><img src="/images/material/arrow-right-blue.png" alt="">所属企业已开店</p>
  11. <div>
  12. <p>绑定企业</p>
  13. <div>企业全称:<input type="text" class="form-control" placeholder="请输入企业全称"><span>检测</span></div>
  14. </div>
  15. </div>
  16. <div class="not-open-store">
  17. </div>
  18. </div>
  19. </div>
  20. </template>
  21. <style lang="scss" scoped>
  22. .personal-material {
  23. width: 1190px;
  24. margin: 0 auto;
  25. p {
  26. margin: 0;
  27. }
  28. a {
  29. color: #5078cb;
  30. }
  31. > a {
  32. line-height: 71px;
  33. position: relative;
  34. right: 105px;
  35. }
  36. .personal-material-header {
  37. height: 111px;
  38. line-height: 111px;
  39. border: 1px solid #ebeaea;
  40. position: relative;
  41. margin-bottom: 19px;
  42. p {
  43. color: #5078cb;
  44. font-size: 22px;
  45. text-align: center;
  46. i {
  47. margin-right: 20px;
  48. }
  49. }
  50. a {
  51. position: absolute;
  52. right: 11px;
  53. bottom: 14px;
  54. display: inline-block;
  55. line-height: normal;
  56. }
  57. }
  58. .personal-material-content {
  59. height: 593px;
  60. border: 1px solid #ebeaea;
  61. margin-bottom: 147px;
  62. padding: 0 95px;
  63. > div {
  64. padding: 0 50px;
  65. > p {
  66. height: 81px;
  67. line-height: 81px;
  68. font-size: 16px;
  69. font-weight: bold;
  70. img {
  71. margin-right: 4px;
  72. }
  73. }
  74. }
  75. .is-open-store {
  76. > div {
  77. width: 902px;
  78. height: 140px;
  79. border: 1px solid #5078cb;
  80. border-radius: 3px;
  81. p {
  82. font-weight: bold;
  83. font-size: 18px;
  84. margin: 26px 0;
  85. text-align: center;
  86. }
  87. div {
  88. text-align: center;
  89. input {
  90. width: 290px;
  91. display: inline-block;
  92. height: 30px;
  93. border: {
  94. top-left-radius: 3px;
  95. bottom-left-radius: 3px;
  96. top-right-radius: 0;
  97. bottom-right-radius: 0;
  98. }
  99. border-top-left-radius: 3px;
  100. border-bottom-left-radius: 3px;
  101. border: 1px solid #cdcdcd;
  102. }
  103. span {
  104. display: inline-block;
  105. width: 87px;
  106. height: 30px;
  107. line-height: 30px;
  108. text-align: center;
  109. color: #fff;
  110. background: #5078cb;
  111. margin-left: -1px;
  112. border-top-right-radius: 3px;
  113. border-bottom-right-radius: 3px;
  114. vertical-align: middle;
  115. }
  116. }
  117. }
  118. }
  119. }
  120. }
  121. </style>