2026-01-30 17:39:17 +08:00
|
|
|
|
<template>
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<div class="app-container" ref="appContainer">
|
2026-01-30 17:39:17 +08:00
|
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
|
<el-form-item label="产品名称" prop="productName">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-input v-model="queryParams.productName" placeholder="请输入产品名称" clearable @keyup.enter="handleQuery" />
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品规格" prop="spec">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-input v-model="queryParams.spec" placeholder="请输入产品规格" clearable @keyup.enter="handleQuery" />
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品型号" prop="model">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-input v-model="queryParams.model" placeholder="请输入产品型号" clearable @keyup.enter="handleQuery" />
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</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-row :gutter="10" class="mb8">
|
|
|
|
|
|
<el-col :span="1.5">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd">新增</el-button>
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate">修改</el-button>
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete">删除</el-button>
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport">导出</el-button>
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-table v-loading="loading" :data="productList" @selection-change="handleSelectionChange"
|
|
|
|
|
|
@row-click="handleRowClick">
|
2026-01-30 17:39:17 +08:00
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-table-column label="产品ID 主键" align="center" prop="productId" v-if="false" />
|
2026-01-30 17:39:17 +08:00
|
|
|
|
<el-table-column label="产品名称" align="center" prop="productName" />
|
|
|
|
|
|
<el-table-column label="产品规格" align="center" prop="spec" />
|
|
|
|
|
|
<el-table-column label="产品型号" align="center" prop="model" />
|
2026-01-31 14:39:53 +08:00
|
|
|
|
<el-table-column label="产品单价" align="center" prop="unitPrice">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
{{ formatDecimal(scope.row.unitPrice) }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-30 17:39:17 +08:00
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<el-button link type="primary" icon="Plus" @click="handleBom(scope.row)">配方</el-button>
|
|
|
|
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)">修改</el-button>
|
|
|
|
|
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
|
|
|
</template>
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum"
|
|
|
|
|
|
v-model:limit="queryParams.pageSize" @pagination="getList" />
|
2026-01-30 17:39:17 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改产品基础信息对话框 -->
|
|
|
|
|
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
|
|
|
|
|
<el-form ref="productRef" :model="form" :rules="rules" label-width="80px">
|
|
|
|
|
|
<el-form-item label="产品名称" prop="productName">
|
|
|
|
|
|
<el-input v-model="form.productName" placeholder="请输入产品名称" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品规格" prop="spec">
|
|
|
|
|
|
<el-input v-model="form.spec" placeholder="请输入产品规格" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品型号" prop="model">
|
|
|
|
|
|
<el-input v-model="form.model" placeholder="请输入产品型号" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品单价" prop="unitPrice">
|
|
|
|
|
|
<el-input v-model="form.unitPrice" placeholder="请输入产品单价" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
|
<el-input v-model="form.remark" 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>
|
|
|
|
|
|
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-dialog title="产品配方" v-model="bomOpen" width="800px" append-to-body>
|
2026-01-30 17:39:17 +08:00
|
|
|
|
<bom :productId="currentProductId" @close="bomOpen = false" />
|
|
|
|
|
|
</el-dialog>
|
2026-01-31 14:21:49 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 将这个表格改为始终吸底,且外层容器可以拖拽调节高度 -->
|
|
|
|
|
|
<!-- <StickyDragContainer v-if="currentProduct.productId" :parent-ref="appContainer"> -->
|
|
|
|
|
|
<div v-if="currentProduct.productId">
|
|
|
|
|
|
<h3>产品配料</h3>
|
|
|
|
|
|
<!-- 插槽内容:原有配料表格,无需任何修改 -->
|
|
|
|
|
|
<el-table :data="currentProduct.materials">
|
|
|
|
|
|
<el-table-column label="配料名称" align="center" prop="materialName" />
|
|
|
|
|
|
<el-table-column label="配料规格" align="center" prop="spec" />
|
|
|
|
|
|
<el-table-column label="配料型号" align="center" prop="model" />
|
|
|
|
|
|
<el-table-column label="厂家" align="center" prop="factory" />
|
|
|
|
|
|
<el-table-column label="计量单位" align="center" prop="unit" />
|
2026-01-31 14:39:53 +08:00
|
|
|
|
<el-table-column label="现存库存" align="center" prop="currentStock">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
{{ formatDecimal(scope.row.currentStock) }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-31 14:21:49 +08:00
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-empty v-else description="选择产品查看配料信息" />
|
|
|
|
|
|
|
|
|
|
|
|
<!-- </StickyDragContainer> -->
|
2026-01-30 17:39:17 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup name="Product">
|
|
|
|
|
|
import { listProduct, getProduct, delProduct, addProduct, updateProduct } from "@/api/mat/product";
|
|
|
|
|
|
import bom from "@/views/mat/components/bom.vue";
|
2026-01-31 14:21:49 +08:00
|
|
|
|
import StickyDragContainer from "@/components/StickyDragContainer/index.vue";
|
2026-01-31 14:39:53 +08:00
|
|
|
|
import { formatDecimal } from '@/utils/gear'
|
2026-01-30 17:39:17 +08:00
|
|
|
|
|
|
|
|
|
|
const bomOpen = ref(false);
|
|
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
|
|
|
|
|
|
|
const productList = ref([]);
|
|
|
|
|
|
const open = ref(false);
|
|
|
|
|
|
const buttonLoading = ref(false);
|
|
|
|
|
|
const loading = ref(true);
|
|
|
|
|
|
const showSearch = ref(true);
|
|
|
|
|
|
const ids = ref([]);
|
|
|
|
|
|
const single = ref(true);
|
|
|
|
|
|
const multiple = ref(true);
|
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
|
const title = ref("");
|
|
|
|
|
|
const currentProductId = ref(null);
|
2026-01-31 14:21:49 +08:00
|
|
|
|
const currentProduct = ref({});
|
|
|
|
|
|
const appContainer = ref(null);
|
2026-01-30 17:39:17 +08:00
|
|
|
|
|
|
|
|
|
|
const formatterTime = (time) => {
|
|
|
|
|
|
return proxy.parseTime(time, '{y}-{m}-{d}')
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const data = reactive({
|
|
|
|
|
|
form: {},
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
productName: undefined,
|
|
|
|
|
|
spec: undefined,
|
|
|
|
|
|
model: undefined,
|
|
|
|
|
|
},
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
|
|
|
|
|
|
|
/** 查询产品基础信息列表 */
|
|
|
|
|
|
function getList() {
|
|
|
|
|
|
loading.value = true;
|
|
|
|
|
|
listProduct(queryParams.value).then(response => {
|
|
|
|
|
|
productList.value = response.rows;
|
|
|
|
|
|
total.value = response.total;
|
|
|
|
|
|
loading.value = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 取消按钮
|
|
|
|
|
|
function cancel() {
|
|
|
|
|
|
open.value = false;
|
|
|
|
|
|
reset();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 表单重置
|
|
|
|
|
|
function reset() {
|
|
|
|
|
|
form.value = {
|
|
|
|
|
|
productId: null,
|
|
|
|
|
|
productName: null,
|
|
|
|
|
|
spec: null,
|
|
|
|
|
|
model: null,
|
|
|
|
|
|
unitPrice: null,
|
|
|
|
|
|
delFlag: null,
|
|
|
|
|
|
createTime: null,
|
|
|
|
|
|
createBy: null,
|
|
|
|
|
|
updateTime: null,
|
|
|
|
|
|
updateBy: null,
|
|
|
|
|
|
remark: null
|
|
|
|
|
|
};
|
|
|
|
|
|
proxy.resetForm("productRef");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
function handleQuery() {
|
|
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
|
|
getList();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
function resetQuery() {
|
|
|
|
|
|
proxy.resetForm("queryRef");
|
|
|
|
|
|
handleQuery();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
|
function handleSelectionChange(selection) {
|
|
|
|
|
|
ids.value = selection.map(item => item.productId);
|
|
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
|
function handleAdd() {
|
|
|
|
|
|
reset();
|
|
|
|
|
|
open.value = true;
|
|
|
|
|
|
title.value = "添加产品基础信息";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
|
function handleUpdate(row) {
|
|
|
|
|
|
loading.value = true
|
|
|
|
|
|
reset();
|
|
|
|
|
|
const _productId = row.productId || ids.value
|
|
|
|
|
|
getProduct(_productId).then(response => {
|
|
|
|
|
|
loading.value = false;
|
|
|
|
|
|
form.value = response.data;
|
|
|
|
|
|
open.value = true;
|
|
|
|
|
|
title.value = "修改产品基础信息";
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
|
function submitForm() {
|
|
|
|
|
|
proxy.$refs["productRef"].validate(valid => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
buttonLoading.value = true;
|
|
|
|
|
|
if (form.value.productId != null) {
|
|
|
|
|
|
updateProduct(form.value).then(response => {
|
|
|
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
|
|
|
|
open.value = false;
|
|
|
|
|
|
getList();
|
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
|
buttonLoading.value = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
addProduct(form.value).then(response => {
|
|
|
|
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
|
|
|
|
open.value = false;
|
|
|
|
|
|
getList();
|
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
|
buttonLoading.value = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
|
function handleDelete(row) {
|
|
|
|
|
|
const _productIds = row.productId || ids.value;
|
2026-01-31 14:21:49 +08:00
|
|
|
|
proxy.$modal.confirm('是否确认删除产品基础信息编号为"' + _productIds + '"的数据项?').then(function () {
|
2026-01-30 17:39:17 +08:00
|
|
|
|
loading.value = true;
|
|
|
|
|
|
return delProduct(_productIds);
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
loading.value = true;
|
|
|
|
|
|
getList();
|
|
|
|
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
|
loading.value = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handleBom(row) {
|
|
|
|
|
|
bomOpen.value = true;
|
|
|
|
|
|
currentProductId.value = row.productId;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
|
function handleExport() {
|
|
|
|
|
|
proxy.download('mat/product/export', {
|
|
|
|
|
|
...queryParams.value
|
|
|
|
|
|
}, `product_${new Date().getTime()}.xlsx`)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-31 14:21:49 +08:00
|
|
|
|
function handleRowClick(row) {
|
|
|
|
|
|
currentProduct.value = row;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-30 17:39:17 +08:00
|
|
|
|
getList();
|
|
|
|
|
|
</script>
|