营养管理接口

This commit is contained in:
2025-11-21 17:55:20 +08:00
parent 13f2692448
commit 0b22993ad3
5 changed files with 451 additions and 0 deletions

View File

@@ -0,0 +1,103 @@
<template>
<el-form :model="formData" :rules="rules" ref="formRef" label-width="100px">
<el-form-item label="营养名称" prop="name">
<el-input v-model="formData.name" placeholder="请输入营养名称"></el-input>
</el-form-item>
<el-form-item label="描述" prop="description">
<el-input
v-model="formData.description"
type="textarea"
:rows="3"
placeholder="请输入营养描述"
></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="submitForm">提交</el-button>
<el-button @click="cancelForm">取消</el-button>
</el-form-item>
</el-form>
</template>
<script>
import { ref, reactive, watch } from 'vue';
import { ElMessage } from 'element-plus';
export default {
name: 'NutrientForm',
props: {
isEdit: {
type: Boolean,
default: false,
},
initialData: {
type: Object,
default: () => ({
name: '',
description: '',
}),
},
},
emits: ['submit', 'cancel'],
setup(props, { emit }) {
const formRef = ref(null);
const formData = reactive({
name: '',
description: '',
});
// 监听 initialData 变化,用于编辑模式下初始化表单
watch(
() => props.initialData,
(newVal) => {
if (newVal) {
formData.name = newVal.name || '';
formData.description = newVal.description || '';
}
},
{ immediate: true, deep: true }
);
const rules = {
name: [
{ required: true, message: '请输入营养名称', trigger: 'blur' },
{ min: 2, max: 50, message: '长度在 2 到 50 个字符', trigger: 'blur' },
],
};
const submitForm = () => {
formRef.value.validate((valid) => {
if (valid) {
emit('submit', { ...formData });
} else {
ElMessage.error('请检查表单项');
return false;
}
});
};
const cancelForm = () => {
emit('cancel');
resetForm();
};
const resetForm = () => {
formRef.value.resetFields();
// 手动重置 formData因为 resetFields 不会重置未绑定 prop 的字段
formData.name = '';
formData.description = '';
};
return {
formRef,
formData,
rules,
submitForm,
cancelForm,
resetForm,
};
},
};
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,155 @@
<template>
<div>
<!-- 搜索区域 -->
<div style="margin-bottom: 20px; display: flex; align-items: center; gap: 10px;">
<el-select v-model="searchType" placeholder="请选择搜索类型" style="width: 150px;">
<el-option label="按营养名称" value="name"></el-option>
<!-- 根据接口定义也可以按 raw_material_name 搜索但目前界面上只提供按营养名称搜索 -->
<!-- <el-option label="按原料名称" value="raw_material_name"></el-option> -->
</el-select>
<el-input
v-model="searchKeyword"
placeholder="请输入关键词"
clearable
style="width: 300px;"
@keyup.enter="handleSearch"
></el-input>
<el-button type="primary" @click="handleSearch">搜索</el-button>
</div>
<!-- 营养列表 -->
<el-table :data="tableData" style="width: 100%" v-loading="loading" row-key="id">
<el-table-column prop="id" label="ID" width="80"></el-table-column>
<el-table-column prop="name" label="营养名称"></el-table-column>
<el-table-column prop="description" label="描述"></el-table-column>
<el-table-column label="操作" width="180">
<template #default="scope">
<el-button size="small" @click="handleEdit(scope.row)">编辑</el-button>
<el-button size="small" type="danger" @click="handleDelete(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<el-pagination
style="margin-top: 20px;"
:current-page="pagination.page"
:page-size="pagination.page_size"
:total="pagination.total"
layout="total, sizes, prev, pager, next, jumper"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
></el-pagination>
</div>
</template>
<script>
import {ref, onMounted} from 'vue';
import {FeedApi} from '../../api/feed';
import {ElMessageBox, ElMessage} from 'element-plus';
export default {
name: 'NutrientTable',
emits: ['edit'], // 声明触发的事件
setup(props, { emit }) {
const tableData = ref([]);
const loading = ref(false);
const searchKeyword = ref('');
const searchType = ref('name'); // 默认按营养名称搜索
const pagination = ref({
page: 1,
page_size: 10,
total: 0,
});
const fetchNutrients = async () => {
loading.value = true;
try {
const params = {
page: pagination.value.page,
page_size: pagination.value.page_size,
};
if (searchKeyword.value) {
params[searchType.value] = searchKeyword.value;
}
const response = await FeedApi.getNutrients(params);
if (response.data) {
tableData.value = response.data.list;
pagination.value.total = response.data.pagination.total;
}
} catch (error) {
console.error('获取营养列表失败:', error);
ElMessage.error('获取营养列表失败');
} finally {
loading.value = false;
}
};
const handleSearch = () => {
pagination.value.page = 1;
fetchNutrients();
};
const handleSizeChange = (size) => {
pagination.value.page_size = size;
fetchNutrients();
};
const handleCurrentChange = (page) => {
pagination.value.page = page;
fetchNutrients();
};
const handleEdit = (row) => {
emit('edit', row); // 触发 edit 事件,并传递当前行数据
};
const handleDelete = (row) => {
ElMessageBox.confirm(
`确定要删除营养 "${row.name}" 吗?`,
'提示',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}
).then(async () => {
try {
await FeedApi.deleteNutrient(row.id);
ElMessage.success('删除成功');
await fetchNutrients();
} catch (error) {
ElMessage.error('删除失败: ' + (error.message || '未知错误'));
}
}).catch(() => {
// 用户取消操作
});
};
onMounted(() => {
fetchNutrients();
});
return {
tableData,
loading,
searchKeyword,
searchType,
pagination,
handleSearch,
handleSizeChange,
handleCurrentChange,
handleEdit,
handleDelete,
fetchNutrients, // 将方法暴露出去
};
},
};
</script>
<style scoped>
</style>

