添加教师修改接口

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

@@ -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;