mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-13 04:46:44 +08:00
课程管理中的管理操作状态筛选和名称查询
This commit is contained in:
@@ -44,7 +44,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="2">
|
<el-col :span="2">
|
||||||
<div class="grid-content bg-purple">
|
<div class="grid-content bg-purple">
|
||||||
<el-button type="primary" style="margin-left: 20px;" @click="getSignupList()" >搜索</el-button>
|
<el-button type="primary" style="margin-left: 20px;" @click="getSignupList()" >搜ssz索</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<!-- <el-col :span="2"> -->
|
<!-- <el-col :span="2"> -->
|
||||||
@@ -623,14 +623,16 @@ export default {
|
|||||||
pageIndex: this.study.pageIndex,
|
pageIndex: this.study.pageIndex,
|
||||||
pageSize: this.study.pageSize
|
pageSize: this.study.pageSize
|
||||||
};
|
};
|
||||||
|
|
||||||
apicourseStudy.findSignup(params).then(res => {
|
apicourseStudy.findSignup(params).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
|
|
||||||
let ids = [];
|
let ids = [];
|
||||||
res.result.list.forEach(item => {
|
res.result.list.forEach(item => {
|
||||||
ids.push(item.aid);
|
ids.push(item.aid);
|
||||||
});
|
});
|
||||||
this.getQaUserData(res.result.list, ids);
|
this.getQaUserData(res.result.list, ids);
|
||||||
// this.study.list = res.result.list;
|
this.study.list = res.result.list;
|
||||||
this.study.count = res.result.count;
|
this.study.count = res.result.count;
|
||||||
} else {
|
} else {
|
||||||
this.$message.error(res.message);
|
this.$message.error(res.message);
|
||||||
|
|||||||
Reference in New Issue
Block a user