From a7c71cf6ad69da0fc2ada301f32decc8e3cb8bde Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 15 四月 2025 11:15:40 +0800
Subject: [PATCH] fix: bug
---
src/views/MaterialReview/MaterialReviewDetail.vue | 28 +++++++++++++++-------------
1 files changed, 15 insertions(+), 13 deletions(-)
diff --git a/src/views/MaterialReview/MaterialReviewDetail.vue b/src/views/MaterialReview/MaterialReviewDetail.vue
index fd4ca6a..828a147 100644
--- a/src/views/MaterialReview/MaterialReviewDetail.vue
+++ b/src/views/MaterialReview/MaterialReviewDetail.vue
@@ -10,11 +10,10 @@
BountyCheckStatusEnumText[form.outCheckStatus]
}}</span>
</span>
- <span
- v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject"
- class="page-form-layout-title-item remark"
- >
- {{ `瀹℃牳鏈�氳繃鍘熷洜:${form.outCheckRemark ?? ''}` }}
+ <span class="page-form-layout-title-item remark">
+ <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject">
+ {{ `瀹℃牳鏈�氳繃鍘熷洜:${form.outCheckRemark ?? ''}` }}
+ </TextOverTooltip>
</span>
</div>
</template>
@@ -52,6 +51,7 @@
PageFormLayout,
useTable,
useFormDialog,
+ TextOverTooltip,
} from '@bole-core/components';
import ChunkCellV2 from '@/components/Layout/ChunkCellV2.vue';
import DetailView from '@/components/commonView/DetailView.vue';
@@ -63,7 +63,7 @@
import { useRouteView } from '@/hooks';
import { OrderInputType } from '@bole-core/core';
import {
- AuthTypeText,
+ EnterpriseTypeText,
BountyCheckStatusEnum,
BountyCheckStatusEnumText,
BountyCheckStatusEnumColor,
@@ -152,13 +152,15 @@
searchKeyWord: '',
},
columnsRenderProps: {
- authType: { type: 'enum', valueEnum: AuthTypeText },
- licenseUrl: {
- type: 'url',
- formatter: (row: API.UserCertificationAuditListDto) => setOSSLink(row.licenseUrl),
- modal: true,
- showDownloadBtn: false,
- },
+ authType: { type: 'enum', valueEnum: EnterpriseTypeText },
+ // licenseUrl: {
+ // type: 'url',
+ // formatter: (row: API.UserCertificationAuditListDto) => setOSSLink(row.licenseUrl),
+ // modal: true,
+ // showDownloadBtn: true,
+ // showPreviewBtn: false,
+ // downloadBtnText: '鏌ョ湅',
+ // },
},
}
);
--
Gitblit v1.9.1