From 9b2e62916f7a42667ae112e9d436c3626419f2cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= <2178503051@qq.com> Date: Tue, 12 May 2026 10:47:21 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A4=9A=E4=B8=AA=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BD=E4=B8=8E=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E4=BA=A4=E4=BA=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. DictSelect组件新增单选按钮组渲染模式 2. 公告管理页面新增查看公告功能 3. 合同产品内容组件优化产品选择器与表格布局 --- klp-ui/src/api/wms/coil.js | 15 + klp-ui/src/components/DictSelect/index.vue | 31 +- .../contract/components/ProductContent.vue | 354 ++++++++---------- klp-ui/src/views/system/notice/index.vue | 67 +++- 4 files changed, 260 insertions(+), 207 deletions(-) diff --git a/klp-ui/src/api/wms/coil.js b/klp-ui/src/api/wms/coil.js index c3d6f25f..d1e24225 100644 --- a/klp-ui/src/api/wms/coil.js +++ b/klp-ui/src/api/wms/coil.js @@ -1,4 +1,5 @@ import request from '@/utils/request' +import veilReq from '@/utils/veilReq' import { tansParams } from "@/utils/klp"; // 查询钢卷物料表列表 @@ -436,3 +437,17 @@ export function listWithAdjustRecordCoil(params) { params }) } + +/** + * 根据入场钢卷号查询最早的热轧卷板材质 + */ +export function getFirstHeatCoilMaterial(enterCoilNo) { + return veilReq({ + url: '/wms/materialCoil/material/queryEarliestHotRolledMaterial', + method: 'get', + timeout: 600000, + params: { + enterCoilNo + } + }) +} diff --git a/klp-ui/src/components/DictSelect/index.vue b/klp-ui/src/components/DictSelect/index.vue index c43a94be..eb9ffe28 100644 --- a/klp-ui/src/components/DictSelect/index.vue +++ b/klp-ui/src/components/DictSelect/index.vue @@ -1,8 +1,8 @@