From 0636850977fcc6242ca72ccfc5f352aed5bca9ae Mon Sep 17 00:00:00 2001 From: caiyuchao Date: Mon, 25 Aug 2025 16:26:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=A6=96=E9=A1=B5=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E8=AF=84=E8=AE=BA=EF=BC=9B=E5=8E=BB=E6=8E=89=E6=8A=80=E6=9C=AF?= =?UTF-8?q?=E8=B4=9F=E8=B4=A3=E4=BA=BA3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web-antd/src/api/license/comment/index.ts | 1 + apps/web-antd/src/views/dashboard/index.vue | 13 +++++-- .../license/project/comment/child-comment.vue | 2 +- .../src/views/license/project/data.ts | 38 +++++++++---------- 4 files changed, 31 insertions(+), 23 deletions(-) diff --git a/apps/web-antd/src/api/license/comment/index.ts b/apps/web-antd/src/api/license/comment/index.ts index e96e118..f2d2334 100644 --- a/apps/web-antd/src/api/license/comment/index.ts +++ b/apps/web-antd/src/api/license/comment/index.ts @@ -22,6 +22,7 @@ export namespace CommentApi { serialNo?: string; businessOwner?: string; technicalOwnerA?: string; + customerName?: string; } } diff --git a/apps/web-antd/src/views/dashboard/index.vue b/apps/web-antd/src/views/dashboard/index.vue index f28326f..232ca5d 100644 --- a/apps/web-antd/src/views/dashboard/index.vue +++ b/apps/web-antd/src/views/dashboard/index.vue @@ -3,7 +3,11 @@ import type { AnalysisOverviewItem, WorkbenchTrendItem } from '@vben/common-ui'; import { onMounted, shallowRef } from 'vue'; -import { AnalysisOverview, WorkbenchTrends } from '@vben/common-ui'; +import { + AnalysisOverview, + WorkbenchTrends, + WorkbenchTrendsComment, +} from '@vben/common-ui'; import dayjs from 'dayjs'; import relativeTime from 'dayjs/plugin/relativeTime'; @@ -102,7 +106,10 @@ onMounted(async () => { date: dayjs(item.updateTime).format('YYYY-MM-DD HH:mm:ss') || '', title: `${item.projectName ?? ''} `, status: dict, - info: `${item.serialNo ?? ''}  ${item.businessOwner ?? ''}  ${item.technicalOwnerA ?? ''}`, + customerName: item.customerName, + serialNo: item.serialNo, + businessOwner: item.businessOwner, + technicalOwnerA: item.technicalOwnerA, }; }); }); @@ -131,7 +138,7 @@ onMounted(async () => { />
- {