2023-04-02 01:01:56 +08:00
|
|
|
|
import router from '@/router';
|
2024-08-02 13:53:48 +08:00
|
|
|
|
import {RouteLocationMatched, RouteLocationNormalized, RouteLocationRaw} from 'vue-router';
|
2023-12-27 12:12:51 +08:00
|
|
|
|
import useTagsViewStore from '@/store/modules/tagsView';
|
2023-04-02 01:01:56 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
2023-06-20 18:57:27 +08:00
|
|
|
|
/**
|
|
|
|
|
* 刷新当前tab页签
|
|
|
|
|
* @param obj 标签对象
|
|
|
|
|
*/
|
2023-12-27 12:12:51 +08:00
|
|
|
|
async refreshPage(obj?: RouteLocationNormalized): Promise<void> {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
const { path, query, matched } = router.currentRoute.value;
|
|
|
|
|
if (obj === undefined) {
|
2023-12-13 01:01:52 +00:00
|
|
|
|
matched.forEach((m: RouteLocationMatched) => {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
if (m.components && m.components.default && m.components.default.name) {
|
|
|
|
|
if (!['Layout', 'ParentView'].includes(m.components.default.name)) {
|
2023-12-27 12:12:51 +08:00
|
|
|
|
obj = {
|
|
|
|
|
name: m.components.default.name,
|
|
|
|
|
path: path,
|
|
|
|
|
query: query,
|
|
|
|
|
matched: undefined,
|
|
|
|
|
fullPath: undefined,
|
|
|
|
|
hash: undefined,
|
|
|
|
|
params: undefined,
|
|
|
|
|
redirectedFrom: undefined,
|
|
|
|
|
meta: undefined
|
|
|
|
|
};
|
2023-04-03 00:05:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2023-06-20 18:57:27 +08:00
|
|
|
|
let query1: undefined | {} = {};
|
|
|
|
|
let path1: undefined | string = '';
|
|
|
|
|
if (obj) {
|
|
|
|
|
query1 = obj.query;
|
|
|
|
|
path1 = obj.path;
|
|
|
|
|
}
|
|
|
|
|
await useTagsViewStore().delCachedView(obj);
|
2023-06-18 23:47:10 +08:00
|
|
|
|
await router.replace({
|
2023-06-20 18:57:27 +08:00
|
|
|
|
path: '/redirect' + path1,
|
|
|
|
|
query: query1
|
2023-04-03 00:05:09 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 关闭当前tab页签,打开新页签
|
2024-08-02 13:53:48 +08:00
|
|
|
|
closeOpenPage(obj: RouteLocationRaw): void {
|
2023-12-27 12:12:51 +08:00
|
|
|
|
useTagsViewStore().delView(router.currentRoute.value);
|
2023-04-03 00:05:09 +08:00
|
|
|
|
if (obj !== undefined) {
|
|
|
|
|
router.push(obj);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 关闭指定tab页签
|
2023-12-27 12:12:51 +08:00
|
|
|
|
async closePage(obj?: RouteLocationNormalized): Promise<{ visitedViews: RouteLocationNormalized[]; cachedViews: string[] } | any> {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
if (obj === undefined) {
|
|
|
|
|
// prettier-ignore
|
2023-12-27 12:12:51 +08:00
|
|
|
|
const { visitedViews } = await useTagsViewStore().delView(router.currentRoute.value)
|
2023-06-18 23:47:10 +08:00
|
|
|
|
const latestView = visitedViews.slice(-1)[0];
|
2023-04-06 11:14:23 +08:00
|
|
|
|
if (latestView) {
|
2023-12-27 12:12:51 +08:00
|
|
|
|
return router.push(latestView.fullPath);
|
2023-04-06 11:14:23 +08:00
|
|
|
|
}
|
|
|
|
|
return router.push('/');
|
2023-04-03 00:05:09 +08:00
|
|
|
|
}
|
|
|
|
|
return useTagsViewStore().delView(obj);
|
|
|
|
|
},
|
|
|
|
|
// 关闭所有tab页签
|
|
|
|
|
closeAllPage() {
|
|
|
|
|
return useTagsViewStore().delAllViews();
|
|
|
|
|
},
|
|
|
|
|
// 关闭左侧tab页签
|
2023-12-27 12:12:51 +08:00
|
|
|
|
closeLeftPage(obj?: RouteLocationNormalized) {
|
|
|
|
|
return useTagsViewStore().delLeftTags(obj || router.currentRoute.value);
|
2023-04-03 00:05:09 +08:00
|
|
|
|
},
|
|
|
|
|
// 关闭右侧tab页签
|
2023-12-27 12:12:51 +08:00
|
|
|
|
closeRightPage(obj?: RouteLocationNormalized) {
|
|
|
|
|
return useTagsViewStore().delRightTags(obj || router.currentRoute.value);
|
2023-04-03 00:05:09 +08:00
|
|
|
|
},
|
|
|
|
|
// 关闭其他tab页签
|
2023-12-27 12:12:51 +08:00
|
|
|
|
closeOtherPage(obj?: RouteLocationNormalized) {
|
|
|
|
|
return useTagsViewStore().delOthersViews(obj || router.currentRoute.value);
|
2023-04-03 00:05:09 +08:00
|
|
|
|
},
|
2023-06-18 23:47:10 +08:00
|
|
|
|
/**
|
|
|
|
|
* 打开tab页签
|
|
|
|
|
* @param url 路由地址
|
|
|
|
|
* @param title 标题
|
|
|
|
|
* @param query 参数
|
|
|
|
|
*/
|
|
|
|
|
openPage(url: string, title?: string, query?: any) {
|
|
|
|
|
const obj = { path: url, query: { ...query, title } };
|
|
|
|
|
return router.push(obj);
|
2023-04-03 00:05:09 +08:00
|
|
|
|
},
|
2023-06-20 18:57:27 +08:00
|
|
|
|
/**
|
|
|
|
|
* 修改tab页签
|
|
|
|
|
* @param obj 标签对象
|
|
|
|
|
*/
|
2023-12-27 12:12:51 +08:00
|
|
|
|
updatePage(obj: RouteLocationNormalized) {
|
2023-04-03 00:05:09 +08:00
|
|
|
|
return useTagsViewStore().updateVisitedView(obj);
|
|
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
|
};
|