This commit is contained in:
guochunsi
2026-01-30 16:29:15 +08:00
parent 53f71066f3
commit c6da6e286f
70 changed files with 688 additions and 519 deletions

View File

@@ -76,7 +76,7 @@
</el-row>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="对接人" prop="djUser" v-auth="'recruit_recruitprestudent_dj_sure'">
<el-form-item label="对接人" prop="djUser" v-if="hasAuth('recruit_recruitprestudent_dj_sure')">
<el-select v-model="dataForm.djUser" filterable clearable placeholder="" >
<el-option
v-for="item in contactNameList"
@@ -295,12 +295,14 @@
<script setup lang="ts">
import { ref, reactive, nextTick } from 'vue'
import { ElNotification } from 'element-plus'
import { useAuth } from '/@/hooks/auth'
import { getObj, addObjStu, putObj } from '/@/api/recruit/recruitprestudent'
import { getList } from '/@/api/recruit/recruitstudentplangroup'
import { getDicts } from '/@/api/admin/dict'
import { queryAllTeacherByRecruit } from '/@/api/professional/professionaluser/teacherbase'
import { verifyPhone, verifyAdmissionNumber } from '/@/utils/toolsValidate'
const { hasAuth } = useAuth()
// Props
const props = defineProps<{
planList?: any[]