增加批次管理功能

This commit is contained in:
tiezx 2025-07-18 16:53:38 +08:00
parent 4387572eaa
commit 86c2ecbbd3
2 changed files with 451 additions and 0 deletions

44
src/api/business/batch.js Normal file
View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询批次管理列表
export function listBatch(query) {
return request({
url: '/business/batch/list',
method: 'get',
params: query
})
}
// 查询批次管理详细
export function getBatch(batchId) {
return request({
url: '/business/batch/' + batchId,
method: 'get'
})
}
// 新增批次管理
export function addBatch(data) {
return request({
url: '/business/batch',
method: 'post',
data: data
})
}
// 修改批次管理
export function updateBatch(data) {
return request({
url: '/business/batch',
method: 'put',
data: data
})
}
// 删除批次管理
export function delBatch(batchId) {
return request({
url: '/business/batch/' + batchId,
method: 'delete'
})
}

View File

@ -0,0 +1,407 @@
<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="batchNo">
<el-input
v-model="queryParams.batchNo"
placeholder="请输入批次编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="批次名称" prop="batchName">
<el-input
v-model="queryParams.batchName"
placeholder="请输入批次名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="开始时间">
<el-date-picker
v-model="daterangeBatchStartDate"
style="width: 240px"
value-format="yyyy-MM-dd HH:mm:ss"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
:default-time="['00:00:00', '23:59:59']"
></el-date-picker>
</el-form-item>
<el-form-item label="计划结束时间">
<el-date-picker
v-model="daterangeBatchPlanEndDate"
style="width: 240px"
value-format="yyyy-MM-dd HH:mm:ss"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
:default-time="['00:00:00', '23:59:59']"
></el-date-picker>
</el-form-item>
<el-form-item label="结束日期">
<el-date-picker
v-model="daterangeBatchEndDate"
style="width: 240px"
value-format="yyyy-MM-dd HH:mm:ss"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
:default-time="['00:00:00', '23:59:59']"
></el-date-picker>
</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="['business:batch: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="['business:batch: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="['business:batch: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="['business:batch:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="batchList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="批次ID" align="center" prop="batchId" v-if="true"/>
<el-table-column label="批次编号" align="center" prop="batchNo" />
<el-table-column label="批次名称" align="center" prop="batchName" />
<el-table-column label="开始时间" align="center" prop="batchStartDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.batchStartDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="计划结束时间" align="center" prop="batchPlanEndDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.batchPlanEndDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="结束日期" align="center" prop="batchEndDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.batchEndDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
<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="['business:batch:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['business:batch: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="batchNo">
<el-input v-model="form.batchNo" placeholder="请输入批次编号" />
</el-form-item>
<el-form-item label="批次名称" prop="batchName">
<el-input v-model="form.batchName" placeholder="请输入批次名称" />
</el-form-item>
<el-form-item label="开始时间" prop="batchStartDate">
<el-date-picker clearable
v-model="form.batchStartDate"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择开始时间">
</el-date-picker>
</el-form-item>
<el-form-item label="计划结束时间" prop="batchPlanEndDate">
<el-date-picker clearable
v-model="form.batchPlanEndDate"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择计划结束时间">
</el-date-picker>
</el-form-item>
<el-form-item label="结束日期" prop="batchEndDate">
<el-date-picker clearable
v-model="form.batchEndDate"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择结束日期">
</el-date-picker>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listBatch, getBatch, delBatch, addBatch, updateBatch } from "@/api/business/batch";
export default {
name: "Batch",
data() {
return {
// loading
buttonLoading: false,
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
batchList: [],
//
title: "",
//
open: false,
//
daterangeBatchStartDate: [],
//
daterangeBatchPlanEndDate: [],
//
daterangeBatchEndDate: [],
//
queryParams: {
pageNum: 1,
pageSize: 10,
batchNo: undefined,
batchName: undefined,
batchStartDate: undefined,
batchPlanEndDate: undefined,
batchEndDate: undefined,
},
//
form: {},
//
rules: {
batchId: [
{ required: true, message: "批次ID不能为空", trigger: "blur" }
],
batchNo: [
{ required: true, message: "批次编号不能为空", trigger: "blur" }
],
batchName: [
{ required: true, message: "批次名称不能为空", trigger: "blur" }
],
batchStartDate: [
{ required: true, message: "开始时间不能为空", trigger: "blur" }
],
batchPlanEndDate: [
{ required: true, message: "计划结束时间不能为空", trigger: "blur" }
],
delFlag: [
{ required: true, message: "删除标志不能为空", trigger: "blur" }
],
remark: [
{ required: true, message: "备注不能为空", trigger: "blur" }
]
}
};
},
created() {
this.getList();
},
methods: {
/** 查询批次管理列表 */
getList() {
this.loading = true;
this.queryParams.params = {};
if (null != this.daterangeBatchStartDate && '' != this.daterangeBatchStartDate) {
this.queryParams.params["beginBatchStartDate"] = this.daterangeBatchStartDate[0];
this.queryParams.params["endBatchStartDate"] = this.daterangeBatchStartDate[1];
}
if (null != this.daterangeBatchPlanEndDate && '' != this.daterangeBatchPlanEndDate) {
this.queryParams.params["beginBatchPlanEndDate"] = this.daterangeBatchPlanEndDate[0];
this.queryParams.params["endBatchPlanEndDate"] = this.daterangeBatchPlanEndDate[1];
}
if (null != this.daterangeBatchEndDate && '' != this.daterangeBatchEndDate) {
this.queryParams.params["beginBatchEndDate"] = this.daterangeBatchEndDate[0];
this.queryParams.params["endBatchEndDate"] = this.daterangeBatchEndDate[1];
}
listBatch(this.queryParams).then(response => {
this.batchList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
batchId: undefined,
batchNo: undefined,
batchName: undefined,
batchStartDate: undefined,
batchPlanEndDate: undefined,
batchEndDate: undefined,
delFlag: undefined,
createBy: undefined,
createTime: undefined,
updateBy: undefined,
updateTime: undefined,
remark: undefined
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.daterangeBatchStartDate = [];
this.daterangeBatchPlanEndDate = [];
this.daterangeBatchEndDate = [];
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.batchId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加批次管理";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.loading = true;
this.reset();
const batchId = row.batchId || this.ids
getBatch(batchId).then(response => {
this.loading = false;
this.form = response.data;
this.open = true;
this.title = "修改批次管理";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
this.buttonLoading = true;
if (this.form.batchId != null) {
updateBatch(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
} else {
addBatch(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const batchIds = row.batchId || this.ids;
this.$modal.confirm('是否确认删除批次管理编号为"' + batchIds + '"的数据项?').then(() => {
this.loading = true;
return delBatch(batchIds);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
/** 导出按钮操作 */
handleExport() {
this.download('business/batch/export', {
...this.queryParams
}, `batch_${new Date().getTime()}.xlsx`)
}
}
};
</script>