This commit is contained in:
guochunsi
2026-01-07 16:32:29 +08:00
parent 395da35a1a
commit bb06c81997
5 changed files with 10 additions and 10 deletions

View File

@@ -191,7 +191,7 @@ import { useMessageBox } from '/@/hooks/message'
import { useDict } from '/@/hooks/dict' import { useDict } from '/@/hooks/dict'
import { import {
fetchList, fetchList,
putObj, examObj,
delObj, delObj,
exportExcel exportExcel
} from '/@/api/professional/professionaluser/professionalqualificationrelation' } from '/@/api/professional/professionaluser/professionalqualificationrelation'
@@ -301,7 +301,7 @@ const changeState = (row: any, val: number) => {
const str = '通过' const str = '通过'
messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => { messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => {
try { try {
await putObj({ await examObj({
id: row.id, id: row.id,
state: val state: val
}) })

View File

@@ -217,7 +217,7 @@ import { useMessageBox } from '/@/hooks/message'
import { useDict } from '/@/hooks/dict' import { useDict } from '/@/hooks/dict'
import { import {
fetchList, fetchList,
putObj, examObj,
delObj, delObj,
exportExcel exportExcel
} from '/@/api/professional/professionaluser/professionalteacheracademicrelation' } from '/@/api/professional/professionaluser/professionalteacheracademicrelation'
@@ -341,7 +341,7 @@ const changeState = (row: any, val: number) => {
const str = '通过' const str = '通过'
messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => { messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => {
try { try {
await putObj({ await examObj({
id: row.id, id: row.id,
state: val state: val
}) })

View File

@@ -188,7 +188,7 @@ import { useDict } from '/@/hooks/dict'
import { getTeacherCertificateList } from '/@/api/professional/rsbase/professionalteachercertificateconf' import { getTeacherCertificateList } from '/@/api/professional/rsbase/professionalteachercertificateconf'
import { import {
fetchList, fetchList,
putObj, examObj,
delObj, delObj,
exportExcel exportExcel
} from '/@/api/professional/professionaluser/professionalteachercertificaterelation' } from '/@/api/professional/professionaluser/professionalteachercertificaterelation'
@@ -294,7 +294,7 @@ const changeState = (row: any, val: number) => {
const str = '通过' const str = '通过'
messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => { messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => {
try { try {
await putObj({ await examObj({
id: row.id, id: row.id,
state: val state: val
}) })

View File

@@ -182,7 +182,7 @@ import { useMessageBox } from '/@/hooks/message'
import { useDict } from '/@/hooks/dict' import { useDict } from '/@/hooks/dict'
import { import {
fetchList, fetchList,
putObj, examObj,
delObj delObj
} from '/@/api/professional/professionaluser/professionalteacherhonor' } from '/@/api/professional/professionaluser/professionalteacherhonor'
import { defineAsyncComponent } from 'vue' import { defineAsyncComponent } from 'vue'
@@ -277,7 +277,7 @@ const changeState = (row: any, val: number) => {
const str = '通过' const str = '通过'
messageBox.confirm(`是否确认${str}${row.teacherName || row.realName}的申请`).then(async () => { messageBox.confirm(`是否确认${str}${row.teacherName || row.realName}的申请`).then(async () => {
try { try {
await putObj({ await examObj({
id: row.id, id: row.id,
state: val state: val
}) })

View File

@@ -228,7 +228,7 @@ import { useDict } from '/@/hooks/dict'
// 接口 // 接口
import { import {
fetchList, fetchList,
putObj, examObj,
delObj, delObj,
exportRelation exportRelation
} from '/@/api/professional/professionaluser/professionaltitlerelation' } from '/@/api/professional/professionaluser/professionaltitlerelation'
@@ -335,7 +335,7 @@ const changeState = (row: any, val: number) => {
const str = '通过' const str = '通过'
messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => { messageBox.confirm(`是否确认${str}${row.realName}的申请`).then(async () => {
try { try {
await putObj({ await examObj({
id: row.id, id: row.id,
state: val state: val
}) })