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:
@@ -21,7 +21,7 @@
|
|||||||
<a :href="hasPermission(item)" target="_blank">
|
<a :href="hasPermission(item)" target="_blank">
|
||||||
<img style="width: 150px;height: 200px;" :src="getItem(item)" />
|
<img style="width: 150px;height: 200px;" :src="getItem(item)" />
|
||||||
<p class="ceping-tit one-line-ellipsis" v-html="$keywordActiveShow(item.title,keyword)"></p>
|
<p class="ceping-tit one-line-ellipsis" v-html="$keywordActiveShow(item.title,keyword)"></p>
|
||||||
<p class="ceping-conent">完成时间:{{item.date}}</p>
|
<p class="ceping-conent">上传时间:{{item.date}}</p>
|
||||||
</a>
|
</a>
|
||||||
<!-- </section> -->
|
<!-- </section> -->
|
||||||
|
|
||||||
@@ -98,9 +98,11 @@
|
|||||||
agent:'pc'
|
agent:'pc'
|
||||||
}
|
}
|
||||||
apiBoeCourse.reportList(params).then(rs=>{
|
apiBoeCourse.reportList(params).then(rs=>{
|
||||||
this.testList = rs.result.reportList
|
this.testList = Array.isArray(rs.result.reportList)
|
||||||
|
? rs.result.reportList
|
||||||
|
: Array.from(Object.values(rs.result.reportList));
|
||||||
|
// this.testList = rs.result.reportList
|
||||||
this.total = rs.result.count
|
this.total = rs.result.count
|
||||||
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
textdetail(item){
|
textdetail(item){
|
||||||
@@ -110,10 +112,12 @@
|
|||||||
// /course/boeframe
|
// /course/boeframe
|
||||||
},
|
},
|
||||||
handleSizeChange(val) {
|
handleSizeChange(val) {
|
||||||
|
console.log(val,'sizeval')
|
||||||
this.size = val
|
this.size = val
|
||||||
this.findList()
|
this.findList()
|
||||||
},
|
},
|
||||||
handleCurrentChange(val) {
|
handleCurrentChange(val) {
|
||||||
|
console.log(val,'pageval')
|
||||||
this.page = val
|
this.page = val
|
||||||
this.findList()
|
this.findList()
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user