This commit is contained in:
PQZ 2024-08-28 16:05:04 +08:00
parent 44639d7a2a
commit 2a407bd702

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
}
})