This commit is contained in:
guochunsi
2026-01-20 18:38:15 +08:00
7 changed files with 199 additions and 38 deletions

View File

@@ -11,7 +11,7 @@
<template #default="{ visible }">
<template v-if="visible">
<el-form-item label="招生计划" prop="groupId">
<el-select v-model="dataForm.groupId" filterable clearable placeholder="请选择招生计划" @change="chanMajor">
<el-select v-model="dataForm.groupId" filterable clearable placeholder="请选择招生计划" >
<el-option
v-for="item in planList"
:key="item.id"
@@ -1125,12 +1125,12 @@ const handlePushCity = (id: string) => {
// 重新推送
const handleRePush = (row: any) => {
messageBox.confirm('是否确认重新推送本条数据?请谨慎操作').then(() => {
return rePushApi({ id: row.id })
}).then(() => {
message.success('推送成功')
getDataList()
})
// messageBox.confirm('是否确认重新推送本条数据?请谨慎操作').then(() => {
// return rePushApi({ id: row.id })
// }).then(() => {
// message.success('推送成功')
// getDataList()
// })
}
// 延迟缴费
@@ -1277,7 +1277,6 @@ const init = async () => {
if (planList.value.length > 0) {
dataForm.groupId = planList.value[0].id
getDataList()
chanMajor()
}
})