123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <template>
- <view>
- <u-navbar title="学员文件"></u-navbar>
- <view class="main">
- <u-search placeholder="搜索附件名称" bg-color="#fff" :show-action="false"></u-search>
-
- <view class="document-box">
- <view class="icon">
- <img src="../../../assets/img/JPG Copy@1x.png" alt="">
- </view>
-
- <view class="text">
- <view class="title">
- 2023春季中国舞十级班开课合照
- </view>
- <view class="infos">
- <view class="time">
- 2023-01-03 16:00
- </view>
- <view class="name">
- 夏奕琳上传
- </view>
- </view>
- </view>
-
- <view class="download">
- <img src="../../../assets/img/iconfont-unie122 3 Copy@1x.png" alt="">
- </view>
-
- </view>
-
- <view class="document-box">
- <view class="icon">
- <img src="../../../assets/img/XLS Copy@1x.png" alt="">
- </view>
-
- <view class="text">
- <view class="title">
- 周梓轩足球课排课表
- </view>
- <view class="infos">
- <view class="time">
- 2023-01-03 16:00
- </view>
- <view class="name">
- 瞿明祥上传
- </view>
- </view>
- </view>
-
- <view class="download">
- <img src="../../../assets/img/iconfont-unie122 3 Copy@1x.png" alt="">
- </view>
-
- </view>
-
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- ::v-deep.u-search{
- margin-bottom: 8px !important;
- position:fixed;
- top:100rpx;
- left: 32rpx;
- right: 32rpx;
- }
- .main{
- margin-top: 92rpx;
- padding: 12rpx 32rpx;
- .document-box{
- padding: 30rpx 32rpx;
- background-color: #fff;
- border-radius: 8px;
- display: flex;
- align-items: center;
- margin-bottom: 12px;
-
- .text{
- margin-left: 24rpx;
- .title{
- color: rgba(51, 51, 51, 1);
- font-size: 32rpx;
- line-height: 44rpx;
- }
- .infos{
- display: flex;
- align-items: center;
- margin-top: 4rpx;
- line-height: 34rpx;
- .time{
- color: rgba(159, 163, 166, 1);
- font-size: 24rpx;
- }
- .name{
- color: rgba(13, 186, 199, 1);
- font-size: 24rpx;
- margin-left: 24rpx;
- }
- }
-
- }
- .download{
- margin-left: auto;
- }
- @media screen and(max-width:320px){
- .text{
- margin-left: 12rpx;
- }
- }
- }
- }
- </style>
|