| | |
| | | <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" |
| | |
| | | <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> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import { getList } from "@/api/table"; |
| | | import { getData } from "@/api/student"; |
| | | |
| | | export default { |
| | | filters: { |
| | |
| | | list: null, |
| | | listLoading: true, |
| | | activeName: "first", |
| | | data: { |
| | | staffId: "1680", |
| | | keyword: "", |
| | | pageIn: { |
| | | //可选,如果是分页查询,需要加上。 |
| | | index: 1, //必选 |
| | | size: 20, //每页的大小。默认20 |
| | | }, |
| | | }, |
| | | }; |
| | | }, |
| | | created() { |
| | |
| | | methods: { |
| | | fetchData() { |
| | | this.listLoading = true; |
| | | getList().then((response) => { |
| | | getData(this.data).then((response) => { |
| | | this.list = response.data.items; |
| | | this.listLoading = false; |
| | | }); |