-
Notifications
You must be signed in to change notification settings - Fork 0
开发特定点
PyGo² edited this page May 8, 2022
·
1 revision
-
1.首页登录校验
文件位置:src/views/login->index.vue
说明:账户登录有validate校验,校验的方式是用到src/utils->validate.js中的校验方法。 -
2.store中的role类型
文件位置:src->store->modules->user.js
说明:api返回的role为code字符串,getInfo中转化为数组 -
3.Mock数据那块上线记得禁止掉
文件位置:src->main.js
说明:禁止掉Mock数据请求mockXHR() vue.config.js->devServer->39行注释掉 before: require('./mock/mock-server.js')
-
4.登录首页成功后的跳转修改
文件位置:src->views->login->index.vue 说明:在文件的(162-163)处位置,登录成功后指定跳转到首页,否则会有redirect进行跳转 -
5.api请求100为正常,非100下会显示报错信息
文件位置:src->utils->request.js(68行) 说明:项目中使用axios方法去请求后台API,在request.js中进行请求前、请求后的hook,想修改其他内容,可以在此进行修改