2024-03-16 20:33:46 +08:00

11 lines
272 B
TypeScript

import { ERROR_NO_TIP_STATUS } from './config'
export function showError(error: Service.RequestError) {
// 如果error不需要提示,则跳过
const code = Number(error.code)
if (ERROR_NO_TIP_STATUS.includes(code))
return
window.$message.error(error.msg)
}