1
This commit is contained in:
@@ -1163,12 +1163,12 @@ const getActionMenuItems = (row: any) => {
|
||||
icon: Document,
|
||||
visible: () => auth('recruit_recruitstudentsignup_show') && row.paiedOffline != '0' && row.auditStatus == '20'
|
||||
},
|
||||
{
|
||||
command: 'pushCity',
|
||||
label: '推送市局',
|
||||
icon: Upload,
|
||||
visible: () => auth('recruit_recruitstudentsignup_push') && row.auditStatus == '20'
|
||||
}
|
||||
// {
|
||||
// command: 'pushCity',
|
||||
// label: '推送市局',
|
||||
// icon: Upload,
|
||||
// visible: () => auth('recruit_recruitstudentsignup_push') && row.auditStatus == '20'
|
||||
// }
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
@@ -171,9 +171,9 @@
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button @click="visible = false">取消</el-button>
|
||||
<el-button type="primary" @click="dataFormSubmit('1')" v-if="canSubmit">保存</el-button>
|
||||
<el-button type="success" plain @click="dataFormSubmit('2')" v-if="canSubmit">通过</el-button>
|
||||
<el-button type="danger" plain @click="dataFormSubmit('3')" v-if="canSubmit">驳回</el-button>
|
||||
<el-button type="primary" @click="dataFormSubmit('1')" v-auth="'recruit_recruitstudentsignup_edit'" v-if="canSubmit">保存</el-button>
|
||||
<el-button type="success" plain @click="dataFormSubmit('2')" v-auth="'signup_material_exam'" v-if="canSubmit">通过</el-button>
|
||||
<el-button type="danger" plain @click="dataFormSubmit('3')" v-auth="'signup_material_exam'" v-if="canSubmit">驳回</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -191,7 +191,7 @@ import { storeToRefs } from 'pinia'
|
||||
import { useUserInfo } from '/@/stores/userInfo'
|
||||
import { Session } from '/@/utils/storage'
|
||||
import axios from 'axios'
|
||||
import { getObj, updateInfo } from '/@/api/recruit/recruitstudentsignup'
|
||||
import { getObj, materialExam } from '/@/api/recruit/recruitstudentsignup'
|
||||
import { getList } from '/@/api/recruit/recruitstudentplangroup'
|
||||
import { queryAllTeacher } from '/@/api/professional/professionaluser/teacherbase'
|
||||
|
||||
@@ -548,7 +548,7 @@ const dataFormSubmit = (submitType: string) => {
|
||||
}
|
||||
dataForm.zlsh = submitType
|
||||
canSubmit.value = false
|
||||
updateInfo(dataForm).then(() => {
|
||||
materialExam(dataForm).then(() => {
|
||||
ElNotification.success({
|
||||
title: '成功',
|
||||
message: '操作成功'
|
||||
|
||||
Reference in New Issue
Block a user