|
@@ -14,7 +14,7 @@
|
|
|
<div v-for="item in val" :key="item.member" class="loop">
|
|
|
<span style="display: flex">
|
|
|
<el-avatar style="background: #FFF;" class="phoneUrl" :src="item.memberInfoResponse.phoneUrl !== '' ? item.memberInfoResponse.phoneUrl : image_role " />
|
|
|
- <div style="display: flex; flex-direction: column">
|
|
|
+ <div style="display: flex; flex-direction: column; margin-left: 10px;">
|
|
|
<span class="titName">{{ item.memberInfoResponse.name }}<span v-if="item.isLeader === 1 ? true : false" class="responsibility">负责人</span></span>
|
|
|
<span class="userName">{{ item.member }}</span>
|
|
|
</div>
|
|
@@ -182,8 +182,8 @@ export default {
|
|
|
gridData2: [], // 临时储存成员
|
|
|
dialogVisible: false, // 删除确认dialog
|
|
|
dialogTableVisible: false, // 添加成员dialog
|
|
|
- teamOptions: [],
|
|
|
- options1: [],
|
|
|
+ teamOptions: [], // 搜索团队数据
|
|
|
+ options1: [], // 搜索成员数据
|
|
|
test: [],
|
|
|
Gradient: true,
|
|
|
role: true,
|
|
@@ -333,7 +333,6 @@ export default {
|
|
|
},
|
|
|
|
|
|
deletePersonnel(e, index) { // 删除diolag
|
|
|
- console.log(e, 'cdscsc')
|
|
|
switch (index) {
|
|
|
case 1:
|
|
|
this.gridData2 = this.gridData2.filter(item => {
|
|
@@ -653,6 +652,7 @@ export default {
|
|
|
color:rgba(64,158,255,1);
|
|
|
opacity:1;
|
|
|
margin-left: 10px;
|
|
|
+ padding: 0 5px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|