Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
d1bb49c208 | |||
92f5f26ad5 |
@@ -135,6 +135,14 @@ class PureHttp {
|
||||
$error.isCancelRequest = Axios.isCancel($error);
|
||||
// 关闭进度条动画
|
||||
NProgress.done();
|
||||
if ($error.response.status === 401) {
|
||||
router.replace({
|
||||
path: "/login",
|
||||
query: {
|
||||
redirect: router.currentRoute.value.fullPath
|
||||
}
|
||||
});
|
||||
}
|
||||
// 所有的响应异常 区分来源为取消请求/非取消请求
|
||||
return Promise.reject($error);
|
||||
}
|
||||
|
@@ -309,10 +309,10 @@ getClientsApi(clientSearchForm.value);
|
||||
</div>
|
||||
<div class="content">
|
||||
<el-card body-style="padding: inherit" shadow="hover">
|
||||
<div class="flex flex-wrap gap-4">
|
||||
<div class="flex flex-wrap gap-4" style="display: flex;justify-content: center;">
|
||||
<el-card
|
||||
v-for="val in clientsList.data"
|
||||
style="width: 540px"
|
||||
style="float: left; width: 500px"
|
||||
shadow="hover"
|
||||
>
|
||||
<template #header>
|
||||
|
Reference in New Issue
Block a user