增加 wms基础信息模块

dev
wanghao 5 months ago
parent 175a95c069
commit e249b7d4a0

@ -0,0 +1,76 @@
import request from '@/utils/request';
import { AxiosPromise } from 'axios';
import { BaseLocationVO, BaseLocationForm, BaseLocationQuery } from '@/api/wms/baseLocation/types';
/**
*
* @param query
* @returns {*}
*/
export const listBaseLocation = (query?: BaseLocationQuery): AxiosPromise<BaseLocationVO[]> => {
return request({
url: '/wms/baseLocation/list',
method: 'get',
params: query
});
};
/**
*
* @param locationId
*/
export const getBaseLocation = (locationId: string | number): AxiosPromise<BaseLocationVO> => {
return request({
url: '/wms/baseLocation/' + locationId,
method: 'get'
});
};
/**
*
* @param data
*/
export const addBaseLocation = (data: BaseLocationForm) => {
return request({
url: '/wms/baseLocation',
method: 'post',
data: data
});
};
/**
*
* @param data
*/
export const updateBaseLocation = (data: BaseLocationForm) => {
return request({
url: '/wms/baseLocation',
method: 'put',
data: data
});
};
/**
*
* @param locationId
*/
export const delBaseLocation = (locationId: string | number | Array<string | number>) => {
return request({
url: '/wms/baseLocation/' + locationId,
method: 'delete'
});
};
/**
*
* @param query
* @returns {*}
*/
export function getWmsBaseLocationList (query) {
return request({
url: '/wms/baseLocation/getWmsBaseLocationList',
method: 'get',
params: query
});
};

@ -0,0 +1,91 @@
export interface BaseLocationVO {
/**
* ID
*/
locationId: string | number;
/**
*
*/
warehouseId: string | number;
/**
*
*/
tenantId: string | number;
/**
*
*/
locationCode: string;
/**
* 1 0
*/
activeFlag: string;
/**
*
*/
createDept: number;
/**
*
*/
createTime: string;
/**
*
*/
updateTime: string;
}
export interface BaseLocationForm extends BaseEntity {
/**
* ID
*/
locationId?: string | number;
/**
*
*/
warehouseId?: string | number;
/**
*
*/
locationCode?: string;
/**
* 1 0
*/
activeFlag?: string;
}
export interface BaseLocationQuery extends PageQuery {
/**
*
*/
warehouseId?: string | number;
/**
*
*/
locationCode?: string;
/**
* 1 0
*/
activeFlag?: string;
/**
*
*/
params?: any;
}

@ -0,0 +1,76 @@
import request from '@/utils/request';
import { AxiosPromise } from 'axios';
import { WarehouseInfoForm, WarehouseInfoQuery, WarehouseInfoVO } from '@/api/wms/warehouseInfo/types';
/**
*
* @param query
* @returns {*}
*/
export const listWarehouseInfo = (query?: WarehouseInfoQuery): AxiosPromise<WarehouseInfoVO[]> => {
return request({
url: '/wms/warehouseInfo/list',
method: 'get',
params: query
});
};
/**
*
* @param warehouseId
*/
export const getWarehouseInfo = (warehouseId: string | number): AxiosPromise<WarehouseInfoVO> => {
return request({
url: '/wms/warehouseInfo/' + warehouseId,
method: 'get'
});
};
/**
*
* @param data
*/
export const addWarehouseInfo = (data: WarehouseInfoForm) => {
return request({
url: '/wms/warehouseInfo',
method: 'post',
data: data
});
};
/**
*
* @param data
*/
export const updateWarehouseInfo = (data: WarehouseInfoForm) => {
return request({
url: '/wms/warehouseInfo',
method: 'put',
data: data
});
};
/**
*
* @param warehouseId
*/
export const delWarehouseInfo = (warehouseId: string | number | Array<string | number>) => {
return request({
url: '/wms/warehouseInfo/' + warehouseId,
method: 'delete'
});
};
/**
*
* @param query
* @returns {*}
*/
export function getWmsWarehouseInfoList(query) {
return request({
url: '/wms/warehouseInfo/getWmsWarehouseInfoList',
method: 'get',
params: query
});
}

