|
@@ -32,40 +32,33 @@
|
|
|
import { mapState } from "vuex";
|
|
|
|
|
|
import { requsetSupertubeCompany, requsetBindCompany } from "@/apis/user";
|
|
|
+import { setUserCompany } from "@/utils/auth";
|
|
|
|
|
|
export default {
|
|
|
+ /**
|
|
|
+ * @param selectAll 超管账号是否可以选择所有公司
|
|
|
+ * @param size 选择器尺寸
|
|
|
+ * @param placeholder
|
|
|
+ * @param disabled 是否禁用
|
|
|
+ * @param global 是否设置全局选中公司(全局使用/组件独立使用)
|
|
|
+ */
|
|
|
props: {
|
|
|
- /**
|
|
|
- *@description 超管账号是否可以选择所有公司
|
|
|
- */
|
|
|
selectAll: {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
},
|
|
|
- /**
|
|
|
- * @description 选择器尺寸
|
|
|
- */
|
|
|
size: {
|
|
|
type: String,
|
|
|
default: "small"
|
|
|
},
|
|
|
- /**
|
|
|
- * @description 选择器placeholder
|
|
|
- */
|
|
|
placeholder: {
|
|
|
type: String,
|
|
|
default: ""
|
|
|
},
|
|
|
- /**
|
|
|
- * @description 是否禁用选择器
|
|
|
- */
|
|
|
disabled: {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
},
|
|
|
- /***
|
|
|
- * @description 是否设置全局选中公司
|
|
|
- */
|
|
|
global: {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
@@ -84,6 +77,7 @@ export default {
|
|
|
return {
|
|
|
companylist: [],
|
|
|
ScrollWrapper: null,
|
|
|
+ inital:true,
|
|
|
state: {
|
|
|
loading: false,
|
|
|
noMore: false
|
|
@@ -122,6 +116,22 @@ export default {
|
|
|
//作为通用组件使用不设置全局选中公司
|
|
|
if (!this.global) return null;
|
|
|
this.$store.commit("user/setCurrentCompany", currentCompany);
|
|
|
+ setUserCompany(currentCompany);
|
|
|
+
|
|
|
+ //非超管用户刷新路由
|
|
|
+ if(this.inital) return this.inital = false;
|
|
|
+ this.changeRouterWithCompany();
|
|
|
+ },
|
|
|
+ changeRouterWithCompany() {
|
|
|
+ const { path, query: sourceQuery } = this.$route;
|
|
|
+ const isDetail = path.indexOf("Detail") >= 0;
|
|
|
+
|
|
|
+ // const query = {
|
|
|
+ // ...sourceQuery,
|
|
|
+ // reload: this.currentCompany
|
|
|
+ // };
|
|
|
+
|
|
|
+ this.$router.replace(path + "?company=" + this.currentCompany);
|
|
|
},
|
|
|
|
|
|
getScrollWrapper() {
|