interceptor.js 380 B

123456789101112131415
  1. import config from '@/admin.config.js'
  2. export function initInterceptor() {
  3. uni.addInterceptor('navigateTo', {
  4. fail: ({
  5. errMsg
  6. }) => {
  7. if (errMsg.indexOf('is not found') !== -1) { // 404
  8. uni.navigateTo({
  9. url: config.error.url + '?errMsg=' + errMsg
  10. })
  11. }
  12. }
  13. })
  14. }