Compare commits

...

3 Commits

Author SHA1 Message Date
wangxiaoshuang 767be63feb Merge branch 'main' into rj 2026-07-14 17:54:32 +08:00
wangxiaoshuang dce7fd9737 Merge branch 'uat'
continuous-integration/drone/push Build is passing Details
2026-07-14 17:54:02 +08:00
wangxiaoshuang 6187c585ad 接口频繁请求不提示
continuous-integration/drone/push Build is passing Details
2026-07-14 17:53:39 +08:00
1 changed files with 3 additions and 0 deletions

View File

@ -118,6 +118,9 @@ service.interceptors.response.use(
if (res.IsSuccess) {
return Promise.resolve(res)
} else if (res.IsSuccess === false) {
if (res.Code === -4) {
return Promise.resolve(res)
}
if (res.Code !== 5) {
MessageBox.confirm(res.ErrorMessage, {
type: 'warning',