feat: 🚀 仓库关系和仓位找货优先级

This commit is contained in:
2025-10-22 16:03:19 +08:00
parent 173131d11c
commit f3bc8e6410
7 changed files with 195 additions and 0 deletions

View File

View File

@@ -0,0 +1,15 @@
export const BUTTON = [
{
text: "保存",
permission: "foundationSetGoodsBtnSave",
type: "save",
props: {
type: "primary"
}
},
{
text: "预览(请先保存)",
permission: "foundationSetGoodsBtnPreview",
type: "preview"
}
];

View File

@@ -0,0 +1,10 @@
export const BUTTON = [
{
text: "新增",
permission: "foundationSetGoodsBtnAdd",
type: "add",
props: {
type: "primary"
}
}
];

View File

@@ -0,0 +1,4 @@
import { FORM_DATA, RULE_FORM } from "./search";
import { COLUMNS } from "./table";
import { BUTTON } from "./button";
export { FORM_DATA, RULE_FORM, COLUMNS, BUTTON };

View File

@@ -0,0 +1,30 @@
interface FormItem {
prop: string;
label?: string;
placeholder?: string;
type: string;
isCopy?: boolean;
optionProps?: any;
startPlaceholder?: string;
endPlaceholder?: string;
options?: any;
isArray?: boolean;
startDate?: string; //开始时间(传入后台需要的参数)
endDate?: string; //结束时间(传入后台需要的参数)
startProp?: string;
endProp?: string;
isInteger?: boolean;
}
export const FORM_DATA: FormItem[] = [
{
prop: "org_number",
placeholder: "请输入仓库",
type: "input",
label: "仓库: "
}
];
export const RULE_FORM = {
page: 1,
size: 50
};

View File

@@ -0,0 +1,41 @@
// import { RenderScope } from "@/components/ProTable/interface";
export const COLUMNS = [
{ type: "selection", fixed: "left", width: 40 },
{
align: "left",
fixed: true,
label: "金蝶仓库",
prop: "material_number",
width: 200
},
{
align: "left",
label: "金蝶子仓库",
prop: "sku",
fixed: true,
width: 200
},
{
align: "left",
label: "对应聚水潭仓库",
prop: "material_name",
width: 200
},
{
align: "left",
label: "对应领星仓库",
prop: "org_name",
width: 200
},
{
align: "left",
label: "更新人",
prop: "product_line"
},
{
align: "left",
label: "更新时间",
prop: "bar_code"
}
];

View File

@@ -0,0 +1,95 @@
<!-- 仓位找货优先级 -->
<template>
<div class="table-box">
<div style="padding-bottom: 16px">
<PermissionButton
:buttons="dataStore.buttons"
@handleButtonClickCallback="handleButtonClickCallback"
></PermissionButton>
</div>
<ProTable
ref="proTableRef"
:columns="dataStore.columns"
:request-api="getMaterialListApi"
:init-param="dataStore.initParam"
@selectionChange="selectionChange"
>
<template v-slot:search>
<SearchForm
@search="handleSearch"
@reset="handleReset"
:searchParams="dataStore.initParam"
:formData="dataStore.formData"
/>
</template>
</ProTable>
</div>
</template>
<script setup lang="ts" name="foundationSetWarehouse">
import ProTable from "@/components/ProTable/index.vue";
import SearchForm from "@/components/SearchForm/index.vue";
import PermissionButton from "@/components/PermissionButton/index.vue";
import { getMaterialListApi } from "@/api/modules/foundationMaterial";
// import { useMsg } from "@/hooks/useMsg";
import { RULE_FORM, FORM_DATA, COLUMNS, BUTTON } from "./constant/list/index";
//表格TS
import { ProTableInstance } from "@/components/ProTable/interface";
//深拷贝方法
import { cloneDeep } from "lodash-es";
// 获取 ProTable 元素,调用其获取刷新数据方法(还能获取到当前查询参数,方便导出携带参数)
const proTableRef = ref<ProTableInstance>();
// 数据源
const dataStore = reactive<any>({
columns: COLUMNS, //列表配置项
initParam: cloneDeep(RULE_FORM), // 初始化搜索条件|重置搜索条件
formData: FORM_DATA, //搜索配置项
buttons: cloneDeep(BUTTON),
labelWidth: "120px",
dialogVisible: false, //弹窗
selectionList: [] //选中表格的行
});
// 表格选择事件
const selectionChange = (selection: any) => {
dataStore.selectionList = selection;
};
//顶部按钮点击事件
const handleButtonClickCallback = (item: any) => {
console.log(item);
};
//搜索
const handleSearch = async (params: any) => {
dataStore.initParam = cloneDeep(params);
//这里需要等到表格刷新以后才去请求
nextTick(() => {
proTableRef?.value!.getTableList();
});
};
//重置
const handleReset = () => {
dataStore.initParam = cloneDeep(RULE_FORM);
//这里需要等到表格刷新以后才去请求
nextTick(() => {
proTableRef?.value!.getTableList();
});
};
</script>
<style scope lang="scss">
.down-dialog-box {
.el-dialog__body {
padding: 0 16px 40px;
}
}
.el-dialog .el-dialog__header {
padding: 8px 0;
font-weight: bold;
}
</style>