mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
11 lines
272 B
TypeScript
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)
|
|
}
|