bonus-ui/src/views/kitchen/foodSafety/sampleManage/index.vue

221 lines
8.3 KiB
Vue
Raw Normal View History

2025-06-16 15:57:53 +08:00
<template>
<div class="app-container">
2025-06-17 18:03:21 +08:00
<div style="width: 100%;">
<el-tabs v-model="activeName" type="card" @tab-click="handleTabClick">
<el-tab-pane label="今日菜品留样" name="1"></el-tab-pane>
<el-tab-pane label="昨日菜品留样" name="2"></el-tab-pane>
<el-tab-pane label="留样历史记录" name="3"></el-tab-pane>
</el-tabs>
</div>
2025-06-16 15:57:53 +08:00
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="关键字" prop="searchValue">
<el-input v-model="queryParams.searchValue" placeholder="请输入菜品名称,编号" maxlength="20" clearable style="width: 240px"/>
</el-form-item>
<el-form-item label="所属档口" prop="userName">
<el-input v-model="queryParams.userName" placeholder="请输入所属档口" maxlength="20" clearable style="width: 240px"/>
</el-form-item>
<el-form-item label="违规状态" prop="faceStatus">
<el-select v-model="queryParams.faceStatus" style="width: 240px" clearable>
<el-option label="正常" value="0"></el-option>
<el-option label="重量未达标" value="1"></el-option>
<el-option label="时长未达标" value="1"></el-option>
</el-select>
</el-form-item>
<el-form-item label="存放状态" prop="saveStatus">
<el-select v-model="queryParams.saveStatus" style="width: 240px" clearable>
<el-option label="未入柜" value="0"></el-option>
<el-option label="在柜" value="1"></el-option>
<el-option label="离柜" value="2"></el-option>
<el-option label="超时自动离柜 " value="3"></el-option>
</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">
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="tableListData" height="800">
<el-table-column label="序号" align="center" width="80" type="index">
<template slot-scope="scope">
<span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
</template>
</el-table-column>
<el-table-column label="日期" align="center" prop="canteenNum" :show-overflow-tooltip="true" width="150"/>
<el-table-column label="关联食堂" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="档口名称" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="餐次" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="菜品编号" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="菜品名称" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="留样重量(g)" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="所在留样柜" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="留样人" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="样品图片" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="入柜时间" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="离柜时间" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="存放状态" align="center" prop="canteenName" :show-overflow-tooltip="true" />
<el-table-column label="违规状态" align="center" prop="canteenName" :show-overflow-tooltip="true" />
</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>
<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 { getPageCanteenApi } from "@/api/base/canteen";
export default {
name: "",
dicts: [],
data() {
return {
// 遮罩层
2025-06-17 18:03:21 +08:00
loading: false,
2025-06-16 15:57:53 +08:00
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
//表格数据
tableListData: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
canteenName: undefined,
areaNameStr: undefined,
},
// 表单参数
form: {},
// 表单校验
rules: {
// canteenName: [
// { required: true, message: "字典名称不能为空", trigger: "blur" }
// ],
// dictType: [
// { required: true, message: "字典类型不能为空", trigger: "blur" }
// ]
}
};
},
created() {
// this.getList();
},
methods: {
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
2025-06-17 18:03:21 +08:00
handleTabClick(tab, event) {
console.log(tab.name,tab.label)
this.handleQuery()
},
2025-06-16 15:57:53 +08:00
/** 查询列表 */
getList() {
this.loading = true;
let param = {
"current": this.queryParams.pageNum,
"size": this.queryParams.pageSize,
}
getPageCanteenApi(param).then(response => {
this.tableListData = response.records;
this.total = Number(response.total);
this.loading = false;
});
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "新增";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
// const dictId = row.dictId || this.ids
// getType(dictId).then(response => {
// this.form = response.data;
this.open = true;
this.title = "修改";
// });
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {};
this.resetForm("form");
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.dictId != undefined) {
// updateType(this.form).then(response => {
// this.$modal.msgSuccess("修改成功");
// this.open = false;
// this.getList();
// });
} else {
// addType(this.form).then(response => {
// this.$modal.msgSuccess("新增成功");
// this.open = false;
// this.getList();
// });
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const dictIds = row.dictId || this.ids;
this.$modal.confirm('是否确认删除数据项?').then(function() {
// return delType(dictIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
}
};
</script>