班级小组管理 可以删除查看
parent
ef8d1671c4
commit
d4d5b1bdea
|
@ -42,3 +42,23 @@ export function delClass(classId) {
|
||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 查询小组管理列表
|
||||||
|
export function listGroup(query) {
|
||||||
|
return request({
|
||||||
|
url: '/custom/group/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除小组管理
|
||||||
|
export function delGroup(groupId) {
|
||||||
|
return request({
|
||||||
|
url: '/custom/group/' + groupId,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 查询小组管理详细
|
||||||
|
export function getGroup(groupId) {
|
||||||
|
return request({
|
||||||
|
url: '/custom/group/' + groupId,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增小组管理
|
||||||
|
export function addGroup(data) {
|
||||||
|
return request({
|
||||||
|
url: '/custom/group',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改小组管理
|
||||||
|
export function updateGroup(data) {
|
||||||
|
return request({
|
||||||
|
url: '/custom/group/' + data.groupId,
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -102,6 +102,14 @@
|
||||||
v-hasPermi="['custom:class:remove']"
|
v-hasPermi="['custom:class:remove']"
|
||||||
>删除
|
>删除
|
||||||
</el-button>
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
circle
|
||||||
|
@click="handleshowGroup(scope.row.classId)"
|
||||||
|
v-hasPermi="['custom:group:list']"
|
||||||
|
>查看班级内小组
|
||||||
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
@ -114,7 +122,6 @@
|
||||||
@pagination="getList"
|
@pagination="getList"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- 添加或修改班级管理对话框 -->
|
|
||||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||||
<el-form-item label="班级名称" prop="className">
|
<el-form-item label="班级名称" prop="className">
|
||||||
|
@ -136,11 +143,64 @@
|
||||||
<el-button @click="cancel">取 消</el-button>
|
<el-button @click="cancel">取 消</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
|
<!-- 小组列表的外层对话框 -->
|
||||||
|
<el-dialog :title="title" :visible.sync="outerVisible">
|
||||||
|
|
||||||
|
<!-- 添加小组 对话框 -->
|
||||||
|
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="primary"
|
||||||
|
icon="el-icon-plus"
|
||||||
|
@change="handleGroupAdd"
|
||||||
|
v-hasPermi="['custom:group:add']"
|
||||||
|
>添加班级内小组
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<!-- {{ groupList }}-->
|
||||||
|
<el-table v-loading="loading" :data="groupList">
|
||||||
|
<el-table-column label="小组ID" align="center" prop="groupId"/>
|
||||||
|
<!-- <el-table-column label="班级ID" align="center" prop="classId"/>-->
|
||||||
|
<el-table-column label="小组名称" align="center" prop="groupName"/>
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<!-- <el-button-->
|
||||||
|
<!-- size="mini"-->
|
||||||
|
<!-- type="text"-->
|
||||||
|
<!-- icon="el-icon-edit"-->
|
||||||
|
<!-- @click="handleUpdate(scope.row)"-->
|
||||||
|
<!-- v-hasPermi="['custom:group:edit']"-->
|
||||||
|
<!-- >修改-->
|
||||||
|
<!-- </el-button>-->
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleGroupDelete(scope.row)"
|
||||||
|
v-hasPermi="['custom:group:remove']"
|
||||||
|
>删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-dialog
|
||||||
|
width="30%"
|
||||||
|
:title="title"
|
||||||
|
:visible.sync="innerVisible"
|
||||||
|
append-to-body>
|
||||||
|
</el-dialog>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="outerVisible = false">取 消</el-button>
|
||||||
|
<el-button type="primary" @click="innerVisible = true">打开内层 Dialog</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {addClass, delClass, getClass, listClass, updateClass} from "@/api/custom/class";
|
import {addClass, delClass, delGroup, getClass, listClass, listGroup, updateClass} from "@/api/custom/class";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Class",
|
name: "Class",
|
||||||
|
@ -182,7 +242,19 @@ export default {
|
||||||
status: [
|
status: [
|
||||||
{required: true, message: "状态不能为空", trigger: "change"}
|
{required: true, message: "状态不能为空", trigger: "change"}
|
||||||
],
|
],
|
||||||
}
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//小组管理的数据
|
||||||
|
|
||||||
|
//外层对话框
|
||||||
|
outerVisible: false,
|
||||||
|
//内层对话框
|
||||||
|
innerVisible: false,
|
||||||
|
// 小组管理表格数据
|
||||||
|
groupList: [],
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
@ -212,7 +284,11 @@ export default {
|
||||||
createBy: null,
|
createBy: null,
|
||||||
createTime: null,
|
createTime: null,
|
||||||
updateBy: null,
|
updateBy: null,
|
||||||
updateTime: null
|
updateTime: null,
|
||||||
|
|
||||||
|
groupId: null,
|
||||||
|
groupName: null,
|
||||||
|
|
||||||
};
|
};
|
||||||
this.resetForm("form");
|
this.resetForm("form");
|
||||||
},
|
},
|
||||||
|
@ -284,7 +360,50 @@ export default {
|
||||||
this.download('custom/class/export', {
|
this.download('custom/class/export', {
|
||||||
...this.queryParams
|
...this.queryParams
|
||||||
}, `class_${new Date().getTime()}.xlsx`)
|
}, `class_${new Date().getTime()}.xlsx`)
|
||||||
}
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//小组管理
|
||||||
|
|
||||||
|
/** 查看班级内小组 */
|
||||||
|
handleshowGroup(classId) {
|
||||||
|
this.outerVisible = true;
|
||||||
|
this.title = "管理班级小组";
|
||||||
|
//将班级ID存入表单中,方便利用
|
||||||
|
this.form.classId = classId;
|
||||||
|
|
||||||
|
listGroup({classId: this.form.classId}).then(response => {
|
||||||
|
this.groupList = response.data;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 删除小组 */
|
||||||
|
handleGroupDelete(row) {
|
||||||
|
this.$modal.confirm('是否确认删除小组编号为"' + row.groupId + '"的数据项?').then(function () {
|
||||||
|
return delGroup(row.groupId);
|
||||||
|
}).then(() => {
|
||||||
|
listGroup({classId: this.form.classId}).then(response => {
|
||||||
|
this.groupList = response.data;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 新增小组 */
|
||||||
|
handleGroupAdd() {
|
||||||
|
//先把班级ID提取出来
|
||||||
|
let classId = this.form.classId;
|
||||||
|
//再重置表单
|
||||||
|
this.reset();
|
||||||
|
//再把班级ID进行赋值
|
||||||
|
this.form.classId = classId;
|
||||||
|
this.innerVisible = true;
|
||||||
|
this.title = "添加小组";
|
||||||
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -0,0 +1,355 @@
|
||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
|
<el-form-item label="班级ID" prop="classId">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.classId"
|
||||||
|
placeholder="请输入班级ID"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="小组名称" prop="groupName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.groupName"
|
||||||
|
placeholder="请输入小组名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in dict.type.sys_normal_disable"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="el-icon-plus"
|
||||||
|
size="mini"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['custom:group:add']"
|
||||||
|
>新增
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
icon="el-icon-edit"
|
||||||
|
size="mini"
|
||||||
|
:disabled="single"
|
||||||
|
@click="handleUpdate"
|
||||||
|
v-hasPermi="['custom:group:edit']"
|
||||||
|
>修改
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
plain
|
||||||
|
icon="el-icon-delete"
|
||||||
|
size="mini"
|
||||||
|
:disabled="multiple"
|
||||||
|
@click="handleDelete"
|
||||||
|
v-hasPermi="['custom:group:remove']"
|
||||||
|
>删除
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="warning"
|
||||||
|
plain
|
||||||
|
icon="el-icon-download"
|
||||||
|
size="mini"
|
||||||
|
@click="handleExport"
|
||||||
|
v-hasPermi="['custom:group:export']"
|
||||||
|
>导出
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="groupList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center"/>
|
||||||
|
<el-table-column label="小组ID" align="center" prop="groupId"/>
|
||||||
|
<el-table-column label="班级ID" align="center" prop="classId"/>
|
||||||
|
<el-table-column label="小组名称" align="center" prop="groupName"/>
|
||||||
|
<el-table-column label="状态" align="center" prop="status">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['custom:group:edit']"
|
||||||
|
>修改
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['custom:group:remove']"
|
||||||
|
>删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 添加或修改小组管理对话框 -->
|
||||||
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||||
|
<el-form-item label="班级ID" prop="classId">
|
||||||
|
<el-input v-model="form.classId" placeholder="请输入班级ID"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="小组名称" prop="groupName">
|
||||||
|
<el-input v-model="form.groupName" placeholder="请输入小组名称"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-radio-group v-model="form.status">
|
||||||
|
<el-radio
|
||||||
|
v-for="dict in dict.type.sys_normal_disable"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.value"
|
||||||
|
>{{ dict.label }}
|
||||||
|
</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {getGroup, listGroup} from "@/api/custom/group";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "Group",
|
||||||
|
dicts: ['sys_normal_disable'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 小组管理表格数据
|
||||||
|
groupList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
classId: null,
|
||||||
|
groupName: null,
|
||||||
|
status: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
classId: [
|
||||||
|
{
|
||||||
|
required: true, message: "班级ID不能为空", trigger: "blur"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
groupName: [
|
||||||
|
{
|
||||||
|
required: true, message: "小组名称不能为空", trigger: "blur"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
status: [
|
||||||
|
{
|
||||||
|
required: true, message: "状态不能为空", trigger: "change"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询小组管理列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listGroup(this.queryParams).then(response => {
|
||||||
|
this.groupList = response.data.rows;
|
||||||
|
this.total = response.data.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
groupId: null,
|
||||||
|
classId: null,
|
||||||
|
groupName: null,
|
||||||
|
status: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.groupId)
|
||||||
|
this.single = selection.length !== 1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加小组管理";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const groupId = row.groupId || this.ids
|
||||||
|
getGroup(groupId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改小组管理";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// /** 提交按钮 */
|
||||||
|
// submitForm() {
|
||||||
|
// this.$refs["form"].validate(valid => {
|
||||||
|
// if (valid) {
|
||||||
|
// if (this.form.${
|
||||||
|
// pkColumn.javaField
|
||||||
|
// }
|
||||||
|
// !=
|
||||||
|
// null
|
||||||
|
// )
|
||||||
|
// {
|
||||||
|
// update$
|
||||||
|
// {
|
||||||
|
// BusinessName
|
||||||
|
// }
|
||||||
|
// (this.form).then(response => {
|
||||||
|
// this.
|
||||||
|
// #
|
||||||
|
// [[$modal]]
|
||||||
|
// #.
|
||||||
|
// msgSuccess("修改成功");
|
||||||
|
// this.open = false;
|
||||||
|
// this.getList();
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// else
|
||||||
|
// {
|
||||||
|
// add$
|
||||||
|
// {
|
||||||
|
// BusinessName
|
||||||
|
// }
|
||||||
|
// (this.form).then(response => {
|
||||||
|
// this.
|
||||||
|
// #
|
||||||
|
// [[$modal]]
|
||||||
|
// #.
|
||||||
|
// msgSuccess("新增成功");
|
||||||
|
// this.open = false;
|
||||||
|
// this.getList();
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// },
|
||||||
|
// /** 删除按钮操作 */
|
||||||
|
// handleDelete(row) {
|
||||||
|
// const groupIds = row.$
|
||||||
|
// {
|
||||||
|
// pkColumn.javaField
|
||||||
|
// }
|
||||||
|
// ||
|
||||||
|
// this.ids;
|
||||||
|
// this.
|
||||||
|
// #
|
||||||
|
// [[$modal]]
|
||||||
|
// #.
|
||||||
|
// confirm('是否确认删除小组管理编号为"' + groupIds + '"的数据项?').then(function () {
|
||||||
|
// return del$
|
||||||
|
// {
|
||||||
|
// BusinessName
|
||||||
|
// }
|
||||||
|
// (groupIds);
|
||||||
|
// }).then(() => {
|
||||||
|
// this.getList();
|
||||||
|
// this.
|
||||||
|
// #
|
||||||
|
// [[$modal]]
|
||||||
|
// #.
|
||||||
|
// msgSuccess("删除成功");
|
||||||
|
// }).catch(() => {
|
||||||
|
// });
|
||||||
|
// },
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('custom/group/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `group_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue