adminDetail.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <div class="adminDetail app-container">
  3. <TopBar ></TopBar>
  4. <div class="content">
  5. <el-descriptions class="margin-top" :column="3" border>
  6. <el-descriptions-item>
  7. <template slot="label">
  8. 用户名
  9. </template>
  10. kooriookami
  11. </el-descriptions-item>
  12. <el-descriptions-item>
  13. <template slot="label">
  14. 用户ID
  15. </template>
  16. 12321515
  17. </el-descriptions-item>
  18. <el-descriptions-item>
  19. <template slot="label">
  20. 用户状态
  21. </template>
  22. 启用
  23. </el-descriptions-item>
  24. <el-descriptions-item>
  25. <template slot="label">
  26. 手机号
  27. </template>
  28. 13512546985
  29. </el-descriptions-item>
  30. <el-descriptions-item>
  31. <template slot="label">
  32. 角色
  33. </template>
  34. 商家
  35. </el-descriptions-item>
  36. <el-descriptions-item>
  37. <template slot="label">
  38. 省份
  39. </template>
  40. 四川
  41. </el-descriptions-item>
  42. <el-descriptions-item>
  43. <template slot="label">
  44. 城市
  45. </template>
  46. 成都
  47. </el-descriptions-item>
  48. <el-descriptions-item>
  49. <template slot="label">
  50. 区县
  51. </template>
  52. 高新区
  53. </el-descriptions-item>
  54. <el-descriptions-item>
  55. <template slot="label">
  56. 详细地址
  57. </template>
  58. 红星美凯龙2006
  59. </el-descriptions-item>
  60. <el-descriptions-item contentClassName="test">
  61. <template slot="label">
  62. 申请审核时间
  63. </template>
  64. 2023-05-26 16:55:30
  65. </el-descriptions-item>
  66. </el-descriptions>
  67. <div class="img-box">
  68. <div class="img-item">
  69. <div class="img"></div>
  70. <div class="img-title">头像</div>
  71. </div>
  72. <div class="img-item">
  73. <div class="img"></div>
  74. <div class="img-title">身份证正面照</div>
  75. </div>
  76. <div class="img-item">
  77. <div class="img"></div>
  78. <div class="img-title">身份证反面照</div>
  79. </div>
  80. <div class="img-item">
  81. <div class="img"></div>
  82. <div class="img-title">手持身份证照</div>
  83. </div>
  84. <div class="img-item">
  85. <div class="img"></div>
  86. <div class="img-title">其他资质</div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </template>
  92. <script>
  93. export default {
  94. name: 'adminDetail',
  95. components: {
  96. },
  97. data() {
  98. return {
  99. }
  100. },
  101. methods: {
  102. },
  103. created () {
  104. },
  105. }
  106. </script>
  107. <style lang="scss" >
  108. .adminDetail {
  109. .content{
  110. border: 1px solid #ccc;
  111. padding: 40px 20px;
  112. border-radius: 4px;
  113. .table{
  114. .item{
  115. display: flex;
  116. align-items: center;
  117. font-size: 14px;
  118. text-align: center;
  119. .label{
  120. flex: 0 0 100px;
  121. line-height: 42px;
  122. background: #f1f1f1;
  123. border: 1px solid #ccc;
  124. font-weight: bold;
  125. }
  126. .value{
  127. flex: 1;
  128. line-height: 42px;
  129. border: 1px solid #ccc;
  130. }
  131. }
  132. }
  133. .img-box{
  134. display: flex;
  135. align-items: center;
  136. margin-top: 80px;
  137. .img-item{
  138. flex: 1;
  139. display: flex;
  140. flex-direction: column;
  141. align-items: center;
  142. .img{
  143. width: 90%;
  144. height: 150px;
  145. background: #f1f1f1;
  146. }
  147. .img-title{
  148. font-size: 14px;
  149. margin-top: 15px;
  150. font-weight: bold;
  151. }
  152. }
  153. }
  154. }
  155. }
  156. </style>