wms configuration
parent
8ed21bbe93
commit
f8b02c1274
@ -0,0 +1,63 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { ConfigurationVO, ConfigurationForm, ConfigurationQuery } from '@/api/wms/configuration/types';
|
||||
|
||||
/**
|
||||
* 查询仓库模块配置列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listConfiguration = (query?: ConfigurationQuery): AxiosPromise<ConfigurationVO[]> => {
|
||||
return request({
|
||||
url: '/wms/configuration/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询仓库模块配置详细
|
||||
* @param configurationId
|
||||
*/
|
||||
export const getConfiguration = (configurationId: string | number): AxiosPromise<ConfigurationVO> => {
|
||||
return request({
|
||||
url: '/wms/configuration/' + configurationId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增仓库模块配置
|
||||
* @param data
|
||||
*/
|
||||
export const addConfiguration = (data: ConfigurationForm) => {
|
||||
return request({
|
||||
url: '/wms/configuration',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改仓库模块配置
|
||||
* @param data
|
||||
*/
|
||||
export const updateConfiguration = (data: ConfigurationForm) => {
|
||||
return request({
|
||||
url: '/wms/configuration',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除仓库模块配置
|
||||
* @param configurationId
|
||||
*/
|
||||
export const delConfiguration = (configurationId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/wms/configuration/' + configurationId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
@ -0,0 +1,317 @@
|
||||
<template>
|
||||
<div class="p-2">
|
||||
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||
<div v-show="showSearch" class="mb-[10px]">
|
||||
<el-card shadow="hover">
|
||||
<el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
||||
<el-form-item label="表主键" prop="configurationId">
|
||||
<el-input v-model="queryParams.configurationId" placeholder="请输入表主键" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="节点代码" prop="nodeCode">
|
||||
<el-input v-model="queryParams.nodeCode" placeholder="请输入节点代码" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="节点名称" prop="nodeName">
|
||||
<el-input v-model="queryParams.nodeName" placeholder="请输入节点名称" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="审批是否" prop="approveYesNo">
|
||||
<el-input v-model="queryParams.approveYesNo" placeholder="请输入审批是否" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="审批类型" prop="approveType">
|
||||
<el-select v-model="queryParams.approveType" placeholder="请选择审批类型" clearable >
|
||||
<el-option v-for='dict in approve_type' :key="dict.value" :label="dict.label" :value="dict.value"/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="审批代码" prop="approveRoleCode">
|
||||
<el-input v-model="queryParams.approveRoleCode" placeholder="请输入审批代码" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="仓库ID" prop="warehouseId">
|
||||
<el-input v-model="queryParams.warehouseId" placeholder="请输入仓库ID" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="审批范围" prop="approveRange">
|
||||
<el-input v-model="queryParams.approveRange" placeholder="请输入审批范围" clearable @keyup.enter="handleQuery" />
|
||||
</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-card>
|
||||
</div>
|
||||
</transition>
|
||||
|
||||
<el-card shadow="never">
|
||||
<template #header>
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['system:configuration:add']">新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['system:configuration:edit']">修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['system:configuration:remove']">删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:configuration:export']">导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
</template>
|
||||
|
||||
<el-table v-loading="loading" :data="configurationList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="表主键" align="center" prop="configurationId" v-if="columns[0].visible"/>
|
||||
<el-table-column label="节点代码" align="center" prop="nodeCode" v-if="columns[3].visible"/>
|
||||
<el-table-column label="节点名称" align="center" prop="nodeName" v-if="columns[4].visible"/>
|
||||
<el-table-column label="审批是否" align="center" prop="approveYesNo" v-if="columns[5].visible"/>
|
||||
<el-table-column label="审批类型" align="center" prop="approveType" v-if="columns[6].visible"/>
|
||||
<el-table-column label="审批代码" align="center" prop="approveRoleCode" v-if="columns[7].visible"/>
|
||||
<el-table-column label="仓库ID" align="center" prop="warehouseId" v-if="columns[8].visible"/>
|
||||
<el-table-column label="审批范围" align="center" prop="approveRange" v-if="columns[9].visible"/>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="修改" placement="top">
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:configuration:edit']"></el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip content="删除" placement="top">
|
||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:configuration:remove']"></el-button>
|
||||
</el-tooltip>
|
||||
</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-card>
|
||||
<!-- 添加或修改仓库模块配置对话框 -->
|
||||
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
|
||||
<el-form ref="configurationFormRef" :model="form" :rules="rules" label-width="80px">
|
||||
<!-- <el-form-item label="表主键" prop="configurationId">
|
||||
<el-input v-model="form.configurationId" placeholder="请输入表主键" />
|
||||
</el-form-item> -->
|
||||
<el-form-item label="节点代码" prop="nodeCode">
|
||||
<el-input v-model="form.nodeCode" placeholder="请输入节点代码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="节点名称" prop="nodeName">
|
||||
<el-input v-model="form.nodeName" placeholder="请输入节点名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="审批是否" prop="approveYesNo">
|
||||
<el-input v-model="form.approveYesNo" placeholder="请输入审批是否" />
|
||||
</el-form-item>
|
||||
<el-form-item label="审批类型" prop="approveType">
|
||||
<el-select v-model="form.approveType" placeholder="请选择审批类型">
|
||||
<el-option
|
||||
v-for='dict in approve_type'
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="审批代码" prop="approveRoleCode">
|
||||
<el-input v-model="form.approveRoleCode" placeholder="请输入审批代码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="仓库ID" prop="warehouseId">
|
||||
<el-input v-model="form.warehouseId" placeholder="请输入仓库ID" />
|
||||
</el-form-item>
|
||||
<el-form-item label="审批范围" prop="approveRange">
|
||||
<el-input v-model="form.approveRange" placeholder="请输入审批范围" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="Configuration" lang="ts">
|
||||
import { listConfiguration, getConfiguration, delConfiguration, addConfiguration, updateConfiguration } from '@/api/wms/configuration';
|
||||
import { ConfigurationVO, ConfigurationQuery, ConfigurationForm } from '@/api/wms/configuration/types';
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const { approve_type } = toRefs<any>(proxy?.useDict('approve_type'));
|
||||
const configurationList = ref<ConfigurationVO[]>([]);
|
||||
const buttonLoading = ref(false);
|
||||
const loading = ref(true);
|
||||
const showSearch = ref(true);
|
||||
const ids = ref<Array<string | number>>([]);
|
||||
const single = ref(true);
|
||||
const multiple = ref(true);
|
||||
const total = ref(0);
|
||||
|
||||
const queryFormRef = ref<ElFormInstance>();
|
||||
const configurationFormRef = ref<ElFormInstance>();
|
||||
|
||||
const dialog = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: ''
|
||||
});
|
||||
|
||||
// 列显隐信息
|
||||
const columns = ref<FieldOption[]>([
|
||||
{ key: 0, label: `表主键`, visible: true },
|
||||
{ key: 1, label: `创建人`, visible: true },
|
||||
{ key: 2, label: `创建时间`, visible: true },
|
||||
{ key: 3, label: `节点代码`, visible: true },
|
||||
{ key: 4, label: `节点名称`, visible: true },
|
||||
{ key: 5, label: `审批是否`, visible: true },
|
||||
{ key: 6, label: `审批类型`, visible: true },
|
||||
{ key: 7, label: `审批代码`, visible: true },
|
||||
{ key: 8, label: `仓库ID`, visible: true },
|
||||
{ key: 9, label: `审批范围`, visible: true },
|
||||
]);
|
||||
|
||||
const initFormData: ConfigurationForm = {
|
||||
configurationId: undefined,
|
||||
nodeCode: undefined,
|
||||
nodeName: undefined,
|
||||
approveYesNo: undefined,
|
||||
approveType: undefined,
|
||||
approveRoleCode: undefined,
|
||||
warehouseId: undefined,
|
||||
approveRange: undefined
|
||||
}
|
||||
const data = reactive<PageData<ConfigurationForm, ConfigurationQuery>>({
|
||||
form: {...initFormData},
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
configurationId: undefined,
|
||||
nodeCode: undefined,
|
||||
nodeName: undefined,
|
||||
approveYesNo: undefined,
|
||||
approveType: undefined,
|
||||
approveRoleCode: undefined,
|
||||
warehouseId: undefined,
|
||||
approveRange: undefined,
|
||||
params: {
|
||||
}
|
||||
},
|
||||
rules: {
|
||||
// configurationId: [
|
||||
// { required: true, message: "表主键不能为空", trigger: "blur" }
|
||||
// ],
|
||||
nodeCode: [
|
||||
{ required: true, message: "节点代码不能为空", trigger: "blur" }
|
||||
],
|
||||
nodeName: [
|
||||
{ required: true, message: "节点名称不能为空", trigger: "blur" }
|
||||
],
|
||||
approveYesNo: [
|
||||
{ required: true, message: "审批是否不能为空", trigger: "blur" }
|
||||
],
|
||||
approveType: [
|
||||
{ required: true, message: "审批类型不能为空", trigger: "change" }
|
||||
],
|
||||
approveRoleCode: [
|
||||
{ required: true, message: "审批代码不能为空", trigger: "blur" }
|
||||
],
|
||||
warehouseId: [
|
||||
{ required: true, message: "仓库ID不能为空", trigger: "blur" }
|
||||
],
|
||||
approveRange: [
|
||||
{ required: true, message: "审批范围不能为空", trigger: "blur" }
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 查询仓库模块配置列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true;
|
||||
const res = await listConfiguration(queryParams.value);
|
||||
configurationList.value = res.rows;
|
||||
total.value = res.total;
|
||||
loading.value = false;
|
||||
}
|
||||
|
||||
/** 取消按钮 */
|
||||
const cancel = () => {
|
||||
reset();
|
||||
dialog.visible = false;
|
||||
}
|
||||
|
||||
/** 表单重置 */
|
||||
const reset = () => {
|
||||
form.value = {...initFormData};
|
||||
configurationFormRef.value?.resetFields();
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
handleQuery();
|
||||
}
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: ConfigurationVO[]) => {
|
||||
ids.value = selection.map(item => item.configurationId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
}
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
reset();
|
||||
dialog.visible = true;
|
||||
dialog.title = "添加仓库模块配置";
|
||||
}
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: ConfigurationVO) => {
|
||||
reset();
|
||||
const _configurationId = row?.configurationId || ids.value[0]
|
||||
const res = await getConfiguration(_configurationId);
|
||||
Object.assign(form.value, res.data);
|
||||
dialog.visible = true;
|
||||
dialog.title = "修改仓库模块配置";
|
||||
}
|
||||
|
||||
/** 提交按钮 */
|
||||
const submitForm = () => {
|
||||
configurationFormRef.value?.validate(async (valid: boolean) => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.configurationId) {
|
||||
await updateConfiguration(form.value).finally(() => buttonLoading.value = false);
|
||||
} else {
|
||||
console.log(form.value);
|
||||
await addConfiguration(form.value).finally(() => buttonLoading.value = false);
|
||||
}
|
||||
proxy?.$modal.msgSuccess("操作成功");
|
||||
dialog.visible = false;
|
||||
await getList();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (row?: ConfigurationVO) => {
|
||||
const _configurationIds = row?.configurationId || ids.value;
|
||||
await proxy?.$modal.confirm('是否确认删除仓库模块配置编号为"' + _configurationIds + '"的数据项?').finally(() => loading.value = false);
|
||||
await delConfiguration(_configurationIds);
|
||||
proxy?.$modal.msgSuccess("删除成功");
|
||||
await getList();
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = () => {
|
||||
proxy?.download('system/configuration/export', {
|
||||
...queryParams.value
|
||||
}, `configuration_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
});
|
||||
</script>
|
Loading…
Reference in New Issue