This commit is contained in:
zhoutianchi
2026-01-15 11:54:21 +08:00
parent 8bdd7985d3
commit a36ba16332
2 changed files with 299 additions and 294 deletions

View File

@@ -71,3 +71,15 @@ export const putObj = (obj: any) => {
data: obj, data: obj,
}); });
}; };
/**
* 更新
* @param obj
*/
export const editQuickField = (obj: any) => {
return request({
url: '/recruit/recruitstudentplangroup/editQuickField',
method: 'post',
data: obj,
});
};

View File

@@ -31,22 +31,10 @@
<!-- 操作按钮 --> <!-- 操作按钮 -->
<div class="mb15"> <div class="mb15">
<el-button <el-button v-if="permissions.recruit_recruitstudentplangroup_add" type="primary" icon="FolderAdd" @click="addOrUpdateHandle">
v-if="permissions.recruit_recruitstudentplangroup_add"
type="primary"
icon="FolderAdd"
@click="addOrUpdateHandle"
>
</el-button> </el-button>
<el-button <el-button v-if="permissions.recruit_recruitexampeople_add" type="primary" plain icon="UserFilled" class="ml10" @click="editExam">
v-if="permissions.recruit_recruitexampeople_add"
type="primary"
plain
icon="UserFilled"
class="ml10"
@click="editExam"
>
审核人员 审核人员
</el-button> </el-button>
</div> </div>
@@ -67,7 +55,9 @@
<template #default="scope"> <template #default="scope">
<div class="date-cell"> <div class="date-cell">
<el-icon class="date-icon"><Calendar /></el-icon> <el-icon class="date-icon"><Calendar /></el-icon>
<span class="date-text">{{ dateFormat(scope.row.startDate, 'YYYY-mm-dd') + ' 至 ' + dateFormat(scope.row.endDate, 'YYYY-mm-dd') }}</span> <span class="date-text">{{
dateFormat(scope.row.startDate, 'YYYY-mm-dd') + ' 至 ' + dateFormat(scope.row.endDate, 'YYYY-mm-dd')
}}</span>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
@@ -75,7 +65,9 @@
<template #default="scope"> <template #default="scope">
<div class="date-cell"> <div class="date-cell">
<el-icon class="date-icon"><Calendar /></el-icon> <el-icon class="date-icon"><Calendar /></el-icon>
<span class="date-text">{{ dateFormat(scope.row.maintenanceStartDate, 'YYYY-mm-dd') + ' 至 ' + dateFormat(scope.row.maintenanceEndDate, 'YYYY-mm-dd') }}</span> <span class="date-text">{{
dateFormat(scope.row.maintenanceStartDate, 'YYYY-mm-dd') + ' 至 ' + dateFormat(scope.row.maintenanceEndDate, 'YYYY-mm-dd')
}}</span>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
@@ -87,7 +79,7 @@
inactive-text="" inactive-text=""
active-value="1" active-value="1"
inactive-value="0" inactive-value="0"
@change="changeSm(scope.row)" @change="changeSm(scope.row, 'czSignStart')"
/> />
</template> </template>
</el-table-column> </el-table-column>
@@ -99,7 +91,7 @@
inactive-text="" inactive-text=""
active-value="1" active-value="1"
inactive-value="0" inactive-value="0"
@change="changeSm(scope.row)" @change="changeSm(scope.row, 'gzSignStart')"
/> />
</template> </template>
</el-table-column> </el-table-column>
@@ -111,7 +103,7 @@
inactive-text="" inactive-text=""
active-value="1" active-value="1"
inactive-value="0" inactive-value="0"
@change="changeSm(scope.row)" @change="changeSm(scope.row, 'jzxSignStart')"
/> />
</template> </template>
</el-table-column> </el-table-column>
@@ -123,7 +115,7 @@
inactive-text="" inactive-text=""
active-value="1" active-value="1"
inactive-value="0" inactive-value="0"
@change="changeSm(scope.row)" @change="changeSm(scope.row, 'isPreStart')"
/> />
</template> </template>
</el-table-column> </el-table-column>
@@ -138,22 +130,10 @@
> >
调整 调整
</el-button> </el-button>
<el-button <el-button v-if="permissions.recruit_recruitstudentplangroup_edit" type="primary" link icon="Switch" @click="majorHandle(scope.row)">
v-if="permissions.recruit_recruitstudentplangroup_edit"
type="primary"
link
icon="Switch"
@click="majorHandle(scope.row)"
>
专业调整 专业调整
</el-button> </el-button>
<el-button <el-button v-if="permissions.recruit_recruitstudentplangroup_del" type="primary" link icon="Delete" @click="deleteHandle(scope.row.id)">
v-if="permissions.recruit_recruitstudentplangroup_del"
type="primary"
link
icon="Delete"
@click="deleteHandle(scope.row.id)"
>
删除 删除
</el-button> </el-button>
</template> </template>
@@ -161,11 +141,7 @@
</el-table> </el-table>
<!-- 分页 --> <!-- 分页 -->
<pagination <pagination v-bind="state.pagination" @current-change="currentChangeHandle" @size-change="sizeChangeHandle" />
v-bind="state.pagination"
@current-change="currentChangeHandle"
@size-change="sizeChangeHandle"
/>
<!-- 弹窗, 新增 / 修改 --> <!-- 弹窗, 新增 / 修改 -->
<table-form v-if="addOrUpdateVisible" ref="addOrUpdateRef" @refreshDataList="getDataList" /> <table-form v-if="addOrUpdateVisible" ref="addOrUpdateRef" @refreshDataList="getDataList" />
@@ -174,188 +150,206 @@
</div> </div>
<!-- 预登记二维码弹窗 --> <!-- 预登记二维码弹窗 -->
<el-dialog v-model="dialogFormVisible" title="预登记二维码" width="10%" height="50%" @close="dialogFormVisible=false"> <el-dialog v-model="dialogFormVisible" title="预登记二维码" width="10%" height="50%" @close="dialogFormVisible = false">
<!-- <vue-qr :text="payQrcode" :size="200"></vue-qr>--> <!-- <vue-qr :text="payQrcode" :size="200"></vue-qr>-->
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
<script setup lang="ts" name="recruitstudentplangroup"> <script setup lang="ts" name="recruitstudentplangroup">
import { ref, reactive, computed, onMounted, nextTick, defineAsyncComponent } from 'vue' import { ref, reactive, computed, onMounted, nextTick, defineAsyncComponent } from 'vue';
import { storeToRefs } from 'pinia' import { storeToRefs } from 'pinia';
import { useUserInfo } from '/@/stores/userInfo' import { useUserInfo } from '/@/stores/userInfo';
import { BasicTableProps, useTable } from '/@/hooks/table' import { BasicTableProps, useTable } from '/@/hooks/table';
import { useMessage, useMessageBox } from '/@/hooks/message' import { useMessage, useMessageBox } from '/@/hooks/message';
import { delObj, fetchList, putObj } from '/@/api/recruit/recruitstudentplangroup' import { delObj, fetchList, putObj, editQuickField } from '/@/api/recruit/recruitstudentplangroup';
import { formatDate } from '/@/utils/formatTime' import { formatDate } from '/@/utils/formatTime';
import { Calendar } from '@element-plus/icons-vue' import { Calendar } from '@element-plus/icons-vue';
// import vueQr from 'vue-qr' // import vueQr from 'vue-qr'
const TableForm = defineAsyncComponent(() => import('./enrolplantemplate-form.vue')) const TableForm = defineAsyncComponent(() => import('./enrolplantemplate-form.vue'));
const MajorGroupByDeptForm = defineAsyncComponent(() => import('@/views/recruit/recruitplanmajor/majorGroupByDept.vue')) const MajorGroupByDeptForm = defineAsyncComponent(() => import('@/views/recruit/recruitplanmajor/majorGroupByDept.vue'));
const ExamPeopleIndex = defineAsyncComponent(() => import('@/views/recruit/recruitexampeople/index.vue')) const ExamPeopleIndex = defineAsyncComponent(() => import('@/views/recruit/recruitexampeople/index.vue'));
// 使用 Pinia store // 使用 Pinia store
const userInfoStore = useUserInfo() const userInfoStore = useUserInfo();
const { userInfos } = storeToRefs(userInfoStore) const { userInfos } = storeToRefs(userInfoStore);
// 创建权限对象 // 创建权限对象
const permissions = computed(() => { const permissions = computed(() => {
const perms: Record<string, boolean> = {} const perms: Record<string, boolean> = {};
userInfos.value.authBtnList.forEach((perm: string) => { userInfos.value.authBtnList.forEach((perm: string) => {
perms[perm] = true perms[perm] = true;
}) });
return perms return perms;
}) });
// 消息提示 hooks // 消息提示 hooks
const message = useMessage() const message = useMessage();
const messageBox = useMessageBox() const messageBox = useMessageBox();
// 表格引用 // 表格引用
const tableRef = ref() const tableRef = ref();
const searchFormRef = ref() const searchFormRef = ref();
const addOrUpdateRef = ref() const addOrUpdateRef = ref();
const majorGroupByDeptRef = ref() const majorGroupByDeptRef = ref();
const examPeopleIndexRef = ref() const examPeopleIndexRef = ref();
// 弹窗状态 // 弹窗状态
const addOrUpdateVisible = ref(false) const addOrUpdateVisible = ref(false);
const exitExamVisible = ref(false) const exitExamVisible = ref(false);
const dialogFormVisible = ref(false) const dialogFormVisible = ref(false);
// 数据 // 数据
const payQrcode = ref('') const payQrcode = ref('');
// 查询表单 // 查询表单
const queryForm = reactive({ const queryForm = reactive({
groupName: '' groupName: '',
}) });
// 日期格式化 // 日期格式化
const dateFormat = (date: string | null | undefined, format: string) => { const dateFormat = (date: string | null | undefined, format: string) => {
if (!date) return '-' if (!date) return '-';
try { try {
return formatDate(new Date(date), format) return formatDate(new Date(date), format);
} catch (error) { } catch (error) {
return date return date;
} }
} };
// 表格状态 // 表格状态
const state: BasicTableProps = reactive<BasicTableProps>({ const state: BasicTableProps = reactive<BasicTableProps>({
queryForm: queryForm, queryForm: queryForm,
pageList: async (params: any) => { pageList: async (params: any) => {
const response = await fetchList(params) const response = await fetchList(params);
return { return {
data: { data: {
records: response.data.records, records: response.data.records,
total: response.data.total total: response.data.total,
} },
} };
} },
}) });
// 使用 table hook // 使用 table hook
const { getDataList, currentChangeHandle, sizeChangeHandle, tableStyle } = useTable(state) const { getDataList, currentChangeHandle, sizeChangeHandle, tableStyle } = useTable(state);
// 初始化(如果需要初始化逻辑可以在这里添加) // 初始化(如果需要初始化逻辑可以在这里添加)
const init = async () => { const init = async () => {
// 初始化逻辑 // 初始化逻辑
} };
// 显示二维码 // 显示二维码
const showQrCode = (row: any) => { const showQrCode = (row: any) => {
payQrcode.value = '123' payQrcode.value = '123';
dialogFormVisible.value = true dialogFormVisible.value = true;
} };
// 修改开关 // 修改开关
const changeSm = async (row: any) => { const changeSm = async (row: any, type: any) => {
try { try {
await putObj(row) let params = {} as any;
message.success('修改成功') params.id = row.id;
} catch (error: any) { if (type == 'czSignStart') {
message.error(error.msg || '修改失败') params['czSignStart'] = row.czSignStart;
} }
} if (type == 'gzSignStart') {
params['gzSignStart'] = row.gzSignStart;
}
if (type == 'jzxSignStart') {
params['jzxSignStart'] = row.jzxSignStart;
}
if (type == 'isPreStart') {
params['isPreStart'] = row.isPreStart;
}
await editQuickField(params);
message.success('修改成功');
} catch (error: any) {
message.error(error.msg || '修改失败');
}
};
// 新增 / 修改 // 新增 / 修改
const addOrUpdateHandle = (id?: string) => { const addOrUpdateHandle = (id?: string) => {
addOrUpdateVisible.value = true addOrUpdateVisible.value = true;
nextTick(() => { nextTick(() => {
addOrUpdateRef.value?.init(id) addOrUpdateRef.value?.init(id);
}) });
} };
// 编辑审核人员 // 编辑审核人员
const editExam = () => { const editExam = () => {
exitExamVisible.value = true exitExamVisible.value = true;
// 如果组件已经加载,立即初始化 // 如果组件已经加载,立即初始化
if (examPeopleIndexRef.value && typeof examPeopleIndexRef.value.init === 'function') { if (examPeopleIndexRef.value && typeof examPeopleIndexRef.value.init === 'function') {
nextTick(() => { nextTick(() => {
try { try {
examPeopleIndexRef.value.init() examPeopleIndexRef.value.init();
} catch (error: any) { } catch (error: any) {
message.error('初始化审核人员弹窗失败:' + (error.message || '未知错误')) message.error('初始化审核人员弹窗失败:' + (error.message || '未知错误'));
exitExamVisible.value = false exitExamVisible.value = false;
} }
}) });
} }
// 否则等待 watch 监听器处理 // 否则等待 watch 监听器处理
} };
// 监听组件引用变化,当组件加载完成后自动初始化 // 监听组件引用变化,当组件加载完成后自动初始化
watch(examPeopleIndexRef, (newVal) => { watch(
examPeopleIndexRef,
(newVal) => {
if (newVal && exitExamVisible.value) { if (newVal && exitExamVisible.value) {
nextTick(() => { nextTick(() => {
if (newVal && typeof newVal.init === 'function') { if (newVal && typeof newVal.init === 'function') {
try { try {
newVal.init() newVal.init();
} catch (error: any) { } catch (error: any) {
message.error('初始化审核人员弹窗失败:' + (error.message || '未知错误')) message.error('初始化审核人员弹窗失败:' + (error.message || '未知错误'));
exitExamVisible.value = false exitExamVisible.value = false;
} }
} }
}) });
} }
}, { immediate: true }) },
{ immediate: true }
);
// 专业调整 // 专业调整
const majorHandle = (row: any) => { const majorHandle = (row: any) => {
if (!row || !row.id) { if (!row || !row.id) {
message.warning('请选择有效的招生计划') message.warning('请选择有效的招生计划');
return return;
} }
nextTick(() => { nextTick(() => {
majorGroupByDeptRef.value?.init(row) majorGroupByDeptRef.value?.init(row);
}) });
} };
// 删除 // 删除
const deleteHandle = async (id: string) => { const deleteHandle = async (id: string) => {
try { try {
await messageBox.confirm('是否确认删除本条数据?请谨慎操作') await messageBox.confirm('是否确认删除本条数据?请谨慎操作');
await delObj(id) await delObj(id);
message.success('删除成功') message.success('删除成功');
getDataList() getDataList();
} catch { } catch {
// 用户取消 // 用户取消
} }
} };
// 重置查询 // 重置查询
const resetQuery = () => { const resetQuery = () => {
searchFormRef.value?.resetFields() searchFormRef.value?.resetFields();
queryForm.groupName = '' queryForm.groupName = '';
getDataList() getDataList();
} };
onMounted(() => { onMounted(() => {
init() init();
getDataList() getDataList();
}) });
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@@ -383,5 +377,4 @@ onMounted(() => {
} }
/* 开启报名开关文字颜色 */ /* 开启报名开关文字颜色 */
</style> </style>