|
@@ -30,9 +30,8 @@
|
|
|
|
|
|
<script>
|
|
|
import { mapState } from "vuex";
|
|
|
-
|
|
|
import { requsetSupertubeCompany, requsetBindCompany } from "@/apis/user";
|
|
|
-import { setUserCompany } from "@/utils/auth";
|
|
|
+import { setUserCompany, setToken } from "@/utils/auth";
|
|
|
|
|
|
export default {
|
|
|
/**
|
|
@@ -102,27 +101,29 @@ export default {
|
|
|
async initalData() {
|
|
|
//todo:区分是否超管用户请求不同接口
|
|
|
this.state.loading = true;
|
|
|
- const { code, data } = await requsetSupertubeCompany(this.params);
|
|
|
+ const api = this.isSupertube ? requsetSupertubeCompany : requsetBindCompany;
|
|
|
+ const { code, data } = await api(this.params);
|
|
|
if (data.list.length < 10) this.state.noMore = true;
|
|
|
this.state.loading = false;
|
|
|
this.params.page++;
|
|
|
- //todo:超管默认查所有所有公司(空) 业务账号取列表第一个作为默认公司
|
|
|
- this.setCurrentCompany("");
|
|
|
+ //超管默认查所有所有公司(空) 业务账号取列表第一个作为默认公司
|
|
|
+ const defaultCompany = this.isSupertube ? '' : data.list[0].code
|
|
|
+ this.setCurrentCompany(defaultCompany);
|
|
|
if (Number(code) === 0) this.companylist = data.list;
|
|
|
},
|
|
|
|
|
|
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.initialization && !this.isSupertube) {
|
|
|
+ if (this.initialization || this.isSupertube) {
|
|
|
return (this.initialization = false); //超管用户&初始化不刷新路由
|
|
|
}
|
|
|
|
|
@@ -133,18 +134,26 @@ export default {
|
|
|
query.redirect = path;
|
|
|
const keys = Object.keys(query).filter(key => key);
|
|
|
|
|
|
- //1.保存query透传参数
|
|
|
+ //1.保存透传参数
|
|
|
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);
|
|
|
+ const result = await this.$store.dispatch("user/getMenuList");
|
|
|
+ switch (result) {
|
|
|
+ case "noToken":
|
|
|
+ await this.$store.dispatch("user/logout");
|
|
|
+ this.$router.push(`/login`);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ setToken(data.token);
|
|
|
+ queryString = keys.reduce(chunk, "?");
|
|
|
+ this.$router.replace("/reload" + queryString);
|
|
|
+ break;
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
getScrollWrapper() {
|
|
@@ -176,18 +185,19 @@ export default {
|
|
|
},
|
|
|
|
|
|
async loadMore() {
|
|
|
+ //区分超管用户和普通用户
|
|
|
+ const api = this.isSupertube ? requsetSupertubeCompany : requsetBindCompany;
|
|
|
this.state.loading = true;
|
|
|
- //todo:区分是否超管用户请求不同接口
|
|
|
- const { data } = await requsetSupertubeCompany(this.params);
|
|
|
+ const { data } = await api(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;
|
|
|
return [];
|
|
|
}
|
|
|
+
|
|
|
this.params.page++;
|
|
|
return data.list;
|
|
|
},
|