This commit is contained in:
guochunsi
2026-01-14 11:41:04 +08:00
parent d0c8ea0223
commit 6055033289
49 changed files with 2043 additions and 1740 deletions

View File

@@ -131,8 +131,7 @@ import { useUserInfo } from '/@/stores/userInfo'
import { BasicTableProps, useTable } from '/@/hooks/table'
import { useMessage, useMessageBox } from '/@/hooks/message'
import { list } from '/@/api/recruit/recruitstudentplangroup'
import { addObj, delObj, fetchList } from '/@/api/recruit/recruitImitateAdjustBatch'
import request from '/@/utils/request'
import { delObj, fetchList } from '/@/api/recruit/recruitImitateAdjustBatch'
const TableForm = defineAsyncComponent(() => import('./detaiform.vue'))
const MnTable = defineAsyncComponent(() => import('./mnTable.vue'))
@@ -181,8 +180,8 @@ const state: BasicTableProps = reactive<BasicTableProps>({
const response = await fetchList(params)
return {
data: {
records: response.data.data.records,
total: response.data.data.total
records: response.data.records,
total: response.data.total
}
}
},
@@ -196,13 +195,13 @@ const { getDataList, currentChangeHandle, sizeChangeHandle, tableStyle, downBlob
const init = async () => {
try {
const data = await list()
planList.value = data.data.data || []
planList.value = data.data || []
if (planList.value.length > 0) {
queryForm.groupId = planList.value[0].id
}
getDataList()
} catch (error) {
console.error('初始化失败', error)
// 初始化失败
}
}
@@ -250,9 +249,9 @@ const deleteHandle = async (id: string) => {
// 重置查询
const resetQuery = () => {
searchFormRef.value?.resetFields()
Object.keys(queryForm).forEach(key => {
queryForm[key] = ''
})
queryForm.groupId = ''
queryForm.batchName = ''
queryForm.batchCode = ''
if (planList.value.length > 0) {
queryForm.groupId = planList.value[0].id
}