|
@@ -1,207 +1,225 @@
|
|
|
const state = {
|
|
const state = {
|
|
|
visitedViews: [],
|
|
visitedViews: [],
|
|
|
- cachedViews: []
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ cachedViews: [],
|
|
|
|
|
+};
|
|
|
|
|
|
|
|
const mutations = {
|
|
const mutations = {
|
|
|
ADD_VISITED_VIEW: (state, view) => {
|
|
ADD_VISITED_VIEW: (state, view) => {
|
|
|
- if (state.visitedViews.some(v => v.path === view.path)) return
|
|
|
|
|
|
|
+ // 使用fullPath作为判断依据,支持相同路径不同参数的路由打开多个标签页
|
|
|
|
|
+ if (state.visitedViews.some((v) => v.fullPath === view.fullPath)) return;
|
|
|
|
|
+ let title = view.meta.title || "no-name";
|
|
|
|
|
+
|
|
|
|
|
+ // 为 /querymanage/queryFormNew 路由设置动态标题
|
|
|
|
|
+ if (view.path === "/querymanage/queryFormNew") {
|
|
|
|
|
+ title = view.query.name || view.meta.title || "查询表单";
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
state.visitedViews.push(
|
|
state.visitedViews.push(
|
|
|
Object.assign({}, view, {
|
|
Object.assign({}, view, {
|
|
|
- title: view.meta.title || 'no-name'
|
|
|
|
|
|
|
+ title: title,
|
|
|
})
|
|
})
|
|
|
- )
|
|
|
|
|
|
|
+ );
|
|
|
},
|
|
},
|
|
|
ADD_CACHED_VIEW: (state, view) => {
|
|
ADD_CACHED_VIEW: (state, view) => {
|
|
|
- if (state.cachedViews.includes(view.name)) return
|
|
|
|
|
|
|
+ if (state.cachedViews.includes(view.name)) return;
|
|
|
if (view.meta && !view.meta.noCache) {
|
|
if (view.meta && !view.meta.noCache) {
|
|
|
- state.cachedViews.push(view.name)
|
|
|
|
|
|
|
+ state.cachedViews.push(view.name);
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
DEL_VISITED_VIEW: (state, view) => {
|
|
DEL_VISITED_VIEW: (state, view) => {
|
|
|
for (const [i, v] of state.visitedViews.entries()) {
|
|
for (const [i, v] of state.visitedViews.entries()) {
|
|
|
- if (v.path === view.path) {
|
|
|
|
|
- state.visitedViews.splice(i, 1)
|
|
|
|
|
- break
|
|
|
|
|
|
|
+ // 使用fullPath匹配要删除的标签页
|
|
|
|
|
+ if (v.fullPath === view.fullPath) {
|
|
|
|
|
+ state.visitedViews.splice(i, 1);
|
|
|
|
|
+ break;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
DEL_CACHED_VIEW: (state, view) => {
|
|
DEL_CACHED_VIEW: (state, view) => {
|
|
|
- const index = state.cachedViews.indexOf(view.name)
|
|
|
|
|
- index > -1 && state.cachedViews.splice(index, 1)
|
|
|
|
|
|
|
+ const index = state.cachedViews.indexOf(view.name);
|
|
|
|
|
+ index > -1 && state.cachedViews.splice(index, 1);
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
DEL_OTHERS_VISITED_VIEWS: (state, view) => {
|
|
DEL_OTHERS_VISITED_VIEWS: (state, view) => {
|
|
|
- state.visitedViews = state.visitedViews.filter(v => {
|
|
|
|
|
- return v.meta.affix || v.path === view.path
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ state.visitedViews = state.visitedViews.filter((v) => {
|
|
|
|
|
+ return v.meta.affix || v.fullPath === view.fullPath;
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
DEL_OTHERS_CACHED_VIEWS: (state, view) => {
|
|
DEL_OTHERS_CACHED_VIEWS: (state, view) => {
|
|
|
- const index = state.cachedViews.indexOf(view.name)
|
|
|
|
|
|
|
+ const index = state.cachedViews.indexOf(view.name);
|
|
|
if (index > -1) {
|
|
if (index > -1) {
|
|
|
- state.cachedViews = state.cachedViews.slice(index, index + 1)
|
|
|
|
|
|
|
+ state.cachedViews = state.cachedViews.slice(index, index + 1);
|
|
|
} else {
|
|
} else {
|
|
|
- state.cachedViews = []
|
|
|
|
|
|
|
+ state.cachedViews = [];
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
- DEL_ALL_VISITED_VIEWS: state => {
|
|
|
|
|
|
|
+ DEL_ALL_VISITED_VIEWS: (state) => {
|
|
|
// keep affix tags
|
|
// keep affix tags
|
|
|
- const affixTags = state.visitedViews.filter(tag => tag.meta.affix)
|
|
|
|
|
- state.visitedViews = affixTags
|
|
|
|
|
|
|
+ const affixTags = state.visitedViews.filter((tag) => tag.meta.affix);
|
|
|
|
|
+ state.visitedViews = affixTags;
|
|
|
},
|
|
},
|
|
|
- DEL_ALL_CACHED_VIEWS: state => {
|
|
|
|
|
- state.cachedViews = []
|
|
|
|
|
|
|
+ DEL_ALL_CACHED_VIEWS: (state) => {
|
|
|
|
|
+ state.cachedViews = [];
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
UPDATE_VISITED_VIEW: (state, view) => {
|
|
UPDATE_VISITED_VIEW: (state, view) => {
|
|
|
for (let v of state.visitedViews) {
|
|
for (let v of state.visitedViews) {
|
|
|
- if (v.path === view.path) {
|
|
|
|
|
- v = Object.assign(v, view)
|
|
|
|
|
- break
|
|
|
|
|
|
|
+ if (v.fullPath === view.fullPath) {
|
|
|
|
|
+ // 为 /querymanage/queryFormNew 路由更新动态标题
|
|
|
|
|
+ if (view.path === "/querymanage/queryFormNew") {
|
|
|
|
|
+ v.title = view.query.name || view.meta.title || "查询表单";
|
|
|
|
|
+ }
|
|
|
|
|
+ // 更新view的所有属性,包括fullPath和query参数
|
|
|
|
|
+ Object.assign(v, view);
|
|
|
|
|
+ break;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
DEL_RIGHT_VIEWS: (state, view) => {
|
|
DEL_RIGHT_VIEWS: (state, view) => {
|
|
|
- const index = state.visitedViews.findIndex(v => v.path === view.path)
|
|
|
|
|
|
|
+ const index = state.visitedViews.findIndex(
|
|
|
|
|
+ (v) => v.fullPath === view.fullPath
|
|
|
|
|
+ );
|
|
|
if (index === -1) {
|
|
if (index === -1) {
|
|
|
- return
|
|
|
|
|
|
|
+ return;
|
|
|
}
|
|
}
|
|
|
state.visitedViews = state.visitedViews.filter((item, idx) => {
|
|
state.visitedViews = state.visitedViews.filter((item, idx) => {
|
|
|
if (idx <= index || (item.meta && item.meta.affix)) {
|
|
if (idx <= index || (item.meta && item.meta.affix)) {
|
|
|
- return true
|
|
|
|
|
|
|
+ return true;
|
|
|
}
|
|
}
|
|
|
- const i = state.cachedViews.indexOf(item.name)
|
|
|
|
|
|
|
+ const i = state.cachedViews.indexOf(item.name);
|
|
|
if (i > -1) {
|
|
if (i > -1) {
|
|
|
- state.cachedViews.splice(i, 1)
|
|
|
|
|
|
|
+ state.cachedViews.splice(i, 1);
|
|
|
}
|
|
}
|
|
|
- return false
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return false;
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
DEL_LEFT_VIEWS: (state, view) => {
|
|
DEL_LEFT_VIEWS: (state, view) => {
|
|
|
- const index = state.visitedViews.findIndex(v => v.path === view.path)
|
|
|
|
|
|
|
+ const index = state.visitedViews.findIndex(
|
|
|
|
|
+ (v) => v.fullPath === view.fullPath
|
|
|
|
|
+ );
|
|
|
if (index === -1) {
|
|
if (index === -1) {
|
|
|
- return
|
|
|
|
|
|
|
+ return;
|
|
|
}
|
|
}
|
|
|
state.visitedViews = state.visitedViews.filter((item, idx) => {
|
|
state.visitedViews = state.visitedViews.filter((item, idx) => {
|
|
|
if (idx >= index || (item.meta && item.meta.affix)) {
|
|
if (idx >= index || (item.meta && item.meta.affix)) {
|
|
|
- return true
|
|
|
|
|
|
|
+ return true;
|
|
|
}
|
|
}
|
|
|
- const i = state.cachedViews.indexOf(item.name)
|
|
|
|
|
|
|
+ const i = state.cachedViews.indexOf(item.name);
|
|
|
if (i > -1) {
|
|
if (i > -1) {
|
|
|
- state.cachedViews.splice(i, 1)
|
|
|
|
|
|
|
+ state.cachedViews.splice(i, 1);
|
|
|
}
|
|
}
|
|
|
- return false
|
|
|
|
|
- })
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ return false;
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+};
|
|
|
|
|
|
|
|
const actions = {
|
|
const actions = {
|
|
|
addView({ dispatch }, view) {
|
|
addView({ dispatch }, view) {
|
|
|
- dispatch('addVisitedView', view)
|
|
|
|
|
- dispatch('addCachedView', view)
|
|
|
|
|
|
|
+ dispatch("addVisitedView", view);
|
|
|
|
|
+ dispatch("addCachedView", view);
|
|
|
},
|
|
},
|
|
|
addVisitedView({ commit }, view) {
|
|
addVisitedView({ commit }, view) {
|
|
|
- commit('ADD_VISITED_VIEW', view)
|
|
|
|
|
|
|
+ commit("ADD_VISITED_VIEW", view);
|
|
|
},
|
|
},
|
|
|
addCachedView({ commit }, view) {
|
|
addCachedView({ commit }, view) {
|
|
|
- commit('ADD_CACHED_VIEW', view)
|
|
|
|
|
|
|
+ commit("ADD_CACHED_VIEW", view);
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
delView({ dispatch, state }, view) {
|
|
delView({ dispatch, state }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- dispatch('delVisitedView', view)
|
|
|
|
|
- dispatch('delCachedView', view)
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ dispatch("delVisitedView", view);
|
|
|
|
|
+ dispatch("delCachedView", view);
|
|
|
resolve({
|
|
resolve({
|
|
|
visitedViews: [...state.visitedViews],
|
|
visitedViews: [...state.visitedViews],
|
|
|
- cachedViews: [...state.cachedViews]
|
|
|
|
|
- })
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ cachedViews: [...state.cachedViews],
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
delVisitedView({ commit, state }, view) {
|
|
delVisitedView({ commit, state }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_VISITED_VIEW', view)
|
|
|
|
|
- resolve([...state.visitedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_VISITED_VIEW", view);
|
|
|
|
|
+ resolve([...state.visitedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
delCachedView({ commit, state }, view) {
|
|
delCachedView({ commit, state }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_CACHED_VIEW', view)
|
|
|
|
|
- resolve([...state.cachedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_CACHED_VIEW", view);
|
|
|
|
|
+ resolve([...state.cachedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
delOthersViews({ dispatch, state }, view) {
|
|
delOthersViews({ dispatch, state }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- dispatch('delOthersVisitedViews', view)
|
|
|
|
|
- dispatch('delOthersCachedViews', view)
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ dispatch("delOthersVisitedViews", view);
|
|
|
|
|
+ dispatch("delOthersCachedViews", view);
|
|
|
resolve({
|
|
resolve({
|
|
|
visitedViews: [...state.visitedViews],
|
|
visitedViews: [...state.visitedViews],
|
|
|
- cachedViews: [...state.cachedViews]
|
|
|
|
|
- })
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ cachedViews: [...state.cachedViews],
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
delOthersVisitedViews({ commit, state }, view) {
|
|
delOthersVisitedViews({ commit, state }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_OTHERS_VISITED_VIEWS', view)
|
|
|
|
|
- resolve([...state.visitedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_OTHERS_VISITED_VIEWS", view);
|
|
|
|
|
+ resolve([...state.visitedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
delOthersCachedViews({ commit, state }, view) {
|
|
delOthersCachedViews({ commit, state }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_OTHERS_CACHED_VIEWS', view)
|
|
|
|
|
- resolve([...state.cachedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_OTHERS_CACHED_VIEWS", view);
|
|
|
|
|
+ resolve([...state.cachedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
delAllViews({ dispatch, state }, view) {
|
|
delAllViews({ dispatch, state }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- dispatch('delAllVisitedViews', view)
|
|
|
|
|
- dispatch('delAllCachedViews', view)
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ dispatch("delAllVisitedViews", view);
|
|
|
|
|
+ dispatch("delAllCachedViews", view);
|
|
|
resolve({
|
|
resolve({
|
|
|
visitedViews: [...state.visitedViews],
|
|
visitedViews: [...state.visitedViews],
|
|
|
- cachedViews: [...state.cachedViews]
|
|
|
|
|
- })
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ cachedViews: [...state.cachedViews],
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
delAllVisitedViews({ commit, state }) {
|
|
delAllVisitedViews({ commit, state }) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_ALL_VISITED_VIEWS')
|
|
|
|
|
- resolve([...state.visitedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_ALL_VISITED_VIEWS");
|
|
|
|
|
+ resolve([...state.visitedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
delAllCachedViews({ commit, state }) {
|
|
delAllCachedViews({ commit, state }) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_ALL_CACHED_VIEWS')
|
|
|
|
|
- resolve([...state.cachedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_ALL_CACHED_VIEWS");
|
|
|
|
|
+ resolve([...state.cachedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
updateVisitedView({ commit }, view) {
|
|
updateVisitedView({ commit }, view) {
|
|
|
- commit('UPDATE_VISITED_VIEW', view)
|
|
|
|
|
|
|
+ commit("UPDATE_VISITED_VIEW", view);
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
delRightTags({ commit }, view) {
|
|
delRightTags({ commit }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_RIGHT_VIEWS', view)
|
|
|
|
|
- resolve([...state.visitedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_RIGHT_VIEWS", view);
|
|
|
|
|
+ resolve([...state.visitedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
delLeftTags({ commit }, view) {
|
|
delLeftTags({ commit }, view) {
|
|
|
- return new Promise(resolve => {
|
|
|
|
|
- commit('DEL_LEFT_VIEWS', view)
|
|
|
|
|
- resolve([...state.visitedViews])
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ return new Promise((resolve) => {
|
|
|
|
|
+ commit("DEL_LEFT_VIEWS", view);
|
|
|
|
|
+ resolve([...state.visitedViews]);
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
-}
|
|
|
|
|
|
|
+};
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
namespaced: true,
|
|
namespaced: true,
|
|
|
state,
|
|
state,
|
|
|
mutations,
|
|
mutations,
|
|
|
- actions
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ actions,
|
|
|
|
|
+};
|