123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <view>
- <view class="video_box">
-
- </view>
-
- <view class="calendar-filled">
- <view class="icon">
- <uni-icons type="calendar-filled" color="#00A0E8" size="26"></uni-icons>
- </view>
- <view class="time">
- 2022-07-16
- </view>
- <view class="icon">
- <uni-icons type="bottom"></uni-icons>
- </view>
- </view>
-
- <view class="btn_list">
- <view class="btn" v-for="(item,index) in 17" :key="index">00:00-00:30</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- .video_box{
- height: 600rpx;
- }
- .calendar-filled{
- margin: 0 auto;
- width: 360rpx;
- height: 70rpx;
- border-radius: 50rpx;
- border: 2rpx solid #00A0E8;
-
- box-sizing: border-box;
- padding: 0 40rpx;
-
- display: flex;
- align-items: center;
- justify-content: space-between;
-
- .time{
- font-size: 28rpx;
- color: #00A0E8;
- }
- }
-
- .btn_list{
- box-sizing: border-box;
- padding: 25rpx;
- overflow: hidden;
- .btn{
- margin-right: 50rpx;
-
- width: 200rpx;
- height: 65rpx;
- font-size: 24rpx;
- color: #464646;
- }
- .btn:nth-child(3n){
- margin-right: 0;
- }
- }
- </style>
|