|
@@ -135,8 +135,8 @@ export default {
|
|
|
methods: {
|
|
|
getUserCompany,
|
|
|
genCompanyLabel(company) {
|
|
|
- const { name, code, type } = company
|
|
|
- return `${code}/${name}${type === '1' ? '(已升级为业务公司)' : ''}`
|
|
|
+ const { name, code } = company
|
|
|
+ return `${code}/${name}`
|
|
|
},
|
|
|
async initalData() {
|
|
|
// 区分是否超管用户请求不同接口
|
|
@@ -157,8 +157,8 @@ export default {
|
|
|
this.state.loading = false
|
|
|
this.params.page++
|
|
|
const _list = this.isSupertube ? data.list : convertCompanylist(data.list)
|
|
|
- const __list = this.isSupertube && this.currentLevel === '1' ? _list.map(item => ({ ...item, code: item.relation_code })) : _list
|
|
|
- this.$store.commit('user/setCompanylist', [...this.companylist, ...__list])
|
|
|
+ // const __list = this.isSupertube && this.currentLevel === '1' ? _list.map(item => ({ ...item, code: item.relation_code })) : _list
|
|
|
+ this.$store.commit('user/setCompanylist', [...this.companylist, ..._list])
|
|
|
return this.isSupertube ? data.list : convertCompanylist(data.list)
|
|
|
},
|
|
|
|
|
@@ -245,9 +245,9 @@ export default {
|
|
|
if (height + scrollTop >= scrollHeight && isAllowLoad) {
|
|
|
const list = await this.loadMore()
|
|
|
const _list = this.isSupertube ? list : convertCompanylist(list)
|
|
|
- const __list = this.isSupertube && this.currentLevel === '1' ? _list.map(item => ({ ...item, code: item.relation_code })) : _list
|
|
|
+ // const __list = this.isSupertube && this.currentLevel === '1' ? _list.map(item => ({ ...item, code: item.relation_code })) : _list
|
|
|
// 保存到全局
|
|
|
- this.$store.commit(userStoreActions.setCompanyList, [...this.companylist, ...__list])
|
|
|
+ this.$store.commit(userStoreActions.setCompanyList, [...this.companylist, ..._list])
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -291,8 +291,8 @@ export default {
|
|
|
this.state.loading = false
|
|
|
// 获取列表数据
|
|
|
const result = await this.initalData()
|
|
|
- const list = this.isSupertube && this.currentLevel === '1' ? result.map(item => ({ ...item, code: item.relation_code })) : result
|
|
|
- if (result) this.$store.commit(userStoreActions.setCompanyList, list)
|
|
|
+ // const list = this.isSupertube && this.currentLevel === '1' ? result.map(item => ({ ...item, code: item.relation_code })) : result
|
|
|
+ if (result) this.$store.commit(userStoreActions.setCompanyList, result)
|
|
|
},
|
|
|
selectAllCompany() {
|
|
|
this.value = ''
|