黄何裕
2024-07-26 e3c2f393e6080b5e34c5eb22fb6ed6271e1317bd
src/views/student/index.vue
@@ -6,8 +6,8 @@
      <el-tab-pane label="已过期" name="third" />
      <el-tab-pane label="已停用" name="fourth" />
    </el-tabs>
    <div style="display: flex; flex-direction: row-reverse;">
      <div style="width: 300px;">
    <div style="display: flex; flex-direction: row-reverse">
      <div style="width: 300px">
        <el-input
          placeholder="按姓名搜索"
          v-model="input3"
@@ -39,6 +39,7 @@
      <el-table-column label="账户" width="">
        <template slot-scope=""> asfiaf </template>
      </el-table-column>
      {{ accountList }}
      <!-- <el-table-column label="Author" width="110" align="center">
        <template slot-scope="scope">
          <span>{{ scope.row.author }}</span>
@@ -65,7 +66,7 @@
</template>
<script>
import { getList } from "@/api/table";
import { getData } from "@/api/student";
export default {
  filters: {
@@ -83,6 +84,15 @@
      list: null,
      listLoading: true,
      activeName: "first",
      data: {
        staffId: "1680",
        keyword: "",
        pageIn: {
          //可选,如果是分页查询,需要加上。
          index: 1, //必选
          size: 20, //每页的大小。默认20
        },
      },
    };
  },
  created() {
@@ -91,7 +101,7 @@
  methods: {
    fetchData() {
      this.listLoading = true;
      getList().then((response) => {
      getData(this.data).then((response) => {
        this.list = response.data.items;
        this.listLoading = false;
      });