@ -0,0 +1,139 @@
export interface WarehouseInfoVO {
/**
* ID
*/
warehouseId: string | number;
/**
*
*/
tenantId: string | number;
/**
*
*/
warehouseCode: string;
/**
*
*/
warehouseName: string;
/**
* 1 8 9
*/
warehouseType: string;
/**
* ID
*/
deptId: string | number;
/**
*
*/
warehouseManager: string;
/**
*
*/
remark: string;
/**
* 1 0
*/
activeFlag: string;
/**
* 0 1
*/
delFlag: string;
/**
*
*/
createDept: number;
/**
*
*/
createBy: number;
/**
*
*/
createTime: string;
/**
*
*/
updateBy: number;
/**
*
*/
updateTime: string;
}
export interface WarehouseInfoForm extends BaseEntity {
/**
* ID
*/
warehouseId: string | number;
/**
*
*/
warehouseCode?: string;
/**
*
*/
warehouseName?: string;
/**
* 1 8 9
*/
warehouseType?: string;
/**
* ID
*/
deptId?: string | number;
/**
*
*/
warehouseManager?: string;
/**
*
*/
remark?: string;
/**
* 1 0
*/
activeFlag?: string;
}
export interface WarehouseInfoQuery extends PageQuery {
/**
*
*/
warehouseName?: string;
/**
* 1 8 9
*/
warehouseType?: string;
/**
* 1 0
*/
activeFlag?: string;
/**
*
*/
params?: any;
}

