mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 19:36:46 +08:00
完成活动页面学员列表数据缺失
This commit is contained in:
@@ -247,9 +247,9 @@
|
||||
|
||||
<!-- 换组弹窗 -->
|
||||
<ChangeGroupModal
|
||||
v-model:changegroupV="changegroupV"
|
||||
:groupList="groupList"
|
||||
:checkgroupStuId="checkgroupStuId"
|
||||
v-model:changegroupV="checkgroupParam.changegroupV"
|
||||
:groupList="checkgroupParam.checkgroupList"
|
||||
:checkgroupStuId="checkgroupParam.checkgroupStuId"
|
||||
/>
|
||||
<!-- 批量调整关卡弹窗 -->
|
||||
<!-- 取消学员弹窗 -->
|
||||
@@ -350,6 +350,7 @@
|
||||
<script setup>
|
||||
import { computed, createVNode, defineProps, onMounted, ref, watch } from "vue";
|
||||
import { delStudentList, getStuPage, batchUpdateStatus } from "@/api/index1";
|
||||
import ChangeGroupModal from "@/components/student/ChangeGroupModal.vue";
|
||||
import CommonStudent from "@/components/student/CommonStudent";
|
||||
import ChangeLevelModal from "./ChangeLevelModal.vue";
|
||||
import { message, Modal } from "ant-design-vue";
|
||||
@@ -400,11 +401,6 @@ const topFlagList = ref([
|
||||
},
|
||||
]);
|
||||
|
||||
const changegroupV = ref({
|
||||
|
||||
});
|
||||
const checkgroupStuId = ref({});
|
||||
const groupList = ref({});
|
||||
const tablecolumns = ref([
|
||||
{
|
||||
title: "姓名",
|
||||
@@ -516,6 +512,13 @@ const tableParam = ref({
|
||||
type: props.type,
|
||||
pid: props.id,
|
||||
});
|
||||
|
||||
const checkgroupParam = ref({
|
||||
changegroupV: false, //学员名称
|
||||
checkgroupList: "", //学员小组
|
||||
checkgroupStuId: null,
|
||||
});
|
||||
|
||||
const stuSelectKeys = ref([]);
|
||||
const tableData = ref({
|
||||
list: [],
|
||||
@@ -532,6 +535,11 @@ const stuRowSelection = computed(() => ({
|
||||
|
||||
|
||||
|
||||
//显示学员换组弹窗
|
||||
function showChangeGroupModal () {
|
||||
debugger
|
||||
checkgroupParam.value.changegroupV = true;
|
||||
}
|
||||
|
||||
// 导出数据
|
||||
function exportTaskStu() {
|
||||
|
||||
Reference in New Issue
Block a user