| | |
| | | import {sysDictType, sysDictData} from "@/api/system/dict"; |
| | | import {onMounted} from "vue"; |
| | | import setPostParams from "@/utils/searchParams.js"; |
| | | import {ElMessage} from "element-plus"; |
| | | |
| | | const {proxy} = getCurrentInstance(); |
| | | |
| | |
| | | |
| | | /** 删除按钮操作 */ |
| | | function handleDelete(row) { |
| | | proxy.$modal.confirm('确认删除"' + row.dictName + '?') |
| | | .then(async () => { |
| | | console.log("无删除功能"); |
| | | }).catch(() => { |
| | | }); |
| | | proxy.$modal.confirm('确认删除"' + row.dictName + '?').then(() => { |
| | | sysDictType().remove(row.id).then(() => { |
| | | ElMessage.success('删除成功') |
| | | getList() |
| | | }) |
| | | }) |
| | | } |
| | | |
| | | /** 关闭弹窗 */ |