NGToolsAdmin/js_sdk/uni-admin/interceptor.js

16 lines
380 B
JavaScript
Raw Permalink Normal View History

2024-09-13 08:39:31 +00:00
import config from '@/admin.config.js'
export function initInterceptor() {
uni.addInterceptor('navigateTo', {
fail: ({
errMsg
}) => {
if (errMsg.indexOf('is not found') !== -1) { // 404
uni.navigateTo({
url: config.error.url + '?errMsg=' + errMsg
})
}
}
})
}