studentDocument.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <view>
  3. <u-navbar title="学员文件"></u-navbar>
  4. <view class="main">
  5. <u-search placeholder="搜索附件名称" bg-color="#fff" :show-action="false"></u-search>
  6. <view class="document-box">
  7. <view class="icon">
  8. <img src="../../../assets/img/JPG Copy@1x.png" alt="">
  9. </view>
  10. <view class="text">
  11. <view class="title">
  12. 2023春季中国舞十级班开课合照
  13. </view>
  14. <view class="infos">
  15. <view class="time">
  16. 2023-01-03 16:00
  17. </view>
  18. <view class="name">
  19. 夏奕琳上传
  20. </view>
  21. </view>
  22. </view>
  23. <view class="download">
  24. <img src="../../../assets/img/iconfont-unie122 3 Copy@1x.png" alt="">
  25. </view>
  26. </view>
  27. <view class="document-box">
  28. <view class="icon">
  29. <img src="../../../assets/img/XLS Copy@1x.png" alt="">
  30. </view>
  31. <view class="text">
  32. <view class="title">
  33. 周梓轩足球课排课表
  34. </view>
  35. <view class="infos">
  36. <view class="time">
  37. 2023-01-03 16:00
  38. </view>
  39. <view class="name">
  40. 瞿明祥上传
  41. </view>
  42. </view>
  43. </view>
  44. <view class="download">
  45. <img src="../../../assets/img/iconfont-unie122 3 Copy@1x.png" alt="">
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. }
  56. },
  57. methods: {
  58. }
  59. }
  60. </script>
  61. <style lang="scss" scoped>
  62. ::v-deep.u-search{
  63. margin-bottom: 8px !important;
  64. position:fixed;
  65. top:100rpx;
  66. left: 32rpx;
  67. right: 32rpx;
  68. }
  69. .main{
  70. margin-top: 92rpx;
  71. padding: 12rpx 32rpx;
  72. .document-box{
  73. padding: 30rpx 32rpx;
  74. background-color: #fff;
  75. border-radius: 8px;
  76. display: flex;
  77. align-items: center;
  78. margin-bottom: 12px;
  79. .text{
  80. margin-left: 24rpx;
  81. .title{
  82. color: rgba(51, 51, 51, 1);
  83. font-size: 32rpx;
  84. line-height: 44rpx;
  85. }
  86. .infos{
  87. display: flex;
  88. align-items: center;
  89. margin-top: 4rpx;
  90. line-height: 34rpx;
  91. .time{
  92. color: rgba(159, 163, 166, 1);
  93. font-size: 24rpx;
  94. }
  95. .name{
  96. color: rgba(13, 186, 199, 1);
  97. font-size: 24rpx;
  98. margin-left: 24rpx;
  99. }
  100. }
  101. }
  102. .download{
  103. margin-left: auto;
  104. }
  105. @media screen and(max-width:320px){
  106. .text{
  107. margin-left: 12rpx;
  108. }
  109. }
  110. }
  111. }
  112. </style>