feat: 路由跳转重构 + 甲方报价单 + 物料分类 + 比价选择方案 + 规格型号拆分

- 比价页改为列表→路由跳转到 comparison/detail,支持勾选物料行生成采购方案PDF
- 新增甲方报价单模块(clientquote):列表+详情路由,含成本价/报价/毛利率,导出PDF
- 新增物料分类管理(category):树形结构,CRUD,物料页面关联分类筛选
- BizMaterial 拆分 spec(规格) + modelNo(型号) 两个字段
- Logo 修复:新PNG + 内联样式确保完整显示
- sys_menu 新增 2012(物料分类)、2013(甲方报价单)、2014(报价单详情)、2015(比价详情)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-23 13:49:11 +08:00
parent 608ee0ed61
commit 54a421aa36
25 changed files with 1614 additions and 502 deletions

View File

@@ -7,6 +7,12 @@
<el-form-item label="物料编码" prop="materialCode">
<el-input v-model="queryParams.materialCode" placeholder="请输入物料编码" clearable @keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item label="所属分类">
<el-select v-model="queryParams.categoryId" placeholder="全部分类" clearable style="width:160px">
<el-option v-for="c in flatCategories" :key="c.categoryId"
:label="c.categoryName" :value="c.categoryId" />
</el-select>
</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>
@@ -26,35 +32,57 @@
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="物料编码" prop="materialCode" width="130" />
<el-table-column label="物料名称" prop="materialName" :show-overflow-tooltip="true" />
<el-table-column label="规格型号" prop="spec" :show-overflow-tooltip="true" />
<el-table-column label="单位" prop="unit" width="80" />
<el-table-column label="品牌" prop="brand" />
<el-table-column label="所属分类" prop="categoryName" width="130" />
<el-table-column label="规格" prop="spec" :show-overflow-tooltip="true" width="130" />
<el-table-column label="型号" prop="modelNo" :show-overflow-tooltip="true" width="130" />
<el-table-column label="单位" prop="unit" width="70" />
<el-table-column label="品牌" prop="brand" width="100" />
<el-table-column label="状态" align="center" width="80">
<template slot-scope="scope">
<el-switch v-model="scope.row.status" active-value="0" inactive-value="1" @change="handleStatusChange(scope.row)" />
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="160" />
<el-table-column label="操作" align="center" width="160">
<el-table-column label="操作" align="center" width="140">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)">修改</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" style="color:#f56c6c" @click="handleDelete(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="物料编码" prop="materialCode">
<el-input v-model="form.materialCode" placeholder="请输入物料编码" />
</el-form-item>
<el-dialog :title="title" :visible.sync="open" width="640px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="90px">
<el-row>
<el-col :span="12">
<el-form-item label="物料编码" prop="materialCode">
<el-input v-model="form.materialCode" placeholder="请输入物料编码" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="所属分类">
<el-select v-model="form.categoryId" placeholder="请选择分类" clearable style="width:100%">
<el-option v-for="c in flatCategories" :key="c.categoryId"
:label="c.indentName" :value="c.categoryId" />
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-form-item label="物料名称" prop="materialName">
<el-input v-model="form.materialName" placeholder="请输入物料名称" />
</el-form-item>
<el-form-item label="规格型号" prop="spec">
<el-input v-model="form.spec" placeholder="请输入规格型号" />
</el-form-item>
<el-row>
<el-col :span="12">
<el-form-item label="规格" prop="spec">
<el-input v-model="form.spec" placeholder="如500W/220V" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="型号" prop="modelNo">
<el-input v-model="form.modelNo" placeholder="如XD-2023A" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="单位" prop="unit">
@@ -68,7 +96,7 @@
</el-col>
</el-row>
<el-form-item label="描述" prop="description">
<el-input v-model="form.description" type="textarea" rows="3" />
<el-input v-model="form.description" type="textarea" rows="2" />
</el-form-item>
</el-form>
<div slot="footer">
@@ -81,22 +109,43 @@
<script>
import { listMaterial, getMaterial, addMaterial, updateMaterial, delMaterial } from "@/api/bid/material";
import { getCategoryList } from "@/api/bid/category";
export default {
name: "Material",
data() {
return {
loading: false, multiple: true, total: 0, materialList: [],
open: false, title: "",
queryParams: { pageNum: 1, pageSize: 10, materialName: null, materialCode: null },
queryParams: { pageNum: 1, pageSize: 10, materialName: null, materialCode: null, categoryId: null },
form: {},
flatCategories: [],
rules: {
materialCode: [{ required: true, message: "物料编码不能为空", trigger: "blur" }],
materialName: [{ required: true, message: "物料名称不能为空", trigger: "blur" }],
}
};
},
created() { this.getList(); },
created() {
this.getList();
this.loadCategories();
},
methods: {
loadCategories() {
getCategoryList().then(res => {
this.flatCategories = this.flattenTree(res.data || [], 0, "");
});
},
flattenTree(nodes, depth, prefix) {
let result = [];
for (const n of nodes) {
result.push({ ...n, indentName: prefix + n.categoryName });
if (n.children && n.children.length) {
result = result.concat(this.flattenTree(n.children, depth + 1, prefix + " "));
}
}
return result;
},
getList() {
this.loading = true;
listMaterial(this.queryParams).then(res => {
@@ -107,18 +156,18 @@ export default {
},
handleQuery() { this.queryParams.pageNum = 1; this.getList(); },
resetQuery() { this.resetForm("queryForm"); this.handleQuery(); },
handleSelectionChange(sel) { this.multiple = !sel.length; },
handleSelectionChange(sel) { this.multiple = !sel.length; this.ids = sel.map(s => s.materialId); },
handleAdd() { this.reset(); this.open = true; this.title = "新增物料"; },
handleUpdate(row) {
this.reset();
getMaterial(row.materialId).then(res => { this.form = res.data; this.open = true; this.title = "修改物料"; });
},
handleDelete(row) {
const ids = row.materialId || this.ids;
const ids = row.materialId || (this.ids || []).join(",");
this.$modal.confirm("确认删除?").then(() => delMaterial(ids)).then(() => { this.getList(); this.$modal.msgSuccess("删除成功"); });
},
handleStatusChange(row) { updateMaterial(row); },
reset() { this.form = { status: "0" }; this.resetForm("form"); },
reset() { this.form = { status: "0" }; this.resetForm && this.resetForm("form"); },
cancel() { this.open = false; this.reset(); },
submitForm() {
this.$refs["form"].validate(valid => {