diff --git a/src/utils/http.js b/src/utils/http.js index e235d67..3cc63d2 100644 --- a/src/utils/http.js +++ b/src/utils/http.js @@ -170,11 +170,11 @@ export function get(url, params){ }) .catch(err => { reject(err.data) - this.$message({ - showClose: true, - message: '请求失败,请刷新页面重新进行请求', - type: 'error' - }); + // this.$message({ + // showClose: true, + // message: '请求失败,请刷新页面重新进行请求', + // type: 'error' + // }); }) }); } @@ -229,11 +229,11 @@ export function post(url, params) { }) .catch(err => { reject(err.data) - this.$message({ - showClose: true, - message: '请求失败,请刷新页面重新进行请求', - type: 'error' - }); + // this.$message({ + // showClose: true, + // message: '请求失败,请刷新页面重新进行请求', + // type: 'error' + // }); }) }); }