This commit is contained in:
zhuchunyun 2024-08-28 16:07:35 +08:00
commit dfde436c03

View File

@ -169,7 +169,7 @@
url: '/getJxInfo',
method: 'get'
}).then((res) => {
if (res.code == 200) {
if (res.code == 0) {
this.schoolInfo = res.schoolInfo
uni.setStorageSync("roles", res.roles)
uni.setStorageSync("deptId", res.schoolInfo.deptId)
@ -181,7 +181,7 @@
url: '/drivingSchool/system/reservationCourse/applet/getHomeData',
method: 'get'
}).then((res) => {
if (res.code == 200) {
if (res.code == 0) {
this.dataInfo = res.data
}
})