View File

@@ -84,6 +84,13 @@
</el-icon> </el-icon>
<template #title>原料管理</template> <template #title>原料管理</template>
</el-menu-item> </el-menu-item>
<el-menu-item index="/feed/nutrients">
<el-icon>
<Tickets/>
</el-icon>
<template #title>营养管理</template>
</el-menu-item>
</el-sub-menu> </el-sub-menu>
<el-menu-item index="/plans"> <el-menu-item index="/plans">

View File

@@ -24,6 +24,7 @@ import WeighingRecordsView from '../views/monitor/WeighingRecordsView.vue';
import AlarmList from '../views/alarm/AlarmList.vue'; import AlarmList from '../views/alarm/AlarmList.vue';
import ThresholdAlarmList from '../views/alarm/ThresholdAlarmList.vue'; import ThresholdAlarmList from '../views/alarm/ThresholdAlarmList.vue';
import RawMaterialList from '../views/feed/RawMaterialList.vue'; import RawMaterialList from '../views/feed/RawMaterialList.vue';
import NutrientList from '../views/feed/NutrientList.vue'; // 导入 NutrientList 组件
const routes = [ const routes = [
{path: '/', component: Home, meta: {requiresAuth: true, title: '系统首页'}}, {path: '/', component: Home, meta: {requiresAuth: true, title: '系统首页'}},
@@ -36,6 +37,7 @@ const routes = [
{path: '/pms/farm-management', name: 'PigFarmManagement', component: PigFarmManagementView, meta: { requiresAuth: true, title: '栏舍管理' }}, {path: '/pms/farm-management', name: 'PigFarmManagement', component: PigFarmManagementView, meta: { requiresAuth: true, title: '栏舍管理' }},
{path: '/pms/batch-management', name: 'PigBatchManagement', component: PigBatchManagementView, meta: { requiresAuth: true, title: '猪群管理' }}, {path: '/pms/batch-management', name: 'PigBatchManagement', component: PigBatchManagementView, meta: { requiresAuth: true, title: '猪群管理' }},
{path: '/feed/raw-materials', component: RawMaterialList, meta: {requiresAuth: true, title: '原料管理'}}, {path: '/feed/raw-materials', component: RawMaterialList, meta: {requiresAuth: true, title: '原料管理'}},
{path: '/feed/nutrients', component: NutrientList, meta: {requiresAuth: true, title: '营养管理'}}, // 添加营养管理路由
{path: '/monitor/device-command-logs', component: DeviceCommandLogView, meta: {requiresAuth: true, title: '设备命令日志'}}, {path: '/monitor/device-command-logs', component: DeviceCommandLogView, meta: {requiresAuth: true, title: '设备命令日志'}},
{path: '/monitor/medication-logs', component: MedicationLogsView, meta: {requiresAuth: true, title: '用药记录'}}, {path: '/monitor/medication-logs', component: MedicationLogsView, meta: {requiresAuth: true, title: '用药记录'}},
{path: '/monitor/notifications', component: NotificationLogView, meta: {requiresAuth: true, title: '通知记录'}}, {path: '/monitor/notifications', component: NotificationLogView, meta: {requiresAuth: true, title: '通知记录'}},

View File

@@ -0,0 +1,184 @@
<template>
<div class="nutrient-list-container">
<el-card>
<template #header>
<div class="card-header">
<div class="title-container">
<h2 class="page-title">营养管理</h2>
<el-button type="text" @click="refreshList" class="refresh-btn" title="刷新营养列表">
<el-icon :size="20"><Refresh /></el-icon>
</el-button>
</div>
<el-button type="primary" @click="handleAddNutrient">添加营养</el-button>
</div>
</template>
<nutrient-table ref="nutrientTableRef" @edit="handleEdit"></nutrient-table>
</el-card>
<!-- 添加/编辑营养弹窗 -->
<el-dialog
v-model="showDialog"
:title="formTitle"
width="500px"
:close-on-click-modal="false"
@close="handleCancel"
>
<!-- 只有在弹窗显示时才渲染表单组件并传递编辑状态和初始数据 -->
<nutrient-form
v-if="showDialog"
ref="nutrientFormRef"
:isEdit="isEditMode"
:initialData="currentEditData"
@submit="handleSubmit"
@cancel="handleCancel"
></nutrient-form>
</el-dialog>
</div>
</template>
<script>
import { ref, nextTick } from 'vue';
import { Refresh } from '@element-plus/icons-vue';
import { ElMessage } from 'element-plus';
import NutrientTable from '../../components/feed/NutrientTable.vue';
import NutrientForm from '../../components/feed/NutrientForm.vue';
import { FeedApi } from '../../api/feed';
export default {
name: 'NutrientList',
components: {
NutrientTable,
NutrientForm,
Refresh,
},
setup() {
const nutrientTableRef = ref(null);
const nutrientFormRef = ref(null);
const showDialog = ref(false);
const isEditMode = ref(false);
const currentEditData = ref(null);
const formTitle = ref('添加营养');
const refreshList = () => {
if (nutrientTableRef.value) {
nutrientTableRef.value.fetchNutrients();
}
};
// 处理添加营养按钮点击事件
const handleAddNutrient = () => {
formTitle.value = '添加营养';
isEditMode.value = false; // 新增模式
currentEditData.value = null; // 清空编辑数据
showDialog.value = true;
nextTick(() => {
nutrientFormRef.value?.resetForm();
});
};
// 处理编辑按钮点击事件
const handleEdit = (row) => {
formTitle.value = '编辑营养';
isEditMode.value = true; // 编辑模式
currentEditData.value = { ...row }; // 存储当前编辑数据,进行深拷贝
showDialog.value = true;
};
// 处理表单提交
const handleSubmit = async (formData) => {
try {
let message = '';
if (isEditMode.value) {
// 编辑模式
await FeedApi.updateNutrient(currentEditData.value.id, formData);
message = '营养更新成功';
} else {
// 新增模式
await FeedApi.createNutrient(formData);
message = '营养添加成功';
}
ElMessage.success(message);
refreshList(); // 刷新列表
showDialog.value = false; // 关闭弹窗
} catch (error) {
ElMessage.error('操作失败: ' + (error.message || '未知错误'));
}
};
// 处理弹窗取消或关闭
const handleCancel = () => {
showDialog.value = false;
// 关闭弹窗时重置表单和编辑状态
if (nutrientFormRef.value) {
nutrientFormRef.value.resetForm();
}
isEditMode.value = false;
currentEditData.value = null;
};
return {
nutrientTableRef,
nutrientFormRef,
showDialog,
formTitle,
isEditMode,
currentEditData,
refreshList,
handleAddNutrient,
handleEdit,
handleSubmit,
handleCancel,
};
},
};
</script>
<style scoped>
.nutrient-list-container {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}
.title-container {
display: flex;
align-items: center;
gap: 5px;
}
.page-title {
margin: 0;
font-size: 1.5rem;
font-weight: bold;
line-height: 1;
}
.refresh-btn {
color: black;
background-color: transparent;
padding: 0;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
border: none;
}
@media (max-width: 768px) {
.nutrient-list-container {
padding: 10px;
}
.card-header {
flex-direction: column;
gap: 15px;
}
}
</style>