// 工具类 // 返回请求结果 export const returnMsg = async promise => { try { const res = await promise if (res.status === 200) { return res.data } else { return 'no 200 !' } } catch (e) { console.log(e.name + '====' + e.message) if (e.message.indexOf('404') !== -1) { return '404' } return 'error' } }