mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-24 10:12:54 +08:00
批量换组
This commit is contained in:
@@ -109,10 +109,12 @@
|
|||||||
导入学员
|
导入学员
|
||||||
</a-button>
|
</a-button>
|
||||||
</a-col>
|
</a-col>
|
||||||
<!--
|
|
||||||
<a-col :span="1.5" v-if="type === 1">
|
<a-col :span="1.5" v-if="type === 1">
|
||||||
<a-button class="cus-btn white"> 批量换组 </a-button>
|
<a-button class="cus-btn white" @click="showChangeGroupModal">
|
||||||
</a-col>-->
|
批量换组
|
||||||
|
</a-button>
|
||||||
|
</a-col>
|
||||||
<a-col :span="1.5" v-if="type === 1">
|
<a-col :span="1.5" v-if="type === 1">
|
||||||
<a-button class="cus-btn white" @click="exportTaskStu">
|
<a-button class="cus-btn white" @click="exportTaskStu">
|
||||||
导出学习信息
|
导出学习信息
|
||||||
@@ -242,6 +244,13 @@
|
|||||||
:ids="stuSelectKeys"
|
:ids="stuSelectKeys"
|
||||||
@finash="submitCall"
|
@finash="submitCall"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<!-- 换组弹窗 -->
|
||||||
|
<ChangeGroupModal
|
||||||
|
v-model:changegroupV="changegroupV"
|
||||||
|
:groupList="groupList"
|
||||||
|
:checkgroupStuId="checkgroupStuId"
|
||||||
|
/>
|
||||||
<!-- 批量调整关卡弹窗 -->
|
<!-- 批量调整关卡弹窗 -->
|
||||||
<!-- 取消学员弹窗 -->
|
<!-- 取消学员弹窗 -->
|
||||||
<div>
|
<div>
|
||||||
@@ -390,6 +399,12 @@ const topFlagList = ref([
|
|||||||
label: "优秀学员",
|
label: "优秀学员",
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
const changegroupV = ref({
|
||||||
|
|
||||||
|
});
|
||||||
|
const checkgroupStuId = ref({});
|
||||||
|
const groupList = ref({});
|
||||||
const tablecolumns = ref([
|
const tablecolumns = ref([
|
||||||
{
|
{
|
||||||
title: "姓名",
|
title: "姓名",
|
||||||
@@ -514,6 +529,10 @@ const stuRowSelection = computed(() => ({
|
|||||||
onChange: onStuSelectChange,
|
onChange: onStuSelectChange,
|
||||||
preserveSelectedRowKeys: true,
|
preserveSelectedRowKeys: true,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 导出数据
|
// 导出数据
|
||||||
function exportTaskStu() {
|
function exportTaskStu() {
|
||||||
console.log("props.datasource", props);
|
console.log("props.datasource", props);
|
||||||
@@ -567,7 +586,6 @@ function changePagination(page) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getStuList() {
|
function getStuList() {
|
||||||
debugger
|
|
||||||
tableData.value.loading = true;
|
tableData.value.loading = true;
|
||||||
console.log("tableParam.value", tableParam.value);
|
console.log("tableParam.value", tableParam.value);
|
||||||
getStuPage(tableParam.value).then((res) => {
|
getStuPage(tableParam.value).then((res) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user