This commit is contained in:
zhoutianchi
2026-01-14 18:42:54 +08:00
parent 872c2f40d2
commit 498752ed65
15 changed files with 63 additions and 144 deletions

View File

@@ -119,7 +119,7 @@
<script setup lang="ts">
import { ref, reactive, nextTick } from 'vue'
import { ElNotification } from 'element-plus'
import { addObj, getObj, putObj, getCityPlan } from '/@/api/recruit/recruitplanmajor'
import { addObj, getObj, putObj } from '/@/api/recruit/recruitstudentplan'
import { getDeptList } from '/@/api/basic/basicclass'
import { list } from '/@/api/recruit/recruitstudentplangroup'
import { getMajorNameList } from '/@/api/basic/major'
@@ -297,9 +297,9 @@ const init = (id: string | null) => {
getObj(dataForm.id).then((response: any) => {
Object.assign(dataForm, response.data)
// 获取市平台对应年份下的招生计划
getCityPlan({ id: dataForm.id }).then((data: any) => {
cityPlanIdList.value = data.data
})
// getCityPlan({ id: dataForm.id }).then((data: any) => {
// cityPlanIdList.value = data.data
// })
})
}
})