BUG 29566

This commit is contained in:
aixianling
2022-05-10 09:32:29 +08:00
parent 4a534bd486
commit c9767ab1ba

View File

@@ -52,9 +52,6 @@ export default {
isMyGirds() { isMyGirds() {
return !!this.$route.query.self return !!this.$route.query.self
}, },
userGird() {
return this.user?.gridInfo || {}
},
isGridMember() { isGridMember() {
return this.user.girdCheckType > 0 return this.user.girdCheckType > 0
} }
@@ -68,7 +65,7 @@ export default {
methods: { methods: {
getAllGrids() { getAllGrids() {
this.slectList = [] this.slectList = []
let {girdMemberId} = this.userGird, let {girdMemberId} = this.user,
url = `/app/appgirdinfo/queryAppGirdInfoByGirdLevel`, url = `/app/appgirdinfo/queryAppGirdInfoByGirdLevel`,
params = {girdMemberId} params = {girdMemberId}
if (this.isMyGirds) { if (this.isMyGirds) {