|
|
@ -58,6 +58,7 @@ |
|
|
|
pageSize: 10, |
|
|
|
pageSize: 10, |
|
|
|
keyword: '', |
|
|
|
keyword: '', |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
base: this.http.baseUrl |
|
|
|
}; |
|
|
|
}; |
|
|
|
}, |
|
|
|
}, |
|
|
|
onLoad() { |
|
|
|
onLoad() { |
|
|
@ -77,6 +78,11 @@ |
|
|
|
true).then(res => { |
|
|
|
true).then(res => { |
|
|
|
this.peopleList = [...this.peopleList, ...res.data.rows] |
|
|
|
this.peopleList = [...this.peopleList, ...res.data.rows] |
|
|
|
this.total = res.data.total |
|
|
|
this.total = res.data.total |
|
|
|
|
|
|
|
this.peopleList.forEach(it => { |
|
|
|
|
|
|
|
if (it.avatar.indexOf('/prod-api') == -1) { |
|
|
|
|
|
|
|
it.avatar = this.base + it.avatar |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
@ -272,6 +278,7 @@ |
|
|
|
color: #808080; |
|
|
|
color: #808080; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.jlboxbottoml text { |
|
|
|
.jlboxbottoml text { |
|
|
|
max-width: 120rpx; |
|
|
|
max-width: 120rpx; |
|
|
|
overflow: hidden; |
|
|
|
overflow: hidden; |
|
|
|