<template>
|
<div class="app-container product-view">
|
<div class="left">
|
<div>
|
<el-input v-model="search"
|
style="width: 210px"
|
placeholder="输入关键字进行搜索"
|
@change="searchFilter"
|
@clear="searchFilter1"
|
clearable
|
prefix-icon="Search" />
|
<el-button type="primary"
|
@click="openProDia1('addOne')"
|
style="margin-left: 10px">新增产品大类</el-button>
|
<el-button type="primary"
|
@click="getloadData"
|
style="margin-left: 10px">拉取数据</el-button>
|
</div>
|
<div ref="containerRef">
|
<el-tree ref="tree"
|
v-loading="treeLoad"
|
:data="list"
|
@node-click="handleNodeClick"
|
:expand-on-click-node="false"
|
:default-expanded-keys="expandedKeys"
|
:filter-node-method="filterNode"
|
:props="{ children: 'children', label: 'label' }"
|
highlight-current
|
node-key="id"
|
class="product-tree-scroll">
|
<template #default="{ node, data }">
|
<div class="custom-tree-node">
|
<span class="tree-node-content">
|
<el-icon class="tree-icon">
|
<component :is="node.expanded ? 'FolderOpened' : 'Folder'" />
|
</el-icon>
|
<span class="tree-node-label">{{ data.label }}</span>
|
</span>
|
<div v-if="data.isLeaf">
|
<el-button type="primary"
|
link
|
@click="openProDia('edit', data)">
|
编辑
|
</el-button>
|
<el-button v-if="!node.childNodes.length"
|
style="margin-left: 4px"
|
type="danger"
|
link
|
@click="remove(node, data)">
|
删除
|
</el-button>
|
</div>
|
<div v-else>
|
<!-- 大类 -->
|
<el-button type="primary"
|
link
|
@click="openProDia1('edit', data)">
|
编辑
|
</el-button>
|
<el-button type="primary"
|
link
|
@click="openProDia('add', data)">
|
添加产品
|
</el-button>
|
<el-button style="margin-left: 4px"
|
type="danger"
|
v-if="!node.childNodes.length"
|
link
|
@click="remove1(node, data)">
|
删除
|
</el-button>
|
</div>
|
</div>
|
</template>
|
</el-tree>
|
</div>
|
</div>
|
<div class="right">
|
<div style="margin-bottom: 10px; display: flex; align-items: center; gap: 10px"
|
v-if="isShowButton">
|
<el-button type="primary"
|
@click="openModelDia('add')">
|
新增规格型号
|
</el-button>
|
<ImportExcel :product-id="currentId"
|
@uploadSuccess="getModelList" />
|
<el-input v-model="specification"
|
placeholder="规格型号"
|
style="width: 150px"
|
clearable
|
@change="getModelList" />
|
<el-input v-model="materialCode"
|
placeholder="物料编号"
|
style="width: 150px"
|
clearable
|
@change="getModelList" />
|
<el-button type="danger"
|
@click="handleDelete"
|
plain>
|
删除
|
</el-button>
|
</div>
|
<PIMTable rowKey="id"
|
:column="tableColumn"
|
:tableData="tableData"
|
:page="page"
|
:isSelection="true"
|
@selection-change="handleSelectionChange"
|
:tableLoading="tableLoading"
|
@pagination="pagination"></PIMTable>
|
</div>
|
<el-dialog v-model="productDia"
|
title="产品"
|
width="400px"
|
@keydown.enter.prevent>
|
<el-form :model="form"
|
label-width="140px"
|
label-position="top"
|
:rules="rules"
|
ref="formRef">
|
<el-row :gutter="30">
|
<el-col :span="24">
|
<el-form-item label="产品名称:"
|
prop="materialName">
|
<el-input v-model="form.materialName"
|
placeholder="请输入产品名称"
|
maxlength="20"
|
show-word-limit
|
clearable
|
@keydown.enter.prevent />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<el-row :gutter="30">
|
<el-col :span="24">
|
<el-form-item label="存货类别:"
|
prop="inventoryCategoryId">
|
<el-select v-model="form.inventoryCategoryId"
|
placeholder="请选择存货类别"
|
clearable
|
filterable
|
style="width: 100%">
|
<el-option v-for="item in inventoryCategoryList"
|
:key="item.id"
|
:label="item.configName"
|
:value="item.id" />
|
</el-select>
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<el-row :gutter="30">
|
<el-col :span="24">
|
<el-form-item label="物料类型:"
|
prop="materialTypeId">
|
<el-select v-model="form.materialTypeId"
|
placeholder="请选择物料类型"
|
clearable
|
filterable
|
style="width: 100%">
|
<el-option v-for="item in materialTypeList"
|
:key="item.id"
|
:label="item.configName"
|
:value="item.id" />
|
</el-select>
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<el-row :gutter="30">
|
<el-col :span="24">
|
<el-form-item label="基本单位:"
|
prop="baseUnit">
|
<el-input v-model="form.baseUnit"
|
placeholder="请输入基本单位"
|
clearable
|
@keydown.enter.prevent />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<el-row :gutter="30">
|
<el-col :span="24">
|
<el-form-item label="备注:">
|
<el-input v-model="form.remark"
|
placeholder="请输入备注"
|
type="textarea"
|
:rows="3"
|
clearable
|
@keydown.enter.prevent />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
</el-form>
|
<template #footer>
|
<div class="dialog-footer">
|
<el-button type="primary"
|
@click="submitForm">确认</el-button>
|
<el-button @click="closeProDia">取消</el-button>
|
</div>
|
</template>
|
</el-dialog>
|
<el-dialog v-model="modelDia"
|
title="规格型号"
|
width="400px"
|
@close="closeModelDia"
|
@keydown.enter.prevent>
|
<el-form :model="modelForm"
|
label-width="140px"
|
label-position="top"
|
:rules="modelRules"
|
ref="modelFormRef">
|
<el-row>
|
<el-col :span="24">
|
<el-form-item label="规格型号:"
|
prop="specification">
|
<el-input v-model="modelForm.specification"
|
placeholder="请输入规格型号"
|
clearable
|
@keydown.enter.prevent />
|
</el-form-item>
|
</el-col>
|
<el-col :span="24">
|
<el-form-item label="物料编码:"
|
prop="materialCode">
|
<el-input v-model="modelForm.materialCode"
|
placeholder="请输入物料编码"
|
clearable
|
@keydown.enter.prevent />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
<el-row>
|
<el-col :span="24">
|
<el-form-item label="供应方式:"
|
prop="supplyType">
|
<el-select v-model="modelForm.supplyType"
|
placeholder="请选择供应方式"
|
clearable
|
filterable
|
style="width: 100%">
|
<el-option label="自制"
|
value="自制" />
|
<el-option label="外购"
|
value="外购" />
|
</el-select>
|
</el-form-item>
|
</el-col>
|
</el-row>
|
</el-form>
|
<template #footer>
|
<div class="dialog-footer">
|
<el-button type="primary"
|
@click="submitModelForm">确认</el-button>
|
<el-button @click="closeModelDia">取消</el-button>
|
</div>
|
</template>
|
</el-dialog>
|
<el-dialog v-model="configDia"
|
title="产品大类"
|
width="400px"
|
@keydown.enter.prevent>
|
<el-form :model="configForm"
|
label-width="140px"
|
label-position="top"
|
:rules="configRules"
|
ref="configFormRef">
|
<el-row :gutter="30">
|
<el-col :span="24">
|
<el-form-item label="配置名称:"
|
prop="configName">
|
<el-input v-model="configForm.configName"
|
placeholder="请输入配置名称"
|
maxlength="20"
|
show-word-limit
|
clearable
|
@keydown.enter.prevent />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
</el-form>
|
<template #footer>
|
<div class="dialog-footer">
|
<el-button type="primary"
|
@click="submitConfigForm">确认</el-button>
|
<el-button @click="closeConfigDia">取消</el-button>
|
</div>
|
</template>
|
</el-dialog>
|
</div>
|
</template>
|
|
<script setup>
|
import { ref } from "vue";
|
import { ElMessageBox } from "element-plus";
|
import {
|
addOrEditProduct,
|
updateOrEditProduct,
|
getinventoryCategoryList,
|
getmaterialTypeList,
|
addOrEditProductModel,
|
updateOrEditProductModel,
|
delProduct,
|
delProductModel,
|
modelListPage,
|
productTreeList,
|
productTreeListQuery,
|
addOrEditProductConfig,
|
updateOrEditProductConfig,
|
delProductConfig,
|
loadData,
|
} from "@/api/basicData/newProduct.js";
|
import ImportExcel from "./ImportExcel/index.vue";
|
|
const { proxy } = getCurrentInstance();
|
const tree = ref(null);
|
const containerRef = ref(null);
|
|
const productDia = ref(false);
|
const modelDia = ref(false);
|
const configDia = ref(false);
|
const modelOperationType = ref("");
|
const configOperationType = ref("");
|
const search = ref("");
|
const currentId = ref("");
|
const currentParentId = ref("");
|
const operationType = ref("");
|
const treeLoad = ref(false);
|
const list = ref([]);
|
const expandedKeys = ref([]);
|
const inventoryCategoryList = ref([]);
|
const materialTypeList = ref([]);
|
const specification = ref("");
|
const materialCode = ref("");
|
|
const getloadData = () => {
|
loadData()
|
.then(res => {
|
getInventoryCategoryList();
|
getMaterialTypeList();
|
getProductTreeList();
|
tableData.value = [];
|
isShowButton.value = false;
|
})
|
.catch(err => {
|
console.error("拉取失败:", err);
|
});
|
};
|
|
// 获取存货类别列表
|
const getInventoryCategoryList = () => {
|
getinventoryCategoryList()
|
.then(res => {
|
inventoryCategoryList.value = res.data.map(item => ({
|
id: item.id,
|
configName: item.configName,
|
}));
|
})
|
.catch(err => {
|
console.error("获取存货类别失败:", err);
|
});
|
};
|
|
// 获取物料类型列表
|
const getMaterialTypeList = () => {
|
getmaterialTypeList()
|
.then(res => {
|
materialTypeList.value = res.data.map(item => ({
|
id: item.id,
|
configName: item.configName,
|
}));
|
})
|
.catch(err => {
|
console.error("获取物料类型失败:", err);
|
});
|
};
|
const tableColumn = ref([
|
{
|
label: "规格型号",
|
prop: "materialName",
|
},
|
{
|
label: "规格",
|
prop: "specification",
|
},
|
{
|
label: "物料编码",
|
prop: "materialCode",
|
},
|
{
|
label: "单位",
|
prop: "baseUnit",
|
},
|
{
|
dataType: "action",
|
label: "操作",
|
align: "center",
|
operation: [
|
{
|
name: "编辑",
|
type: "text",
|
clickFun: row => {
|
openModelDia("edit", row);
|
},
|
},
|
],
|
},
|
]);
|
const tableData = ref([]);
|
const tableLoading = ref(false);
|
const isShowButton = ref(false);
|
const selectedRows = ref([]);
|
const page = reactive({
|
current: 1,
|
size: 10,
|
total: 0,
|
});
|
|
const data = reactive({
|
form: {
|
materialTypeId: null,
|
inventoryCategoryId: null,
|
materialName: "",
|
baseUnit: "",
|
remark: "",
|
},
|
rules: {
|
materialName: [
|
{ required: true, message: "请输入", trigger: "blur" },
|
{ max: 20, message: "产品名称不能超过20个字符", trigger: "blur" },
|
],
|
inventoryCategoryId: [
|
{ required: true, message: "请选择", trigger: "change" },
|
],
|
baseUnit: [{ required: true, message: "请输入", trigger: "blur" }],
|
},
|
modelForm: {
|
specification: "",
|
supplyType: "",
|
materialCode: "",
|
id: null,
|
},
|
modelRules: {
|
specification: [{ required: true, message: "请输入", trigger: "blur" }],
|
supplyType: [{ required: true, message: "请选择", trigger: "change" }],
|
materialCode: [{ required: true, message: "请输入", trigger: "blur" }],
|
},
|
configForm: {
|
configName: "",
|
type: 1,
|
id: null,
|
},
|
configRules: {
|
configName: [
|
{ required: true, message: "请输入", trigger: "blur" },
|
{ max: 20, message: "配置名称不能超过20个字符", trigger: "blur" },
|
],
|
},
|
});
|
const { form, rules, modelForm, modelRules, configForm, configRules } =
|
toRefs(data);
|
// 查询产品树
|
const getProductTreeList = () => {
|
treeLoad.value = true;
|
productTreeList({ type: 2 })
|
.then(res => {
|
// 转换新的数据格式
|
const newList = [];
|
expandedKeys.value = [];
|
for (const category of res.data) {
|
// 添加分类节点(只返回一层数据,不包含子节点)
|
const categoryNode = {
|
label: category.configName,
|
id: category.configId,
|
isLeaf: false,
|
children: [], // 初始化为空数组,点击时再加载
|
};
|
newList.push(categoryNode);
|
}
|
list.value = newList;
|
treeLoad.value = false;
|
})
|
.catch(err => {
|
treeLoad.value = false;
|
});
|
};
|
const searchFilter1 = () => {
|
getProductTreeList();
|
};
|
// 过滤产品树
|
const searchFilter = () => {
|
if (!search.value) {
|
// 如果搜索关键字为空,重新加载原始数据
|
// getProductTreeList();
|
return;
|
}
|
|
treeLoad.value = true;
|
// 调用 productTreeListQuery 接口进行搜索
|
productTreeListQuery({ materialName: search.value })
|
.then(res => {
|
// 处理返回的数据
|
const newList = [];
|
if (res.data && res.data.length > 0) {
|
for (const category of res.data) {
|
for (const item of list.value) {
|
if (item.id == category.configId) {
|
item.children = (category.materialList || []).map(item => ({
|
id: item.id,
|
isLeaf: true,
|
label: item.materialName,
|
inventoryCategoryId: item.inventoryCategoryId,
|
materialTypeId: item.materialTypeId,
|
remark: item.remark,
|
baseUnit: item.baseUnit,
|
}));
|
break;
|
}
|
}
|
// 转换数据格式
|
// const categoryNode = {
|
// label: category.configName,
|
// id: category.configId,
|
// isLeaf: false,
|
// children: (category.materialList || []).map(item => ({
|
// id: item.id,
|
// isLeaf: true,
|
// label: item.materialName,
|
// inventoryCategoryId: item.inventoryCategoryId,
|
// materialTypeId: item.materialTypeId,
|
// remark: item.remark,
|
// baseUnit: item.baseUnit,
|
// })),
|
// };
|
// newList.push(categoryNode);
|
}
|
}
|
// 使用 el-tree 的内置过滤功能搜索
|
proxy.$refs.tree.filter(search.value);
|
treeLoad.value = false;
|
})
|
.catch(err => {
|
treeLoad.value = false;
|
});
|
};
|
// 打开产品弹框
|
const openProDia = (type, data) => {
|
operationType.value = type;
|
productDia.value = true;
|
// 重置表单
|
form.value = {
|
materialName: "",
|
inventoryCategoryId: null,
|
baseUnit: "",
|
remark: "",
|
materialTypeId: null,
|
};
|
console.log(data);
|
if (type === "edit" && data) {
|
// 编辑模式,回填数据
|
form.value.materialName = data.label || "";
|
form.value.inventoryCategoryId = data.inventoryCategoryId || null;
|
form.value.baseUnit = data.baseUnit || "";
|
form.value.remark = data.remark || "";
|
form.value.materialTypeId = data.materialTypeId || null;
|
form.value.id = data.id || null;
|
} else {
|
form.value.materialTypeId = data.id || null;
|
}
|
};
|
// 打开产品大类弹框
|
const openProDia1 = (type, data) => {
|
configOperationType.value = type;
|
configDia.value = true;
|
// 重置表单
|
configForm.value = {
|
configName: "",
|
type: 1,
|
id: null,
|
};
|
if (type === "edit" && data) {
|
// 编辑模式,回填数据
|
configForm.value.configName = data.label || "";
|
configForm.value.id = data.id || null;
|
}
|
};
|
// 打开规格型号弹框
|
const openModelDia = (type, data) => {
|
modelOperationType.value = type;
|
modelDia.value = true;
|
// 重置所有字段
|
modelForm.value.specification = "";
|
modelForm.value.supplyType = "";
|
modelForm.value.id = null;
|
modelForm.value.materialCode = null;
|
|
if (type === "edit" && data) {
|
// 编辑模式,回填数据
|
modelForm.value.specification = data.specification || "";
|
modelForm.value.supplyType = data.supplyType || "";
|
modelForm.value.id = data.skuId || null;
|
modelForm.value.materialCode = data.materialCode || null;
|
}
|
};
|
// 提交产品名称修改
|
const submitForm = () => {
|
proxy.$refs.formRef.validate(valid => {
|
if (valid) {
|
// 构建提交参数
|
// const params = {
|
// materialTypeId: null,
|
// inventoryCategoryId: form.value.inventoryCategoryId,
|
// materialName: form.value.materialName,
|
// baseUnit: form.value.baseUnit,
|
// remark: form.value.remark,
|
// };
|
|
// if (operationType.value === "add") {
|
// // 添加子级,传父级的id作为 materialTypeId
|
// params.materialTypeId = currentId.value;
|
// } else if (operationType.value === "addOne") {
|
// // 添加一级,materialTypeId 为 null
|
// params.materialTypeId = null;
|
// } else {
|
// // 编辑,传当前id作为 materialTypeId
|
// params.materialTypeId = currentId.value;
|
// }
|
console.log(form.value);
|
console.log(operationType.value);
|
if (operationType.value != "edit") {
|
addOrEditProduct(form.value).then(res => {
|
proxy.$modal.msgSuccess("提交成功");
|
closeProDia();
|
getProductTreeList();
|
});
|
} else {
|
updateOrEditProduct(form.value).then(res => {
|
proxy.$modal.msgSuccess("提交成功");
|
closeProDia();
|
getProductTreeList();
|
});
|
}
|
}
|
});
|
};
|
// 关闭产品弹框
|
const closeProDia = () => {
|
proxy.$refs.formRef.resetFields();
|
// 手动重置非表单字段
|
form.value.materialTypeId = null;
|
form.value.remark = "";
|
productDia.value = false;
|
};
|
// 提交产品大类修改
|
const submitConfigForm = () => {
|
proxy.$refs.configFormRef.validate(valid => {
|
if (valid) {
|
const params = {
|
configName: configForm.value.configName,
|
type: 1,
|
};
|
if (configOperationType.value === "edit") {
|
params.id = configForm.value.id;
|
updateOrEditProductConfig(params).then(res => {
|
proxy.$modal.msgSuccess("提交成功");
|
closeConfigDia();
|
getProductTreeList();
|
getMaterialTypeList();
|
});
|
} else {
|
addOrEditProductConfig(params).then(res => {
|
proxy.$modal.msgSuccess("提交成功");
|
closeConfigDia();
|
getProductTreeList();
|
getMaterialTypeList();
|
});
|
}
|
}
|
});
|
};
|
// 关闭产品大类弹框
|
const closeConfigDia = () => {
|
proxy.$refs.configFormRef.resetFields();
|
configDia.value = false;
|
};
|
// 删除产品大类
|
const remove1 = (node, data) => {
|
let ids = [];
|
ids.push(data.id);
|
ElMessageBox.confirm("选中的内容将被删除,是否确认删除?", "删除提示", {
|
confirmButtonText: "确认",
|
cancelButtonText: "取消",
|
type: "warning",
|
})
|
.then(() => {
|
tableLoading.value = true;
|
delProductConfig(ids)
|
.then(res => {
|
proxy.$modal.msgSuccess("删除成功");
|
getProductTreeList();
|
})
|
.finally(() => {
|
tableLoading.value = false;
|
});
|
})
|
.catch(() => {
|
proxy.$modal.msg("已取消");
|
});
|
};
|
// 删除产品
|
const remove = (node, data) => {
|
let ids = [];
|
ids.push(data.id);
|
ElMessageBox.confirm("选中的内容将被删除,是否确认删除?", "删除提示", {
|
confirmButtonText: "确认",
|
cancelButtonText: "取消",
|
type: "warning",
|
})
|
.then(() => {
|
tableLoading.value = true;
|
delProduct(ids)
|
.then(res => {
|
proxy.$modal.msgSuccess("删除成功");
|
getProductTreeList();
|
})
|
.finally(() => {
|
tableLoading.value = false;
|
});
|
})
|
.catch(() => {
|
proxy.$modal.msg("已取消");
|
});
|
};
|
// 选择产品
|
const handleNodeClick = (val, node, el) => {
|
// 点击非叶子节点时,加载子节点数据
|
if (!val.isLeaf) {
|
// 调用 productTreeListQuery 接口获取子节点数据
|
// treeLoad.value = true;
|
productTreeListQuery({ materialTypeId: val.id })
|
.then(res => {
|
// 处理返回的数据
|
if (res.data && res.data.length > 0) {
|
const materialList = res.data[0].materialList || [];
|
// 转换子节点数据格式
|
const children = materialList.map(item => ({
|
id: item.id,
|
isLeaf: true,
|
label: item.materialName,
|
inventoryCategoryId: item.inventoryCategoryId,
|
materialTypeId: item.materialTypeId,
|
remark: item.remark,
|
baseUnit: item.baseUnit,
|
}));
|
// 更新节点的子节点
|
val.children = children;
|
// 展开节点
|
node.expanded = true;
|
}
|
// treeLoad.value = false;
|
})
|
.catch(err => {
|
// treeLoad.value = false;
|
});
|
return;
|
}
|
// 判断是否为叶子节点
|
isShowButton.value = !(val.children && val.children.length > 0);
|
// 只有叶子节点才执行以下逻辑
|
currentId.value = val.id;
|
currentParentId.value = val.parentId;
|
getModelList();
|
};
|
|
// 提交规格型号修改
|
const submitModelForm = () => {
|
proxy.$refs.modelFormRef.validate(valid => {
|
if (valid) {
|
// 构建提交参数
|
const params = {
|
materialId: currentId.value,
|
specification: modelForm.value.specification,
|
materialCode: modelForm.value.materialCode,
|
supplyType: modelForm.value.supplyType,
|
};
|
if (modelOperationType.value === "add") {
|
// 添加规格型号
|
addOrEditProductModel(params).then(res => {
|
proxy.$modal.msgSuccess("提交成功");
|
closeModelDia();
|
getModelList();
|
});
|
} else if (modelOperationType.value === "edit") {
|
// 修改规格型号
|
params.id = modelForm.value.id;
|
updateOrEditProductModel(params).then(res => {
|
proxy.$modal.msgSuccess("提交成功");
|
closeModelDia();
|
getModelList();
|
});
|
}
|
}
|
});
|
};
|
// 关闭型号弹框
|
const closeModelDia = () => {
|
proxy.$refs.modelFormRef.resetFields();
|
modelDia.value = false;
|
};
|
// 表格选择数据
|
const handleSelectionChange = selection => {
|
selectedRows.value = selection;
|
};
|
|
// 查询规格型号
|
const pagination = obj => {
|
page.current = obj.page;
|
page.size = obj.limit;
|
getModelList();
|
};
|
const getModelList = () => {
|
if (!currentId.value) {
|
return;
|
}
|
tableLoading.value = true;
|
modelListPage({
|
materialId: currentId.value,
|
current: page.current,
|
size: page.size,
|
specification: specification.value,
|
materialCode: materialCode.value,
|
}).then(res => {
|
console.log("res", res);
|
tableData.value = res.data.records || [];
|
page.total = res.data.total;
|
tableLoading.value = false;
|
});
|
};
|
// 删除规格型号
|
const handleDelete = () => {
|
let ids = [];
|
if (selectedRows.value.length > 0) {
|
ids = selectedRows.value.map(item => item.skuId);
|
} else {
|
proxy.$modal.msgWarning("请选择数据");
|
return;
|
}
|
ElMessageBox.confirm("选中的内容将被删除,是否确认删除?", "删除提示", {
|
confirmButtonText: "确认",
|
cancelButtonText: "取消",
|
type: "warning",
|
})
|
.then(() => {
|
tableLoading.value = true;
|
delProductModel(ids)
|
.then(res => {
|
proxy.$modal.msgSuccess("删除成功");
|
getModelList();
|
})
|
.finally(() => {
|
tableLoading.value = false;
|
});
|
})
|
.catch(() => {
|
proxy.$modal.msg("已取消");
|
});
|
};
|
// 调用tree过滤方法 中文英过滤
|
const filterNode = (value, data, node) => {
|
if (!value) {
|
//如果数据为空,则返回true,显示所有的数据项
|
return true;
|
}
|
// 查询列表是否有匹配数据,将值小写,匹配英文数据
|
let val = value.toLowerCase();
|
return chooseNode(val, data, node); // 调用过滤二层方法
|
};
|
// 过滤父节点 / 子节点 (如果输入的参数是父节点且能匹配,则返回该节点以及其下的所有子节点;如果参数是子节点,则返回该节点的父节点。name是中文字符,enName是英文字符.
|
const chooseNode = (value, data, node) => {
|
if (data.label.indexOf(value) !== -1) {
|
return true;
|
}
|
const level = node.level;
|
// 如果传入的节点本身就是一级节点就不用校验了
|
if (level === 1) {
|
return false;
|
}
|
// 先取当前节点的父节点
|
let parentData = node.parent;
|
// 遍历当前节点的父节点
|
let index = 0;
|
while (index < level - 1) {
|
// 如果匹配到直接返回,此处name值是中文字符,enName是英文字符。判断匹配中英文过滤
|
if (parentData.data.label.indexOf(value) !== -1) {
|
return true;
|
}
|
// 否则的话再往上一层做匹配
|
parentData = parentData.parent;
|
index++;
|
}
|
// 没匹配到返回false
|
return false;
|
};
|
// 页面加载时获取数据
|
getInventoryCategoryList();
|
getMaterialTypeList();
|
getProductTreeList();
|
</script>
|
|
<style scoped>
|
.product-view {
|
display: flex;
|
min-height: 100vh;
|
background-color: #f5f7fa;
|
padding: 20px;
|
gap: 20px;
|
}
|
.left {
|
width: 465px;
|
min-width: 465px;
|
background: #ffffff;
|
border-radius: 8px;
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
overflow: hidden;
|
display: flex;
|
flex-direction: column;
|
}
|
.left > div:first-child {
|
padding: 16px;
|
border-bottom: 1px solid #e4e7ed;
|
background-color: #fafafa;
|
}
|
.left > div:last-child {
|
flex: 1;
|
overflow: hidden;
|
}
|
.right {
|
flex: 1;
|
min-width: 0;
|
background: #ffffff;
|
border-radius: 8px;
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
overflow: hidden;
|
display: flex;
|
flex-direction: column;
|
}
|
.right > div:first-child {
|
padding: 16px;
|
border-bottom: 1px solid #e4e7ed;
|
background-color: #fafafa;
|
}
|
.right > div:last-child {
|
flex: 1;
|
overflow: auto;
|
padding: 16px;
|
}
|
.custom-tree-node {
|
flex: 1;
|
min-width: 0;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
font-size: 14px;
|
padding: 8px 12px;
|
margin: 2px 0;
|
border-radius: 4px;
|
transition: all 0.3s ease;
|
}
|
.custom-tree-node:hover {
|
background-color: #f5f7fa;
|
}
|
.tree-node-content {
|
flex: 1;
|
min-width: 0;
|
display: flex;
|
align-items: center;
|
height: 100%;
|
overflow: hidden;
|
}
|
.tree-node-content .tree-icon {
|
flex-shrink: 0;
|
}
|
.tree-node-label {
|
overflow: hidden;
|
text-overflow: ellipsis;
|
white-space: nowrap;
|
font-weight: 500;
|
color: #303133;
|
}
|
.tree-icon {
|
color: #409eff;
|
font-size: 18px;
|
margin-right: 10px;
|
transition: color 0.3s ease;
|
}
|
.custom-tree-node:hover .tree-icon {
|
color: #66b1ff;
|
}
|
.product-tree-scroll {
|
height: calc(100vh - 240px);
|
overflow-y: auto;
|
scrollbar-width: thin;
|
scrollbar-color: #c0c4cc #f5f7fa;
|
}
|
.product-tree-scroll::-webkit-scrollbar {
|
width: 6px;
|
}
|
.product-tree-scroll::-webkit-scrollbar-track {
|
background: #f5f7fa;
|
border-radius: 3px;
|
}
|
.product-tree-scroll::-webkit-scrollbar-thumb {
|
background: #c0c4cc;
|
border-radius: 3px;
|
}
|
.product-tree-scroll::-webkit-scrollbar-thumb:hover {
|
background: #909399;
|
}
|
.el-button {
|
border-radius: 4px;
|
font-size: 13px;
|
}
|
.el-button--primary {
|
background-color: #fff;
|
border-color: #409eff;
|
color: #409eff;
|
}
|
.el-button--primary.is-link {
|
background-color: transparent;
|
border-color: transparent;
|
color: #409eff;
|
}
|
.el-button--primary.is-link:hover {
|
background-color: transparent;
|
border-color: transparent;
|
color: #0033ff;
|
}
|
.el-button--primary:hover {
|
background-color: #e3f1ff;
|
border-color: #66b1ff;
|
}
|
.el-input {
|
border-radius: 4px;
|
}
|
.el-input__wrapper {
|
border-radius: 4px;
|
}
|
.el-dialog {
|
border-radius: 8px;
|
}
|
.el-dialog__header {
|
border-bottom: 1px solid #e4e7ed;
|
padding: 16px 20px;
|
}
|
.el-dialog__title {
|
font-size: 16px;
|
font-weight: 600;
|
color: #303133;
|
}
|
.el-dialog__body {
|
padding: 20px;
|
}
|
.el-form-item {
|
margin-bottom: 16px;
|
}
|
.el-form-item__label {
|
font-weight: 500;
|
color: #606266;
|
}
|
.dialog-footer {
|
display: flex;
|
justify-content: flex-end;
|
gap: 10px;
|
padding: 16px 20px;
|
border-top: 1px solid #e4e7ed;
|
background-color: #fafafa;
|
}
|
.PIMTable {
|
border-radius: 4px;
|
overflow: hidden;
|
}
|
.el-table {
|
border-radius: 4px;
|
}
|
.el-table th {
|
background-color: #fafafa;
|
font-weight: 600;
|
color: #303133;
|
}
|
.el-table tr:hover {
|
background-color: #f5f7fa;
|
}
|
</style>
|