From 236ac6ed52d86bff0c65a743a9ededd5c9b9bc98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=88=E9=B8=BF?= Date: Thu, 3 Jul 2025 10:01:08 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=96=87=E6=A1=A3=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sub-government-affairs-service/doc/组件文档.md | 1 - 1 file changed, 1 deletion(-) diff --git a/sub-government-affairs-service/doc/组件文档.md b/sub-government-affairs-service/doc/组件文档.md index 4056bbf..10a9456 100644 --- a/sub-government-affairs-service/doc/组件文档.md +++ b/sub-government-affairs-service/doc/组件文档.md @@ -249,7 +249,6 @@ GET /system/area/region?areaCode=530000 ## 注意事项 -- 外部不应主动更新 `modelValue`,避免造成循环依赖。 - 默认展示为“云南省”下的行政区域。 - 默认字段映射为: - `label`: `areaName` From 5e76a17a25e9469cda4b290468c98140e359c33f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=88=E9=B8=BF?= Date: Thu, 3 Jul 2025 10:51:15 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=8C=85=E8=A3=85=E8=B5=8B=E7=A0=81?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/trace/products/packaging/index.vue | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/sub-government-affairs-service/src/views/trace/products/packaging/index.vue b/sub-government-affairs-service/src/views/trace/products/packaging/index.vue index 82d48ce..3787e6b 100644 --- a/sub-government-affairs-service/src/views/trace/products/packaging/index.vue +++ b/sub-government-affairs-service/src/views/trace/products/packaging/index.vue @@ -301,21 +301,19 @@ const tableLoading = ref(false); const tableTotal = ref(0); const columns = ref([ { prop: 'batchCode', label: '产品溯源码', slotName: 'batchCode', width: 150 }, - - { prop: 'name', label: '产品名称' }, - { prop: 'Unit', label: '规格' }, - { prop: 'purchaseDate', label: '生产日期' }, + { prop: 'productTypes', label: '产品名称' }, + { prop: 'name', label: '包装规格' }, + { prop: 'purchaseDate', label: '生产日期', width: 150 }, { prop: 'number', label: '保质期' }, - // { prop: 'baseCode', label: '生产商', width: 200 }, + { prop: 'Unit', label: '生产商', width: 200 }, { prop: 'plotName', label: '厂址' }, { prop: 'baseName', label: '原材料' }, { prop: 'baseAddress', label: '原产地' }, { prop: 'plotCode', label: '种植基地' }, - { prop: 'businessEntity', label: '种植基地地址' }, { prop: 'record', label: '生产经营主体类型' }, { prop: 'type', label: '生产经营主体名称' }, - { prop: 'createDate', label: '创建日期' }, + { prop: 'createDate', label: '创建日期', width: 150 }, { prop: 'action', label: '操作', slotName: 'action', width: 100, fixed: 'right' }, ]); const handlePaginationChange = ({ page, pageSize }) => {