添加教师修改接口

This commit is contained in:
zhangsir
2024-11-27 18:11:49 +08:00
parent 602a49e292
commit 21afc82036
2 changed files with 9 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import ajax from '@/utils/xajax.js'
import ajax2 from '../unionAjax.js';
/**
* 按名称查询
@@ -9,7 +9,9 @@ const findByName = function(name) {
return ajax.get('/xboe/teacher/name?name=' + name);
}
const findByNameNew = function(name) {
return ajax2.get('/manageApi/admin/teacher/selectTeacher?name=' + name);
}
const updateTeacher=function(data){
return ajax.postJson('/xboe/teacher/update-teacher',data);
}
@@ -217,7 +219,7 @@ export default {
update,
del,
detail,
findByName,
findByNameNew,
updateSysId,
has,
start,

View File

@@ -88,15 +88,15 @@
if (this.teacherValues !== '') {
this.loading = true;
try {
const { result, message, status } = await apiTeacher.findByName(this.teacherValues);
const { data, message, code } = await apiTeacher.findByNameNew(this.teacherValues);
this.loading = false;
if (status === 200) {
if (code === 200) {
let list = [];
result.forEach(item => {
data.forEach(item => {
list.push({
teacherId: item.id,
teacherName: item.name,
teacherCode: item.code
teacherCode: item.mobile
});
});
this.teacherDownList = list;