mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 02:46:44 +08:00
Merge branch 'zcwy_0822_case' into dev_master
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
<div class="case-tittext">
|
||||
<span class="title-line-ellipsis" v-html="item.title"></span>
|
||||
</div>
|
||||
<div class="case-activeText" @click.stop="()=>{}">
|
||||
<div class="case-activeText">
|
||||
<!-- <span v-if="item.breCommend" class="comWords"
|
||||
style="background-color:rgba(232, 139, 72);">荐</span>
|
||||
<span v-if="item.excellent" class="comWords" style="background-color:red;">最佳</span> -->
|
||||
@@ -167,7 +167,7 @@ import apiPlace from "@/api/phase2/place.js"
|
||||
excellent: true,
|
||||
keyWord: '',
|
||||
orgDomainDtos: [],
|
||||
caseType: '',
|
||||
caseType: process.env.VUE_APP_CASE_TYPE,
|
||||
authorName: '',
|
||||
notInIds: [],
|
||||
type: 'all',
|
||||
@@ -457,6 +457,9 @@ import apiPlace from "@/api/phase2/place.js"
|
||||
};
|
||||
});
|
||||
}
|
||||
res.result.forEach(item=>{
|
||||
item.viewRankTags = item.viewRankTags.slice(0,2)
|
||||
})
|
||||
this.caseList.list = res.result
|
||||
if(this.caseList.length == 0){
|
||||
this.isSeach = true
|
||||
|
||||
@@ -1506,6 +1506,9 @@ export default {
|
||||
sex: null
|
||||
};
|
||||
});
|
||||
res.result.list.forEach(item=>{
|
||||
item.viewRankTags = item.viewRankTags.slice(0,2)
|
||||
})
|
||||
this.caseList.list = res.result.list
|
||||
this.getCaseUserData(res.result.list);
|
||||
// 给所有的赋值
|
||||
@@ -1558,6 +1561,9 @@ export default {
|
||||
sex: null
|
||||
};
|
||||
});
|
||||
res.result.list.forEach(item=>{
|
||||
item.viewRankTags = item.viewRankTags.slice(0,2)
|
||||
})
|
||||
this.caseList.list = res.result.list
|
||||
this.getCaseUserData(res.result.list);
|
||||
this.caseList.count = res.result.count;
|
||||
@@ -1594,6 +1600,9 @@ export default {
|
||||
this.moreState = 3;
|
||||
}
|
||||
// console.log(res?.result?.list ,'有没有数据');
|
||||
res.result.list.forEach(item=>{
|
||||
item.viewRankTags = item.viewRankTags.slice(0,2)
|
||||
})
|
||||
this.caseList.list = res.result.list
|
||||
this.getCaseUserData(res.result.list);
|
||||
// 给所有的赋值
|
||||
|
||||
Reference in New Issue
Block a user