ClassDetail.vue 2.9 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 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">
.counter {
  .box {
    margin-top: 20px;
    display: flex;

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

      .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%;
      background-color: #f2f2f2;

      .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: 300px;
        overflow-y: scroll;

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

          .notice {
            /* padding-right: 20px;
          align-items: center;
          justify-items: center; */
            margin: 10px;
            color: white;
            background-color: #169bd5;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 14px;
            border-radius: 8px;
          }
        }
      
      }
    }
  }
}
</style>