123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <div class="home">
- <div class="title">
- <Icon type="ios-home-outline" size="22" />
- <p><router-link to="/TeacherZone/ZonesHome">工作室首页</router-link></p><span>>评课列表</span>
- </div>
- <div class="list-info">
- <h1 class="list-title">网上评课</h1>
- <Tabs class="list" value="name1">
- <TabPane label="全部" name="name1">暂无数据</TabPane>
- <TabPane label="进行中" name="name2">暂无数据</TabPane>
- <TabPane label="未开始" name="name3">暂无数据</TabPane>
- <TabPane label="已结束" name="name4">暂无数据</TabPane>
- </Tabs>
- </div>
- <div class="content-info">
- <h1 class="list-title">最新评课</h1>
- <p>暂无数据</p>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- viewDetails() {
- this.$router.push({ path: '/TeacherZone/TeachDetails' })
- },
- chooseTab() {
- this.info = this.data;
- }
- }
- }
- </script>
- <style scoped>
- .home {
- width: 66%;
- height: 500px;
- position: absolute;
- top: 70%;
- left: 53%;
- transform: translate(-50%,-50%);
- float: left;
- display: inline-flex;
- }
- .title {
- font-size: 16px;
- text-align: left;
- font-weight: 600;
- width: 300px;
- }
- .title p {
- display: inline;
- }
- .list-info {
- margin-top: 35px;
- width: 50%;
- background: #fff;
- /* float: left; */
- margin-left: -24%;
- height: 200px;
- border: 1px solid #ededed;
- }
- .list-title {
- float: left;
- height: 57px;
- line-height: 57px;
- font-size: 20px;
- margin-left: 10px;
- color: #288add;
- border-bottom: 1px solid #288add;
- }
- .list {
- margin-top: 10%;
- margin-left: 1%;
- font-size: 15px;
- }
- .content-info {
- width: 25%;
- height: 200px;
- border: 1px solid #ededed;
- margin-top: 3%;
- margin-left: 4%;
- background-color: #ffffff;
- }
- .content-info p {
- margin-top: 25%;
- font-size: 15px;
- margin-left: 10px;
- }
- </style>
|