hookehuyr

fix

......@@ -1828,4 +1828,10 @@ body {
background-color: white;
color: #009688 !important;
}
.el-button.el-button--primary {
background-color: #009688!important;
border-color: #009688!important;
color: white!important;
}
</style>
......
/*
* @Date: 2023-10-27 11:12:24
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-12-04 10:19:45
* @LastEditTime: 2023-12-04 10:24:48
* @FilePath: /vue-flow-editor/doc/axios.js
* @Description: 文件描述
*/
......@@ -79,7 +79,9 @@ axios.interceptors.response.use(
},
error => {
if (axios.isCancel(error)) { // 取消请求的情况下,终端Promise调用链
return new Promise(() => {});
return new Promise(() => {
console.error('取消请求响应', error);
});
} else {
return Promise.reject(error);
}
......