@ -0,0 +1,273 @@
<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" label-width="100px">
<el-form-item label="库位编码" prop="locationCode">
<el-input v-model="queryParams.locationCode" placeholder="请输入库位编码" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="库位状态" prop="activeFlag">
<el-select v-model="queryParams.activeFlag" placeholder="请选择库位状态" clearable>
<el-option v-for="dict in use_state" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</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="['wms:baseLocation:add']"> </el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['wms:baseLocation:edit']"
>修改
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['wms:baseLocation:remove']"
>删除
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['wms:baseLocation: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" border :data="baseLocationList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="库位ID" align="center" prop="locationId" v-if="columns[0].visible" />
<el-table-column label="所属仓库" align="center" prop="warehouseId" v-if="columns[1].visible" />
<el-table-column label="租户编号" align="center" prop="tenantId" v-if="columns[2].visible" />
<el-table-column label="库位编码" align="center" prop="locationCode" v-if="columns[3].visible" />
<el-table-column label="库位状态" align="center" prop="activeFlag" v-if="columns[4].visible">
<template #default="scope">
<dict-tag :options="use_state" :value="scope.row.activeFlag" />
</template>
</el-table-column>
<el-table-column label="创建部门" align="center" prop="createDept" v-if="columns[5].visible" />
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[7].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[9].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" fixed="right" 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="['wms:baseLocation:edit']"></el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['wms:baseLocation: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="baseLocationFormRef" :model="form" :rules="rules" label-width="120px">
<el-form-item label="所属仓库" prop="warehouseId">
<el-select v-model="form.warehouseId" placeholder="请选择所属仓库">
<el-option v-for="item in warehouseList" :key="item.warehouseId" :label="item.warehouseName" :value="item.warehouseId"></el-option>
</el-select>
</el-form-item>
<el-form-item label="库位编码" prop="locationCode">
<el-input v-model="form.locationCode" placeholder="请输入库位编码" />
</el-form-item>
<el-form-item label="库位状态" prop="activeFlag">
<el-select v-model="form.activeFlag" placeholder="请选择库位状态">
<el-option v-for="dict in use_state" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
</el-select>
</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="BaseLocation" lang="ts">
import { addBaseLocation, delBaseLocation, getBaseLocation, listBaseLocation, updateBaseLocation } from '@/api/wms/baseLocation';
import { BaseLocationForm, BaseLocationQuery, BaseLocationVO } from '@/api/wms/baseLocation/types';
import { getWmsWarehouseInfoList, listWarehouseInfo } from '@/api/wms/warehouseInfo';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { use_state } = toRefs<any>(proxy?.useDict('use_state'));
const baseLocationList = ref<BaseLocationVO[]>([]);
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 baseLocationFormRef = ref<ElFormInstance>();
const warehouseList = ref([]);
const dialog = reactive<DialogOption>({
visible: false,
title: ''
});
//
const columns = ref<FieldOption[]>([
{ key: 0, label: `库位ID`, visible: false },
{ key: 1, label: `所属仓库`, visible: true },
{ key: 2, label: `租户编号`, visible: false },
{ key: 3, label: `库位编码`, visible: true },
{ key: 4, label: `库位状态`, visible: true },
{ key: 5, label: `创建部门`, visible: false },
{ key: 6, label: `创建人`, visible: false },
{ key: 7, label: `创建时间`, visible: true },
{ key: 8, label: `更新人`, visible: false },
{ key: 9, label: `更新时间`, visible: true }
]);
const initFormData: BaseLocationForm = {
locationId: undefined,
warehouseId: undefined,
locationCode: undefined,
activeFlag: undefined
};
const data = reactive<PageData<BaseLocationForm, BaseLocationQuery>>({
form: { ...initFormData },
queryParams: {
pageNum: 1,
pageSize: 10,
warehouseId: undefined,
locationCode: undefined,
activeFlag: undefined,
params: {}
},
rules: {
locationId: [{ required: true, message: '库位ID不能为空', trigger: 'blur' }]
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询库位信息列表 */
const getList = async () => {
loading.value = true;
const res = await listBaseLocation(queryParams.value);
baseLocationList.value = res.rows;
total.value = res.total;
loading.value = false;
};
/** 取消按钮 */
const cancel = () => {
reset();
dialog.visible = false;
};
/** 表单重置 */
const reset = () => {
form.value = { ...initFormData };
baseLocationFormRef.value?.resetFields();
};
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
getList();
};
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value?.resetFields();
handleQuery();
};
/** 多选框选中数据 */
const handleSelectionChange = (selection: BaseLocationVO[]) => {
ids.value = selection.map((item) => item.locationId);
single.value = selection.length != 1;
multiple.value = !selection.length;
};
/** 新增按钮操作 */
const handleAdd = () => {
reset();
dialog.visible = true;
dialog.title = '添加库位信息';
};
/** 修改按钮操作 */
const handleUpdate = async (row?: BaseLocationVO) => {
reset();
const _locationId = row?.locationId || ids.value[0];
const res = await getBaseLocation(_locationId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = '修改库位信息';
};
/** 提交按钮 */
const submitForm = () => {
baseLocationFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
if (form.value.locationId) {
await updateBaseLocation(form.value).finally(() => (buttonLoading.value = false));
} else {
await addBaseLocation(form.value).finally(() => (buttonLoading.value = false));
}
proxy?.$modal.msgSuccess('操作成功');
dialog.visible = false;
await getList();
}
});
};
/** 删除按钮操作 */
const handleDelete = async (row?: BaseLocationVO) => {
const _locationIds = row?.locationId || ids.value;
await proxy?.$modal.confirm('是否确认删除库位信息编号为"' + _locationIds + '"的数据项?').finally(() => (loading.value = false));
await delBaseLocation(_locationIds);
proxy?.$modal.msgSuccess('删除成功');
await getList();
};
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download(
'wms/baseLocation/export',
{
...queryParams.value
},
`baseLocation_${new Date().getTime()}.xlsx`
);
};
const getWarehouseList = async () => {
const res = await getWmsWarehouseInfoList();
warehouseList.value = res.data;
};
onMounted(() => {
getList();
getWarehouseList();
});
</script>

