Commit 60326692 authored by chenqikuai's avatar chenqikuai

fix: 隐藏获取最新版本错误提示

parent b9bd0531
...@@ -20,8 +20,9 @@ baseAxios.interceptors.response.use( ...@@ -20,8 +20,9 @@ baseAxios.interceptors.response.use(
} else if (ret.code === 1000) { } else if (ret.code === 1000) {
Toast('您好,非常抱歉,该网点暂无营业人员。') Toast('您好,非常抱歉,该网点暂无营业人员。')
} else if ( } else if (
baseRet.config.url?.match(/\/address\/getOutlet$/) && (baseRet.config.url?.match(/\/address\/getOutlet$/) &&
ret.code === 513 ret.code === 513) ||
ret.code === 9005
) { ) {
} else if (ret.code !== 200) { } else if (ret.code !== 200) {
// console.log(baseRet, 'show baseret'); // console.log(baseRet, 'show baseret');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment