4.23
parent
c9f364979a
commit
115d8a0539
|
@ -42,3 +42,11 @@ export function delClasse(classeId) {
|
|||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
//查询小组信息
|
||||
export function selectGroupe() {
|
||||
return request({
|
||||
url: '/system/classe/selectGroupe',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
import request from '@/utils/request'
|
||||
|
||||
// 查询小组信息列表
|
||||
export function listGroupe(query) {
|
||||
return request({
|
||||
url: '/system/groupe/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询小组信息详细
|
||||
export function getGroupe(groupId) {
|
||||
return request({
|
||||
url: '/system/groupe/' + groupId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增小组信息
|
||||
export function addGroupe(data) {
|
||||
return request({
|
||||
url: '/system/groupe',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改小组信息
|
||||
export function updateGroupe(data) {
|
||||
return request({
|
||||
url: '/system/groupe/'+data.groupId,
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除小组信息
|
||||
export function delGroupe(groupId) {
|
||||
return request({
|
||||
url: '/system/groupe/' + groupId,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
|
@ -65,6 +65,7 @@
|
|||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="班级id" align="center" prop="classeId" />
|
||||
<el-table-column label="班级名称" align="center" prop="classeName" />
|
||||
<el-table-column label="小组id" align="center" prop="groups" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
|
@ -99,6 +100,18 @@
|
|||
<el-form-item label="班级名称" prop="classeName">
|
||||
<el-input v-model="form.classeName" placeholder="请输入班级名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="小组id" prop="groups">
|
||||
<el-checkbox-group v-model="selectedGroupeIds">
|
||||
<el-checkbox
|
||||
v-for="groupe in selectGroupe"
|
||||
:key="groupe.groupId"
|
||||
:label="groupe.groupId"
|
||||
:value="groupe.groupId"
|
||||
>
|
||||
{{ groupe.groupName }}
|
||||
</el-checkbox>
|
||||
</el-checkbox-group>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
|
@ -109,12 +122,16 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { listClasse, getClasse, delClasse, addClasse, updateClasse } from "@/api/system/classe";
|
||||
import { listClasse, getClasse, delClasse, addClasse, updateClasse,selectGroupe } from "@/api/system/classe";
|
||||
|
||||
export default {
|
||||
name: "Classe",
|
||||
data() {
|
||||
return {
|
||||
//小组表选中的数据
|
||||
selectedGroupeIds:[],
|
||||
//小组表循环查询
|
||||
selectGroupe:[],
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
|
@ -138,9 +155,12 @@ export default {
|
|||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
classeName: null,
|
||||
groups: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
form: {
|
||||
groups:[]
|
||||
},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
|
@ -148,8 +168,14 @@ export default {
|
|||
},
|
||||
created() {
|
||||
this.getList();
|
||||
this.selectGroupeList();
|
||||
},
|
||||
methods: {
|
||||
selectGroupeList(){
|
||||
selectGroupe().then(res=>{
|
||||
this.selectGroupe=res.data
|
||||
})
|
||||
},
|
||||
/** 查询班级信息列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
|
@ -166,9 +192,11 @@ export default {
|
|||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.selectedGroupeIds=[]
|
||||
this.form = {
|
||||
classeId: null,
|
||||
classeName: null,
|
||||
groups: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
|
@ -194,6 +222,7 @@ export default {
|
|||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.selectedGroupeIds=[]
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加班级信息";
|
||||
|
@ -204,6 +233,7 @@ export default {
|
|||
const classeId = row.classeId || this.ids
|
||||
getClasse(classeId).then(response => {
|
||||
this.form = response.data;
|
||||
// this.form.groups = this.form.groups.split(",");
|
||||
this.open = true;
|
||||
this.title = "修改班级信息";
|
||||
});
|
||||
|
@ -212,6 +242,18 @@ export default {
|
|||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
debugger
|
||||
// //判断是否为数组,如果不正确转为数组
|
||||
// if (!Array.isArray(this.form.groups)){
|
||||
// this.form.groups=[this.form.groups]
|
||||
// }
|
||||
// //将每个元素转换为字符串
|
||||
// this.form.groups = this.form.groups.map(item => String(item)); //
|
||||
//拼接获取到数据的数组,切割
|
||||
this.form.groups = this.form.selectedGroupeIds.join(",");
|
||||
this.$message.success(this.form.groups)
|
||||
console.log(this.form.groups)
|
||||
// this.form.groups = this.form.selectedGroupeIds;
|
||||
if (this.form.classeId != null) {
|
||||
updateClasse(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
|
@ -219,6 +261,7 @@ export default {
|
|||
this.getList();
|
||||
});
|
||||
} else {
|
||||
debugger
|
||||
addClasse(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
|
|
|
@ -0,0 +1,249 @@
|
|||
<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="小组名称" prop="groupName">
|
||||
<el-input
|
||||
v-model="queryParams.groupName"
|
||||
placeholder="请输入小组名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</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="['system:groupe: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="['system:groupe: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="['system:groupe: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="['system:groupe:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="groupeList" @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="小组名称" 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="['system:groupe:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['system:groupe: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="小组名称" prop="groupName">
|
||||
<el-input v-model="form.groupName" placeholder="请输入小组名称" />
|
||||
</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 { listGroupe, getGroupe, delGroupe, addGroupe, updateGroupe } from "@/api/system/groupe";
|
||||
|
||||
export default {
|
||||
name: "Groupe",
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 小组信息表格数据
|
||||
groupeList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
groupName: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询小组信息列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listGroupe(this.queryParams).then(response => {
|
||||
this.groupeList = response.data.rows;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
groupId: null,
|
||||
groupName: 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
|
||||
getGroupe(groupId).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改小组信息";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.groupId != null) {
|
||||
updateGroupe(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addGroupe(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const groupIds = row.groupId || this.ids;
|
||||
this.$modal.confirm('是否确认删除小组信息编号为"' + groupIds + '"的数据项?').then(function() {
|
||||
return delGroupe(groupIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('system/groupe/export', {
|
||||
...this.queryParams
|
||||
}, `groupe_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in New Issue