兵马未动 粮草先行

This commit is contained in:
RISE
2026-02-08 23:47:50 +08:00
parent 00a005e65f
commit 2670340af3
47 changed files with 3909 additions and 257 deletions

View File

@@ -207,7 +207,7 @@
</template>
</el-table-column>
</template>
<el-table-column label="操作" width="150" align="center" fixed="right">
<el-table-column label="操作" width="220" align="center" fixed="right">
<template #header>
<el-icon><Setting /></el-icon>
<span style="margin-left: 4px">操作</span>
@@ -220,6 +220,13 @@
@click="handleEdit(scope.row)">
编辑
</el-button>
<el-button
icon="RefreshLeft"
link
type="warning"
@click="handleCancel(scope.row)">
异动撤销
</el-button>
<el-button
icon="Delete"
link
@@ -250,7 +257,7 @@
import { reactive, ref, onMounted, computed, nextTick } from 'vue'
import { useRoute } from 'vue-router'
import { BasicTableProps, useTable } from "/@/hooks/table";
import { fetchList, delObj, exportData } from "/@/api/stuwork/stuturnover";
import { fetchList, delObj, exportData, cancelObj } from "/@/api/stuwork/stuturnover";
import { queryAllSchoolYear } from "/@/api/basic/basicyear";
import { getDicts } from "/@/api/admin/dict";
import { getDeptListByLevelTwo } from "/@/api/basic/basicdept";
@@ -258,7 +265,7 @@ import { list as getClassList } from "/@/api/basic/basicclass";
import { useMessage, useMessageBox } from "/@/hooks/message";
import TableColumnControl from '/@/components/TableColumnControl/index.vue'
import FormDialog from './form.vue'
import { List, Calendar, Clock, OfficeBuilding, Grid, CreditCard, Avatar, Collection, Document, Setting, Menu, Search } from '@element-plus/icons-vue'
import { List, Calendar, Clock, OfficeBuilding, Grid, CreditCard, Avatar, Collection, Document, Setting, Menu, Search, RefreshLeft } from '@element-plus/icons-vue'
import { useTableColumnControl } from '/@/hooks/tableColumn'
@@ -400,6 +407,20 @@ const handleEdit = (row: any) => {
formDialogRef.value?.openDialog('edit', row)
}
// 异动撤销
const handleCancel = async (row: any) => {
try {
await useMessageBox().confirm('确定要撤销该条学籍异动吗?')
await cancelObj([row.id])
useMessage().success('撤销成功')
getDataList()
} catch (err: any) {
if (err !== 'cancel') {
useMessage().error(err?.msg || '撤销失败')
}
}
}
// 删除
const handleDelete = async (row: any) => {
try {