mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-10 19:36:43 +08:00
文章排行榜添加个人组织
This commit is contained in:
@@ -79,24 +79,25 @@
|
|||||||
<p class="ranking-title">贡献榜</p>
|
<p class="ranking-title">贡献榜</p>
|
||||||
<ul class="ranking-data">
|
<ul class="ranking-data">
|
||||||
<li v-for="(item, index) in ankingList" :key="index" style="margin-top:30px;line-height: 22px;cursor: pointer;">
|
<li v-for="(item, index) in ankingList" :key="index" style="margin-top:30px;line-height: 22px;cursor: pointer;">
|
||||||
<router-link :to="'article/detail?id=' + item.id">
|
<!-- <router-link :to="'article/detail?id=' + item.id"> -->
|
||||||
<span class="portal-right-text orange-one" v-if="index==0" style="margin-right:94px">
|
<span class="portal-right-text orange-one" v-if="index==0" style="margin-right:25px">
|
||||||
<img :src="`${webBaseUrl}/images/listblue01.png`" alt="">
|
<img :src="`${webBaseUrl}/images/listblue01.png`" alt="">
|
||||||
</span>
|
</span>
|
||||||
<span class="portal-right-text orange-tow" v-if="index==1" style="margin-right:94px">
|
<span class="portal-right-text orange-tow" v-if="index==1" style="margin-right:25px">
|
||||||
<img :src="`${webBaseUrl}/images/listblue02.png`" alt="">
|
<img :src="`${webBaseUrl}/images/listblue02.png`" alt="">
|
||||||
</span>
|
</span>
|
||||||
<span class="portal-right-text orange-three" v-if="index==2" style="margin-right:94px">
|
<span class="portal-right-text orange-three" v-if="index==2" style="margin-right:25px">
|
||||||
<img :src="`${webBaseUrl}/images/listblue03.png`" alt="">
|
<img :src="`${webBaseUrl}/images/listblue03.png`" alt="">
|
||||||
</span>
|
</span>
|
||||||
<span class="portal-right-text" v-if="index==3" style="margin-right:94px">
|
<span class="portal-right-text" v-if="index==3" style="margin-right:25px">
|
||||||
<img :src="`${webBaseUrl}/images/list04.png`" alt="">
|
<img :src="`${webBaseUrl}/images/list04.png`" alt="">
|
||||||
</span>
|
</span>
|
||||||
<span class="portal-right-text" v-if="index==4" style="margin-right:94px">
|
<span class="portal-right-text" v-if="index==4" style="margin-right:25px">
|
||||||
<img :src="`${webBaseUrl}/images/list05.png`" alt="">
|
<img :src="`${webBaseUrl}/images/list05.png`" alt="">
|
||||||
</span>
|
</span>
|
||||||
<span class="portal-title-desc">{{ item.sysCreateUname }}</span>
|
<span class="portal-title-desc">{{ item.sysCreateUname }}<span class="orinfo-text">({{ item.orinfo }})</span> </span>
|
||||||
</router-link>
|
<!-- {{ item.sysCreateAid }} -->
|
||||||
|
<!-- </router-link> -->
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -150,6 +151,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
ankIds:[],
|
||||||
resonimg:{},
|
resonimg:{},
|
||||||
moreState:1,// 1 加载更多 2 加载中 3无数据
|
moreState:1,// 1 加载更多 2 加载中 3无数据
|
||||||
searchRecords: [],
|
searchRecords: [],
|
||||||
@@ -390,6 +392,20 @@ export default {
|
|||||||
apiArticle.countsUsername(5).then(res => {
|
apiArticle.countsUsername(5).then(res => {
|
||||||
if (res.status == 200) {
|
if (res.status == 200) {
|
||||||
this.ankingList = res.result;
|
this.ankingList = res.result;
|
||||||
|
let ids = [];
|
||||||
|
this.ankingList.forEach(item =>{
|
||||||
|
ids.push(item.sysCreateAid);
|
||||||
|
})
|
||||||
|
apiUser.getByIds(ids).then(res=>{
|
||||||
|
res.result.forEach(item=>{
|
||||||
|
this.ankIds.push(item.orgInfo);
|
||||||
|
this.ankingList.forEach((value, index) => {
|
||||||
|
value['orinfo'] = this.ankIds[index];
|
||||||
|
})
|
||||||
|
})
|
||||||
|
// console.log(this.ankingList);
|
||||||
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@@ -398,6 +414,11 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
.orinfo-text{
|
||||||
|
font-size: 13px;
|
||||||
|
color: #666666;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
.course-resources{
|
.course-resources{
|
||||||
margin-top: 26px;
|
margin-top: 26px;
|
||||||
width:100%;
|
width:100%;
|
||||||
|
|||||||
Reference in New Issue
Block a user