| | |
| | | <script> |
| | | import { listData, getData, delData, addData, updateData } from "@/api/system/dict/data"; |
| | | import { listType, getType } from "@/api/system/dict/type"; |
| | | import { downLoadExcel } from "@/utils/download"; |
| | | |
| | | export default { |
| | | name: "Data", |
| | |
| | | queryParams: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | reasonable: true, |
| | | dictName: undefined, |
| | | dictType: undefined, |
| | | status: undefined |
| | |
| | | }, |
| | | /** 导出按钮操作 */ |
| | | handleExport() { |
| | | downLoadExcel('/system/dict/data/export', this.queryParams); |
| | | this.downLoadExcel('/system/dict/data/export', this.queryParams); |
| | | } |
| | | } |
| | | }; |