@ -0,0 +1,321 @@
<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" label-width="100px">
<el-form-item label="仓库名称" prop="warehouseName">
<el-input v-model="queryParams.warehouseName" placeholder="请输入仓库名称" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="仓库状态" prop="activeFlag">
<el-select v-model="queryParams.activeFlag" placeholder="请选择仓库状态" clearable>
<el-option v-for="dict in use_state" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</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="['wms:warehouseInfo:add']"> </el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['wms:warehouseInfo:edit']"
>修改
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['wms:warehouseInfo:remove']"
>删除
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['wms:warehouseInfo: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" border :data="warehouseInfoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="仓库ID" align="center" prop="warehouseId" v-if="columns[0].visible" />
<el-table-column label="租户编号" align="center" prop="tenantId" v-if="columns[1].visible" />
<el-table-column label="仓库编码" align="center" prop="warehouseCode" v-if="columns[2].visible" />
<el-table-column label="仓库名称" align="center" prop="warehouseName" v-if="columns[3].visible" />
<el-table-column label="仓库类型" align="center" prop="warehouseType" v-if="columns[4].visible">
<template #default="scope">
<dict-tag :options="warehouse_type" :value="scope.row.warehouseType" />
</template>
</el-table-column>
<el-table-column label="所属部门ID" align="center" prop="deptName" v-if="columns[5].visible" />
<el-table-column label="仓库负责人" align="center" prop="warehouseManager" v-if="columns[6].visible" />
<el-table-column label="备注" align="center" prop="remark" v-if="columns[7].visible" />
<el-table-column label="仓库状态" align="center" prop="activeFlag" v-if="columns[8].visible">
<template #default="scope">
<dict-tag :options="use_state" :value="scope.row.activeFlag" />
</template>
</el-table-column>
<el-table-column label="删除标志" align="center" prop="delFlag" v-if="columns[9].visible">
<template #default="scope">
<dict-tag :options="active_flag" :value="scope.row.delFlag" />
</template>
</el-table-column>
<el-table-column label="创建部门" align="center" prop="createDept" v-if="columns[10].visible" />
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[11].visible" />
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[12].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[13].visible" />
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[14].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" fixed="right" 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="['wms:warehouseInfo:edit']"></el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['wms:warehouseInfo: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="warehouseInfoFormRef" :model="form" :rules="rules" label-width="120px">
<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="warehouseType">
<el-select v-model="form.warehouseType" placeholder="请选择仓库类型" clearable filterable>
<el-option v-for="dict in warehouse_type" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="所属部门" prop="deptId">
<el-select v-model="form.deptId" placeholder="请选择所属部门" clearable filterable>
<el-option v-for="item in deptInfoList" :key="item.deptId" :label="item.deptName" :value="item.deptId" />
</el-select>
</el-form-item>
<el-form-item label="仓库负责人" prop="warehouseManager">
<el-input v-model="form.warehouseManager" placeholder="请输入仓库负责人" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-form-item label="仓库状态" prop="activeFlag">
<el-select v-model="form.activeFlag" placeholder="请选择仓库状态">
<el-option v-for="dict in use_state" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
</el-select>
</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="WarehouseInfo" lang="ts">
import { addWarehouseInfo, delWarehouseInfo, getWarehouseInfo, listWarehouseInfo, updateWarehouseInfo } from '@/api/wms/warehouseInfo';
import { WarehouseInfoForm, WarehouseInfoQuery, WarehouseInfoVO } from '@/api/wms/warehouseInfo/types';
import { listDept } from '@/api/system/dept';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { active_flag } = toRefs<any>(proxy?.useDict('active_flag'));
const { use_state } = toRefs<any>(proxy?.useDict('use_state'));
const { warehouse_type } = toRefs<any>(proxy?.useDict('warehouse_type'));
const warehouseInfoList = ref<WarehouseInfoVO[]>([]);
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 deptInfoList = ref([]);
const queryFormRef = ref<ElFormInstance>();
const warehouseInfoFormRef = ref<ElFormInstance>();
const dialog = reactive<DialogOption>({
visible: false,
title: ''
});
//
const columns = ref<FieldOption[]>([
{ key: 0, label: `仓库ID`, visible: false },
{ key: 1, label: `租户编号`, visible: false },
{ key: 2, label: `仓库编码`, visible: true },
{ key: 3, label: `仓库名称`, visible: true },
{ key: 4, label: `仓库类型`, visible: true },
{ key: 5, label: `所属部门ID`, visible: true },
{ key: 6, label: `仓库负责人`, visible: true },
{ key: 7, label: `备注`, visible: true },
{ key: 8, label: `仓库状态`, visible: true },
{ key: 9, label: `删除标志`, visible: false },
{ key: 10, label: `创建部门`, visible: false },
{ key: 11, label: `创建人`, visible: false },
{ key: 12, label: `创建时间`, visible: true },
{ key: 13, label: `更新人`, visible: false },
{ key: 14, label: `更新时间`, visible: true }
]);
const initFormData: WarehouseInfoForm = {
warehouseId: undefined,
warehouseCode: undefined,
warehouseName: undefined,
warehouseType: undefined,
deptId: undefined,
warehouseManager: undefined,
remark: undefined,
activeFlag: undefined
};
const data = reactive<PageData<WarehouseInfoForm, WarehouseInfoQuery>>({
form: { ...initFormData },
queryParams: {
pageNum: 1,
pageSize: 10,
warehouseName: undefined,
warehouseType: undefined,
activeFlag: undefined,
params: {}
},
rules: {
deptId: [{ required: true, message: '请选择所属部门', trigger: 'blur' }],
warehouseType: [{ required: true, message: '请选择仓库类型', trigger: 'blur' }]
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询部门信息下拉框结构 */
const getDeptInfoListSelect = async () => {
const res = await listDept();
deptInfoList.value = res.data;
};
/** 查询仓库信息列表 */
const getList = async () => {
loading.value = true;
const res = await listWarehouseInfo(queryParams.value);
warehouseInfoList.value = res.rows;
total.value = res.total;
loading.value = false;
};
/** 取消按钮 */
const cancel = () => {
reset();
dialog.visible = false;
};
/** 表单重置 */
const reset = () => {
form.value = { ...initFormData };
warehouseInfoFormRef.value?.resetFields();
};
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
getList();
};
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value?.resetFields();
handleQuery();
};
/** 多选框选中数据 */
const handleSelectionChange = (selection: WarehouseInfoVO[]) => {
ids.value = selection.map((item) => item.warehouseId);
single.value = selection.length != 1;
multiple.value = !selection.length;
};
/** 新增按钮操作 */
const handleAdd = () => {
reset();
dialog.visible = true;
dialog.title = '添加仓库信息';
};
/** 修改按钮操作 */
const handleUpdate = async (row?: WarehouseInfoVO) => {
reset();
const _warehouseId = row?.warehouseId || ids.value[0];
const res = await getWarehouseInfo(_warehouseId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = '修改仓库信息';
};
/** 提交按钮 */
const submitForm = () => {
warehouseInfoFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
if (form.value.warehouseId) {
await updateWarehouseInfo(form.value).finally(() => (buttonLoading.value = false));
} else {
await addWarehouseInfo(form.value).finally(() => (buttonLoading.value = false));
}
proxy?.$modal.msgSuccess('操作成功');
dialog.visible = false;
await getList();
}
});
};
/** 删除按钮操作 */
const handleDelete = async (row?: WarehouseInfoVO) => {
const _warehouseIds = row?.warehouseId || ids.value;
await proxy?.$modal.confirm('是否确认删除仓库信息编号为"' + _warehouseIds + '"的数据项?').finally(() => (loading.value = false));
await delWarehouseInfo(_warehouseIds);
proxy?.$modal.msgSuccess('删除成功');
await getList();
};
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download(
'wms/warehouseInfo/export',
{
...queryParams.value
},
`warehouseInfo_${new Date().getTime()}.xlsx`
);
};
onMounted(() => {
getList();
getDeptInfoListSelect(); //
});
</script>
Loading…
Cancel
Save