添加学生信息

This commit is contained in:
2025-09-29 15:06:10 +08:00
parent 5c55a807c9
commit b95239812d

View File

@@ -363,9 +363,10 @@
this.getDicts(); this.getDicts();
}, },
methods: { methods: {
async getDicts() { getDicts() {
let res = await getDicts("more_dept_name"); let res = getDicts("more_dept_name");
if (res.code == 200) { if (res.code == 200) {
console.log('res:',res)
this.moreDeptList = [...res.data]; this.moreDeptList = [...res.data];
} }
}, },