diff --git a/jero-web/src/views/businessSupport/technologyAssessment/components/TermInformation.vue b/jero-web/src/views/businessSupport/technologyAssessment/components/TermInformation.vue
index ba8af1d8a..ba0867e02 100644
--- a/jero-web/src/views/businessSupport/technologyAssessment/components/TermInformation.vue
+++ b/jero-web/src/views/businessSupport/technologyAssessment/components/TermInformation.vue
@@ -150,37 +150,37 @@
{
title: this.$t('clauseNo'),
dataIndex: 'itemNum',
- align: 'center',
+ align: 'left',
ellipsis: true,
width: 120
},
{
title: this.$t('clauseName'),
dataIndex: 'itemName',
- align: 'center',
+ align: 'left',
ellipsis: true
},
{
title: this.$t('clauseContent'),
dataIndex: 'itemContent',
- align: 'center',
+ align: 'left',
scopedSlots: { customRender: 'clauseContent' }
},
{
title: this.$t('evaluationMethod'),
dataIndex: 'evaluationMethods',
- align: 'center',
+ align: 'left',
scopedSlots: { customRender: 'evaluationMethod' }
},
{
title: this.$t('Assessor'),
dataIndex: 'Assessor',
- align: 'center',
+ align: 'left',
scopedSlots: { customRender: 'Assessor' }
},
{
title: this.$t('operation'),
- align: 'center',
+ align: 'left',
width: 120,
scopedSlots: { customRender: 'operation' }
}
diff --git a/jero-web/src/views/businessSupport/technologyAssessment/components/evaluationResultsWhole.vue b/jero-web/src/views/businessSupport/technologyAssessment/components/evaluationResultsWhole.vue
index a0007ad92..a2f18b9d5 100644
--- a/jero-web/src/views/businessSupport/technologyAssessment/components/evaluationResultsWhole.vue
+++ b/jero-web/src/views/businessSupport/technologyAssessment/components/evaluationResultsWhole.vue
@@ -109,7 +109,7 @@
{
title: this.$t('engineer'),
dataIndex: 'createBy',
- align: 'center',
+ align: 'left',
width: 160,
ellipsis: true,
customRender: (value, row, index) => {
@@ -128,7 +128,7 @@
{
title: this.$t('complianceResults'),
dataIndex: 'complianceResultName',
- align: 'center',
+ align: 'left',
width: 160,
ellipsis: true,
customRender: (value, row, index) => {
@@ -147,20 +147,20 @@
{
title: this.$t('relevantSections'),
dataIndex: 'relatedSection',
- align: 'center',
+ align: 'left',
width: 160,
ellipsis: true
},
{
title: this.$t('problemDescription'),
dataIndex: 'issueOrSuggest',
- align: 'center',
+ align: 'left',
ellipsis: true
},
{
title: this.$t('enclosure'),
dataIndex: 'accessoryFile',
- align: 'center',
+ align: 'left',
width: 160,
ellipsis: true,
scopedSlots: { customRender: 'accessoryFile' }
@@ -425,6 +425,10 @@
.operator-text-feed {
margin-top: 27px;
}
+
+ /deep/.ant-table-column-title{
+ font-weight: bold!important;
+ }