|
@@ -70,14 +70,15 @@ export default {
|
|
|
},
|
|
|
computed: {
|
|
|
...mapState({
|
|
|
- currentCompany: state => state.user.currentCompany
|
|
|
+ currentCompany: state => state.user.currentCompany,
|
|
|
+ isSupertube: state => state.user.isSupertube
|
|
|
})
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
companylist: [],
|
|
|
ScrollWrapper: null,
|
|
|
- inital: true,
|
|
|
+ initialization: true,
|
|
|
state: {
|
|
|
loading: false,
|
|
|
noMore: false
|
|
@@ -113,20 +114,37 @@ export default {
|
|
|
setCurrentCompany(currentCompany) {
|
|
|
this.$emit("update:value", currentCompany);
|
|
|
this.$emit("change", currentCompany);
|
|
|
- //作为通用组件使用不设置全局选中公司
|
|
|
- if (!this.global) return null;
|
|
|
+
|
|
|
+ if (!this.global){
|
|
|
+ return null; //作为通用组件使用不设置全局选中公司
|
|
|
+ }
|
|
|
+
|
|
|
this.$store.commit("user/setCurrentCompany", currentCompany);
|
|
|
setUserCompany(currentCompany);
|
|
|
- //非超管用户刷新路由
|
|
|
- if (this.inital) return this.inital = false;
|
|
|
- // this.changeRouterWithCompany();
|
|
|
+
|
|
|
+ if (this.initialization && !this.isSupertube) {
|
|
|
+ return (this.initialization = false); //超管用户&初始化不刷新路由
|
|
|
+ }
|
|
|
+
|
|
|
+ this.changeRouterWithCompany();
|
|
|
},
|
|
|
- changeRouterWithCompany() {
|
|
|
- const { path, query: sourceQuery } = this.$route;
|
|
|
- this.$router.replace("/reload?redirect=" + path, {
|
|
|
- redirect: path,
|
|
|
- sourceQuery:JSON.stringify(sourceQuery)
|
|
|
- });
|
|
|
+ async changeRouterWithCompany() {
|
|
|
+ const { path, query } = this.$route;
|
|
|
+ query.redirect = path;
|
|
|
+ const keys = Object.keys(query).filter(key => key);
|
|
|
+
|
|
|
+ //1.保存query透传参数
|
|
|
+ let queryString = "";
|
|
|
+ const chunk = (qs, key, index) => {
|
|
|
+ const next = `${key}=${query[key]}${index === keys.length ? "" : "&"}`;
|
|
|
+ return qs + next;
|
|
|
+ };
|
|
|
+ //2.重新获取用户信息和菜单
|
|
|
+ const result = await this.$store.dispatch('user/getMenuList')
|
|
|
+ console.log(result);
|
|
|
+
|
|
|
+ queryString = keys.reduce(chunk, "?");
|
|
|
+ this.$router.replace("/reload" + queryString);
|
|
|
},
|
|
|
|
|
|
getScrollWrapper() {
|
|
@@ -150,7 +168,7 @@ export default {
|
|
|
const { loading, noMore } = this.state;
|
|
|
|
|
|
//是否允许下拉加载
|
|
|
- const isAllowLoad = !loading && !noMore;
|
|
|
+ const isAllowLoad = !loading && !noMore;
|
|
|
if (height + scrollTop >= scrollHeight && isAllowLoad) {
|
|
|
const list = await this.loadMore();
|
|
|
this.companylist = [...this.companylist, ...list];
|
|
@@ -160,13 +178,14 @@ export default {
|
|
|
async loadMore() {
|
|
|
this.state.loading = true;
|
|
|
//todo:区分是否超管用户请求不同接口
|
|
|
- const { data } = await requsetSupertubeCompany(this.params)
|
|
|
+ const { data } = await requsetSupertubeCompany(this.params);
|
|
|
this.state.loading = false;
|
|
|
//是否越界
|
|
|
- const isTransboundary = this.companylist.length >= Number(data.count)
|
|
|
+ const isTransboundary = this.companylist.length >= Number(data.count);
|
|
|
+
|
|
|
if (isTransboundary || data.list.length < 10) {
|
|
|
- this.state.noMore = true
|
|
|
- this.sate.lading = false
|
|
|
+ this.state.noMore = true;
|
|
|
+ this.sate.lading = false;
|
|
|
return [];
|
|
|
}
|
|
|
this.params.page++;
|