单表增删改查

This commit is contained in:
2025-07-18 10:05:56 +08:00
parent c933c655c1
commit 31dd4f4f12
13 changed files with 2679 additions and 0 deletions

View File

@@ -0,0 +1,341 @@
<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="父节点ID" prop="parentId">
<el-input
v-model="queryParams.parentId"
placeholder="请输入父节点ID"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="仓库/库区编码" prop="warehouseCode">
<el-input
v-model="queryParams.warehouseCode"
placeholder="请输入仓库/库区编码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="仓库/库区名称" prop="warehouseName">
<el-input
v-model="queryParams.warehouseName"
placeholder="请输入仓库/库区名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="同级排序号" prop="sortNo">
<el-input
v-model="queryParams.sortNo"
placeholder="请输入同级排序号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="是否启用" prop="isEnabled">
<el-input
v-model="queryParams.isEnabled"
placeholder="请输入是否启用"
clearable
@keyup.enter.native="handleQuery"
/>
</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="['klp:warehouse:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="info"
plain
icon="el-icon-sort"
size="mini"
@click="toggleExpandAll"
>展开/折叠</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table
v-if="refreshTable"
v-loading="loading"
:data="warehouseList"
row-key="warehouseId"
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column label="父节点ID" prop="parentId" />
<el-table-column label="仓库/库区编码" align="center" prop="warehouseCode" />
<el-table-column label="仓库/库区名称" align="center" prop="warehouseName" />
<el-table-column label="类型0=仓库1=库区2=库位,…" align="center" prop="warehouseType" />
<el-table-column label="同级排序号" align="center" prop="sortNo" />
<el-table-column label="是否启用" align="center" prop="isEnabled" />
<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="['klp:warehouse:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-plus"
@click="handleAdd(scope.row)"
v-hasPermi="['klp:warehouse:add']"
>新增</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['klp:warehouse:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<!-- 添加或修改仓库/库区/库位自关联对话框 -->
<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="父节点ID" prop="parentId">
<treeselect v-model="form.parentId" :options="warehouseOptions" :normalizer="normalizer" placeholder="请选择父节点ID" />
</el-form-item>
<el-form-item label="仓库/库区编码" prop="warehouseCode">
<el-input v-model="form.warehouseCode" placeholder="请输入仓库/库区编码" />
</el-form-item>
<el-form-item label="仓库/库区名称" prop="warehouseName">
<el-input v-model="form.warehouseName" placeholder="请输入仓库/库区名称" />
</el-form-item>
<el-form-item label="同级排序号" prop="sortNo">
<el-input v-model="form.sortNo" placeholder="请输入同级排序号" />
</el-form-item>
<el-form-item label="是否启用" prop="isEnabled">
<el-input v-model="form.isEnabled" placeholder="请输入是否启用" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" 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 { listWarehouse, getWarehouse, delWarehouse, addWarehouse, updateWarehouse } from "@/api/wms/warehouse";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
export default {
name: "Warehouse",
components: {
Treeselect
},
data() {
return {
// 按钮loading
buttonLoading: false,
// 遮罩层
loading: true,
// 显示搜索条件
showSearch: true,
// 仓库/库区/库位自关联表格数据
warehouseList: [],
// 仓库/库区/库位自关联树选项
warehouseOptions: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 是否展开,默认全部展开
isExpandAll: true,
// 重新渲染表格状态
refreshTable: true,
// 查询参数
queryParams: {
parentId: undefined,
warehouseCode: undefined,
warehouseName: undefined,
warehouseType: undefined,
sortNo: undefined,
isEnabled: undefined,
},
// 表单参数
form: {},
// 表单校验
rules: {
warehouseCode: [
{ required: true, message: "仓库/库区编码不能为空", trigger: "blur" }
],
warehouseName: [
{ required: true, message: "仓库/库区名称不能为空", trigger: "blur" }
],
warehouseType: [
{ required: true, message: "类型0=仓库1=库区2=库位,…不能为空", trigger: "change" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询仓库/库区/库位自关联列表 */
getList() {
this.loading = true;
listWarehouse(this.queryParams).then(response => {
this.warehouseList = this.handleTree(response.data, "warehouseId", "parentId");
this.loading = false;
});
},
/** 转换仓库/库区/库位自关联数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
}
return {
id: node.warehouseId,
label: node.warehouseName,
children: node.children
};
},
/** 查询仓库/库区/库位自关联下拉树结构 */
getTreeselect() {
listWarehouse().then(response => {
this.warehouseOptions = [];
const data = { warehouseId: 0, warehouseName: '顶级节点', children: [] };
data.children = this.handleTree(response.data, "warehouseId", "parentId");
this.warehouseOptions.push(data);
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
warehouseId: null,
parentId: null,
warehouseCode: null,
warehouseName: null,
warehouseType: null,
sortNo: null,
isEnabled: null,
delFlag: null,
remark: null,
createTime: null,
createBy: null,
updateTime: null,
updateBy: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
/** 新增按钮操作 */
handleAdd(row) {
this.reset();
this.getTreeselect();
if (row != null && row.warehouseId) {
this.form.parentId = row.warehouseId;
} else {
this.form.parentId = 0;
}
this.open = true;
this.title = "添加仓库/库区/库位自关联";
},
/** 展开/折叠操作 */
toggleExpandAll() {
this.refreshTable = false;
this.isExpandAll = !this.isExpandAll;
this.$nextTick(() => {
this.refreshTable = true;
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.loading = true;
this.reset();
this.getTreeselect();
if (row != null) {
this.form.parentId = row.warehouseId;
}
getWarehouse(row.warehouseId).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.warehouseId != null) {
updateWarehouse(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
} else {
addWarehouse(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
this.$modal.confirm('是否确认删除仓库/库区/库位自关联编号为"' + row.warehouseId + '"的数据项?').then(() => {
this.loading = true;
return delWarehouse(row.warehouseId);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
}
}
};
</script>