26823
This commit is contained in:
21
packages/2.0.5/AppGridMember/components/add.vue
vendored
21
packages/2.0.5/AppGridMember/components/add.vue
vendored
@@ -455,7 +455,10 @@ export default {
|
||||
})
|
||||
.then((res) => {
|
||||
if (res.code == 0) {
|
||||
this.forms = { ...res.data };
|
||||
this.forms = {
|
||||
...res.data,
|
||||
girdInfoList: []
|
||||
};
|
||||
this.user = [{
|
||||
name: res.data.name,
|
||||
phone: res.data.phone,
|
||||
@@ -463,10 +466,11 @@ export default {
|
||||
}]
|
||||
this.girdInfoStr = ''
|
||||
this.photoList = [{ url: this.forms.photo }];
|
||||
|
||||
res.data.girdInfoList.forEach((e, index) => {
|
||||
this.girdInfoStr = this.girdInfoStr + `${e.checkType === '1' ? '网格员' : '网格长'}-${e.girdName} `
|
||||
})
|
||||
if (res.data.girdInfoList) {
|
||||
res.data.girdInfoList.forEach((e, index) => {
|
||||
this.girdInfoStr = this.girdInfoStr + `${e.checkType === '1' ? '网格员' : '网格长'}-${e.girdName} `
|
||||
})
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
@@ -478,13 +482,6 @@ export default {
|
||||
.add {
|
||||
height: 100%;
|
||||
|
||||
::v-deep .AiWechatSelecter-container {
|
||||
background: red;
|
||||
.el-icon-circle-close {
|
||||
display: none!important;
|
||||
}
|
||||
}
|
||||
|
||||
.form-flex {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
Reference in New Issue
Block a user