|
@@ -14,10 +14,10 @@
|
|
|
<el-main style="padding: 0;" :class="{ 'configure_Main1': tabIndex === '0', 'configure_Main': tabIndex !== '0' }">
|
|
|
<div v-if="tabIndex === '0'" class="member_demo">
|
|
|
<div class="member_left">
|
|
|
- <member-configuration @details="detailslist" />
|
|
|
+ <member-configuration ref="memberAll" @details="detailslist" />
|
|
|
</div>
|
|
|
<div style="width: -webkit-fill-available; overflow: hidden;">
|
|
|
- <Member-details :data="childName" />
|
|
|
+ <Member-details :data="childName" @update="navUpdate" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<Business v-if="tabIndex === '1'" class="member_padding" />
|
|
@@ -59,6 +59,9 @@ export default {
|
|
|
},
|
|
|
detailslist(val) {
|
|
|
this.childName = val
|
|
|
+ },
|
|
|
+ navUpdate() {
|
|
|
+ this.$refs.memberAll.teamQueryTeamListByName()
|
|
|
}
|
|
|
}
|
|
|
}
|