黄何裕
2024-08-01 e3474cf91877c95964b0d87fe55311941e601d6b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<template>
  <div class="app-container">
    <el-tabs v-model="activeName" @tab-click="handleClick">
      <el-tab-pane label="作业" name="first">
        <div style="display: flex; flex-direction: row-reverse">
          <div style="width: 300px">
            <el-input
              placeholder="按作业名称搜索"
              v-model="input3"
              class="input-with-select"
              size="small"
            >
              <el-button slot="append" icon="el-icon-search"></el-button>
            </el-input>
          </div>
        </div>
        <el-table
          v-loading="listLoading"
          :data="list"
          element-loading-text="Loading"
          fit
        >
          <el-table-column label="作业名称">
            <template slot-scope=""> xxxxx </template>
          </el-table-column>
          <el-table-column label="班级" width="80">
            <template slot-scope=""> 男 </template>
          </el-table-column>
          <el-table-column label="学员" width="200">
            <template slot-scope=""> 10086 </template>
          </el-table-column>
          <el-table-column label="教师" width="200">
            <template slot-scope=""> asfiaf </template>
          </el-table-column>
          <el-table-column label="截止日期" width="">
            <template slot-scope=""> asfiaf </template>
          </el-table-column>
          <el-table-column label="内容" width="">
            <template slot-scope=""> asfiaf </template>
          </el-table-column>
          <el-table-column label="操作" width="">
            <template slot-scope=""> 修改 </template>
          </el-table-column>
        </el-table>
      </el-tab-pane>
      <el-tab-pane label="批阅" name="fourth">
        <div style="display: flex; flex-direction: row-reverse">
          <div style="width: 300px">
            <el-input
              placeholder="按学员名称搜索"
              v-model="input3"
              class="input-with-select"
              size="small"
            >
              <el-button slot="append" icon="el-icon-search"></el-button>
            </el-input>
          </div>
        </div>
        <el-table
          v-loading="listLoading"
          :data="list"
          element-loading-text="Loading"
          fit
        >
          <el-table-column label="学员">
            <template slot-scope=""> xxxxx </template>
          </el-table-column>
          <el-table-column label="时间" width="80">
            <template slot-scope=""> 男 </template>
          </el-table-column>
          <el-table-column label="作业" width="200">
            <template slot-scope=""> 10086 </template>
          </el-table-column>
          <el-table-column label="点评" width="200">
            <template slot-scope=""> asfiaf </template>
          </el-table-column>
        </el-table>
      </el-tab-pane>
    </el-tabs>
  </div>
</template>
 
<script>
import { getList } from "@/api/table";
 
export default {
  filters: {
    statusFilter(status) {
      const statusMap = {
        published: "success",
        draft: "gray",
        deleted: "danger",
      };
      return statusMap[status];
    },
  },
  data() {
    return {
      list: null,
      listLoading: true,
      activeName: "first",
    };
  },
  created() {
    this.fetchData();
  },
  methods: {
    fetchData() {
      this.listLoading = true;
      getList().then((response) => {
        this.list = response.data.items;
        this.listLoading = false;
      });
    },
  },
};
</script>