小组提交

master
Wang Hao 2024-04-23 22:33:40 +08:00
parent bb2a1cd60a
commit 3408068080
2 changed files with 304 additions and 1 deletions

View File

@ -42,3 +42,58 @@ export function delClazz(clazzId) {
method: 'delete'
})
}
//无条件查询班级管理
export function findUnconditional() {
return request({
url: '/clazz/clazz/findUnconditional',
method: 'get'
})
}
// 查询小组列表
export function listGroup(query) {
return request({
url: '/group/group/list',
method: 'get',
params: query
})
}
// 查询小组详细
export function getGroup(groupId) {
return request({
url: '/group/group/' + groupId,
method: 'get'
})
}
// 新增小组
export function addGroup(data) {
return request({
url: '/group/group',
method: 'post',
data: data
})
}
// 修改小组
export function updateGroup(data) {
return request({
url: '/group/group/'+data.groupId,
method: 'put',
data: data
})
}
// 删除小组
export function delGroup(groupId) {
return request({
url: '/group/group/' + groupId,
method: 'delete'
})
}

View File

@ -70,6 +70,114 @@
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<!-- 查看小组信息-->
<el-dialog title="小组管理" :visible.sync="dialogTableVisible" @selection-change="handleSelectionChangegroup">
<el-button type="success" @click="handleAddGroup" icon="el-icon-plus" circle style="position: absolute; top: 10px; right: 10px;">新增</el-button>
<el-table :data="groupList" style="width: 100%">
<el-table-column label="小组序号" width="180">
<template slot-scope="scope">
<span style="margin-left: 10px">{{ scope.row.groupId }}</span>
</template>
</el-table-column>
<el-table-column label="小组名称" width="180">
<template slot-scope="scope">
<span style="margin-left: 10px">{{ scope.row.groupName }}</span>
</template>
</el-table-column>
<el-table-column label="小组人数" width="180">
<template slot-scope="scope">
<span style="margin-left: 10px">{{ scope.row.groupPeople }}</span>
</template>
</el-table-column>
<el-table-column label="小组人员" width="180">
<template slot-scope="scope">
<span style="margin-left: 10px">{{ scope.row.groupPersonnel }}</span>
</template>
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button size="mini" @click="handleEdit(scope.row)"></el-button>
<el-button size="mini" type="danger" @click="handleDeletegroup(scope.row)"></el-button>
</template>
</el-table-column>
</el-table>
<!-- 小组列表分也-->
<pagination
v-show="grouptotal>0"
:total="grouptotal"
:page.sync="queryGroup.pageNum"
:limit.sync="queryGroup.pageSize"
@pagination="findByGroup"
/>
</el-dialog>
<!-- 添加或修改小组管理对话框 -->
<el-dialog :title="title" :visible.sync="addupdate" width="500px" append-to-body>
<el-form ref="form" :model="group" :rules="rules" label-width="80px">
<el-form-item label="小组名称" prop="groupName">
<el-input v-model="group.groupName" placeholder="请输入小组名称" />
</el-form-item>
<el-form-item label="小组人数" prop="groupPeople">
<el-input v-model="group.groupPeople" placeholder="请输入小组人数" />
</el-form-item>
<el-form-item label="小组人员" prop="groupPersonnel">
<el-input v-model="group.groupPersonnel" placeholder="请输入小组人员" />
</el-form-item>
<el-form-item label="班级">
<el-select v-model="group.clazzId" placeholder="请选择班级">
<el-option v-for="item in clazzDown" :label="item.clazzName" :value="item.clazzId"></el-option>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFormgroup"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<el-table v-loading="loading" :data="clazzList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
@ -89,6 +197,19 @@
@click="handleUpdate(scope.row)"
v-hasPermi="['clazz:clazz:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="findByGroup(scope.row.clazzId)"
v-hasPermi="['clazz:clazz:edit']"
>查看小组</el-button>
<el-button
size="mini"
type="text"
@ -133,13 +254,56 @@
</template>
<script>
import { listClazz, getClazz, delClazz, addClazz, updateClazz } from "@/api/clazz/clazz";
import {
listClazz, getClazz, delClazz, addClazz, updateClazz,
findUnconditional,
addGroup, updateGroup, delGroup, listGroup
} from "@/api/clazz/clazz";
export default {
name: "Clazz",
dicts: ['sys_common_status'],
data() {
return {
//
idss: [],
//
singles: true,
//
multiples: true,
// xiaozu
grouptotal: 0,
//
queryGroup:{
pageNum: 1,
pageSize: 5,
clazzId: 0,
},
//
group: {},
//
addupdate:false,
//
clazzDown:[],
//
dialogTableVisible: false,
//
groupList:[],
//
loading: true,
//
@ -174,8 +338,92 @@ export default {
},
created() {
this.getList();
this.queryAllClazzlist();
},
methods: {
handleDeletegroup(row)
{
const groupIds = row.groupId || this.ids;
this.$modal.confirm('是否确认删除小组管理编号为"' + groupIds + '"的数据项?').then(function() {
return delGroup(groupIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
//
handleSelectionChangegroup(selection) {
this.idss = selection.map(item => item.groupId)
this.singles = selection.length!==1
this.multiples = !selection.length
},
handleEdit(row){
this.resetgroup();
this.group = row
this.addupdate = true;
this.title = "修改小组管理";
},
/** 提交按钮 */
submitFormgroup() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.group.groupId != null) {
updateGroup(this.group).then(response => {
this.$modal.msgSuccess("修改成功");
this.addupdate = false;
this.queryGroup();
});
} else {
addGroup(this.group).then(response => {
this.$modal.msgSuccess("新增成功");
this.addupdate = false;
this.queryGroup();
});
}
}
});
},
//
resetgroup() {
this.group = {
groupId: null,
groupName: null,
groupPeople: null,
groupPersonnel: null,
clazzId: null
}
},
handleAddGroup(){
this.resetgroup();
this.addupdate = true;
this.title = "添加小组管理";
},
//
queryAllClazzlist(){
findUnconditional().then(res=>{
this.clazzDown = res.data.rows
})
},
findByGroup(clazzId){
this.queryGroup.clazzId = clazzId
listGroup(this.queryGroup).then(res=>{
this.dialogTableVisible = true
this.grouptotal = res.data.total
this.groupList = res.data.rows
})
},
/** 查询班级列表 */
getList() {
this.loading = true;