修改分组管理页面,新增羊只分组页面
This commit is contained in:
parent
f64c59b2d5
commit
5f1a969db8
@ -42,3 +42,11 @@ export function delGroup_management(groupId) {
|
|||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 查询所有叶子分组
|
||||||
|
export function listLeafGroup() {
|
||||||
|
return request({
|
||||||
|
url: '/group_management/group_management/leaf',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
44
src/api/fileManagement/sheep_grouping.js
Normal file
44
src/api/fileManagement/sheep_grouping.js
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询羊只分组关联列表
|
||||||
|
export function listSheep_grouping(query) {
|
||||||
|
return request({
|
||||||
|
url: '/sheep_grouping/sheep_grouping/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询羊只分组关联详细
|
||||||
|
export function getSheep_grouping(id) {
|
||||||
|
return request({
|
||||||
|
url: '/sheep_grouping/sheep_grouping/' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增羊只分组关联
|
||||||
|
export function addSheep_grouping(data) {
|
||||||
|
return request({
|
||||||
|
url: '/sheep_grouping/sheep_grouping',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改羊只分组关联
|
||||||
|
export function updateSheep_grouping(data) {
|
||||||
|
return request({
|
||||||
|
url: '/sheep_grouping/sheep_grouping',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除羊只分组关联
|
||||||
|
export function delSheep_grouping(id) {
|
||||||
|
return request({
|
||||||
|
url: '/sheep_grouping/sheep_grouping/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
285
src/views/fileManagement/sheep_grouping/index.vue
Normal file
285
src/views/fileManagement/sheep_grouping/index.vue
Normal file
@ -0,0 +1,285 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
|
<el-form-item label="羊只ID" prop="sheepId">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.sheepId"
|
||||||
|
placeholder="请输入羊只ID"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="分组" prop="groupId">
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.groupId"
|
||||||
|
placeholder="请选择分组"
|
||||||
|
clearable
|
||||||
|
style="width: 200px"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="g in leafGroupOptions"
|
||||||
|
:key="g.groupId"
|
||||||
|
:label="g.groupName"
|
||||||
|
:value="g.groupId"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @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="Plus"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['sheep_grouping:sheep_grouping:add']"
|
||||||
|
>新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
icon="Edit"
|
||||||
|
:disabled="single"
|
||||||
|
@click="handleUpdate"
|
||||||
|
v-hasPermi="['sheep_grouping:sheep_grouping:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
plain
|
||||||
|
icon="Delete"
|
||||||
|
:disabled="multiple"
|
||||||
|
@click="handleDelete"
|
||||||
|
v-hasPermi="['sheep_grouping:sheep_grouping:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="warning"
|
||||||
|
plain
|
||||||
|
icon="Download"
|
||||||
|
@click="handleExport"
|
||||||
|
v-hasPermi="['sheep_grouping:sheep_grouping:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="sheep_groupingList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="主键ID" align="center" prop="id" />
|
||||||
|
<el-table-column label="羊只ID" align="center" prop="sheepId" />
|
||||||
|
<el-table-column label="分组ID" align="center" prop="groupId" />
|
||||||
|
<el-table-column label="分组名称" align="center" prop="groupName">
|
||||||
|
<template #default="scope">
|
||||||
|
{{ getGroupName(scope.row.groupId) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['sheep_grouping:sheep_grouping:edit']">修改</el-button>
|
||||||
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['sheep_grouping:sheep_grouping:remove']">删除</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNum"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 添加或修改羊只分组关联对话框 -->
|
||||||
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||||||
|
<el-form ref="sheep_groupingRef" :model="form" :rules="rules" label-width="80px">
|
||||||
|
<el-form-item label="羊只ID" prop="sheepId">
|
||||||
|
<el-input v-model="form.sheepId" placeholder="请输入羊只ID" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="分组" prop="groupId">
|
||||||
|
<el-select v-model="form.groupId" placeholder="请选择分组" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="g in leafGroupOptions"
|
||||||
|
:key="g.groupId"
|
||||||
|
:label="g.groupName"
|
||||||
|
:value="g.groupId"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup name="Sheep_grouping">
|
||||||
|
import { listSheep_grouping, getSheep_grouping, delSheep_grouping, addSheep_grouping, updateSheep_grouping } from "@/api/fileManagement/sheep_grouping"
|
||||||
|
import {listLeafGroup} from "@/api/fileManagement/group_management"
|
||||||
|
|
||||||
|
const { proxy } = getCurrentInstance()
|
||||||
|
|
||||||
|
const sheep_groupingList = ref([])
|
||||||
|
const open = ref(false)
|
||||||
|
const loading = ref(true)
|
||||||
|
const showSearch = ref(true)
|
||||||
|
const ids = ref([])
|
||||||
|
const single = ref(true)
|
||||||
|
const multiple = ref(true)
|
||||||
|
const total = ref(0)
|
||||||
|
const title = ref("")
|
||||||
|
const leafGroupOptions = ref([])
|
||||||
|
|
||||||
|
const data = reactive({
|
||||||
|
form: {},
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
sheepId: null,
|
||||||
|
groupId: null
|
||||||
|
},
|
||||||
|
leafGroupOptions: [],
|
||||||
|
rules: {
|
||||||
|
sheepId: [
|
||||||
|
{ required: true, message: "羊只ID不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
groupId: [
|
||||||
|
{ required: true, message: "分组ID不能为空", trigger: "change" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const { queryParams, form, rules } = toRefs(data)
|
||||||
|
|
||||||
|
/** 查询羊只分组关联列表 */
|
||||||
|
function getList() {
|
||||||
|
loading.value = true
|
||||||
|
listSheep_grouping(queryParams.value).then(response => {
|
||||||
|
sheep_groupingList.value = response.rows
|
||||||
|
total.value = response.total
|
||||||
|
loading.value = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 取消按钮
|
||||||
|
function cancel() {
|
||||||
|
open.value = false
|
||||||
|
reset()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 表单重置
|
||||||
|
function reset() {
|
||||||
|
form.value = {
|
||||||
|
id: null,
|
||||||
|
sheepId: null,
|
||||||
|
groupId: null
|
||||||
|
}
|
||||||
|
proxy.resetForm("sheep_groupingRef")
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
function handleQuery() {
|
||||||
|
queryParams.value.pageNum = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
function resetQuery() {
|
||||||
|
proxy.resetForm("queryRef")
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 多选框选中数据
|
||||||
|
function handleSelectionChange(selection) {
|
||||||
|
ids.value = selection.map(item => item.id)
|
||||||
|
single.value = selection.length != 1
|
||||||
|
multiple.value = !selection.length
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
function handleAdd() {
|
||||||
|
reset()
|
||||||
|
open.value = true
|
||||||
|
title.value = "添加羊只分组关联"
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
function handleUpdate(row) {
|
||||||
|
reset()
|
||||||
|
const _id = row.id || ids.value
|
||||||
|
getSheep_grouping(_id).then(response => {
|
||||||
|
form.value = response.data
|
||||||
|
open.value = true
|
||||||
|
title.value = "修改羊只分组关联"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
function submitForm() {
|
||||||
|
proxy.$refs["sheep_groupingRef"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (form.value.id != null) {
|
||||||
|
updateSheep_grouping(form.value).then(response => {
|
||||||
|
proxy.$modal.msgSuccess("修改成功")
|
||||||
|
open.value = false
|
||||||
|
getList()
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
addSheep_grouping(form.value).then(response => {
|
||||||
|
proxy.$modal.msgSuccess("新增成功")
|
||||||
|
open.value = false
|
||||||
|
getList()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
function handleDelete(row) {
|
||||||
|
const _ids = row.id || ids.value
|
||||||
|
proxy.$modal.confirm('是否确认删除羊只分组关联编号为"' + _ids + '"的数据项?').then(function() {
|
||||||
|
return delSheep_grouping(_ids)
|
||||||
|
}).then(() => {
|
||||||
|
getList()
|
||||||
|
proxy.$modal.msgSuccess("删除成功")
|
||||||
|
}).catch(() => {})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
function handleExport() {
|
||||||
|
proxy.download('sheep_grouping/sheep_grouping/export', {
|
||||||
|
...queryParams.value
|
||||||
|
}, `sheep_grouping_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
|
||||||
|
loadLeafGroups()
|
||||||
|
getList()
|
||||||
|
|
||||||
|
|
||||||
|
// 调用示例
|
||||||
|
function loadLeafGroups() {
|
||||||
|
listLeafGroup().then(res => {
|
||||||
|
leafGroupOptions.value = res.data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 根据 groupId 获取分组名称
|
||||||
|
function getGroupName(id) {
|
||||||
|
const group = leafGroupOptions.value.find(g => g.groupId === id)
|
||||||
|
return group ? group.groupName : ''
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
Loading…
x
Reference in New Issue
Block a user