ClassDetail.vue 4.5 KB
<script setup>
import { ref } from 'vue'
import Head from '@/components/head.vue'
const list = ref(['任务', '章节', '讨论', '作业', '考试', '出勤', '记分册', '作业成绩', '知识点'])
const activeNames = ref(['1'])
</script>
<template>
  <div class="counter">
    <Head></Head>
    <div class="box">
      <div class="left">
        <div class="top">
          <img src="@/static/kecheng.png" alt="" />
          XXXXXXXXX
        </div>
        <div class="bottom">
          <div class="li" v-for="item in list" :key="item">{{ item }}</div>
        </div>
      </div>
      <div class="right">
        <div class="two">XX班级</div>
        <div>
          <van-collapse v-model="activeNames">
            <van-collapse-item title="进行中" name="1">
              <div class="box5">
                <div class="end" v-for="item in 8" :key="item">
                  <div class="let">
                    <div class="notice">通知</div>
                  <div>签到</div>
                  </div>
                  <div class="rit">
                    结束时间:2024-1-20 16:22
                  </div>
                  
                </div>
              </div>
            </van-collapse-item>
            <van-collapse-item title="已结束" name="2">
              <div class="box5">
                <div class="end" v-for="item in 8" :key="item">
                  <div class="let">
                    <div class="notices">通知</div>
                  <div>签到</div>
                  </div>
                  <div class="rit">
                    结束时间:2024-1-20 16:22
                  </div>
                  
                </div>
              </div>
            </van-collapse-item>
          </van-collapse>
        </div>
        <!-- <div class="box3">进行中</div>
        <div class="box4">已结束</div>
        <div class="box5">
          <div class="end" v-for="item in 8" :key="item">
            <div class="notice">通知</div>
            <div>签到</div>
          </div>
        </div> -->
      </div>
    </div>
  </div>
</template>

<style lang="scss" scoped>
.counter {
  width: 100%;
  height: 100%;
  .box {
    width: 100%;
    height: 613px;
    margin-top: 20px;
    display: flex;

    .left {
      margin-left: 30px;
      width: 20%;
      height: 100%;

      .top {
        display: flex;
        text-align: center;
        flex-direction: column;
        width: 180px;
        height: 140px;

        img {
          width: 100%;
          height: 90%;
          padding: 10px 0;
        }
      }

      .bottom {
        margin-top: 20px;
        text-align: center;
        background-color: #f2f2f2;
        width: 180px;

        .li {
          width: 100%;
          height: 40px;
          line-height: 40px;
          border-bottom: 1px dashed black;
        }

        .li:last-child {
          border-bottom: none;
        }
      }
    }

    .right {
      width: 70%;
      height: 86%;
      background-color: #f2f2f2;
      overflow: hidden;
      .two {
        padding-left: 20px;
        font-weight: 700;
        height: 60px;
        line-height: 60px;
        border-bottom: 1px #dadada solid;
      }

      .box3 {
        padding-left: 20px;
        height: 60px;
        line-height: 60px;
        border-bottom: 1px #dadada solid;
      }

      .box4 {
        background-color: #ffffff;
        padding-left: 20px;
        height: 60px;
        line-height: 60px;
        border-bottom: 1px #dadada solid;
      }

      .box5 {
        height: 355px;
        overflow-y: scroll;

        .end {
          background-color: #ffffff;
          display: flex;
          justify-content: space-between;
          padding-left: 20px;
          height: 60px;
          line-height: 60px;
          border-bottom: #dadada 1px solid;
          .let {
            display: flex;
            .notice {
            margin: 10px;
            color: white;
            background-color: #169bd5;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 14px;
            border-radius: 8px;
          }
          .notices {
            margin: 10px;
            color: white;
            background-color: #c4c9cc;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 14px;
            border-radius: 8px;
          }
          }
          .rit {
            padding-right: 35px;
          }

          
        }
      }
    }
  }
}
</style>