1.修改三期优化点

This commit is contained in:
sunFlower
2022-09-22 10:27:04 +08:00
parent 1c3c1595a3
commit ffcc0b115d
4 changed files with 43 additions and 32 deletions
+2 -2
View File
@@ -1154,8 +1154,8 @@ module.exports = {
category: 'Category',
RegulatoryProcessEvaluationResults: 'Regulatory Process Evaluation Results',
ViewConformanceResults: 'View Conformance Results',
CommentsCollectionResultsForReference: 'Comments Collection Results For Reference',
TechnicalEvaluationResultsForReference: 'Technical Evaluation Results For Reference',
CommentsCollectionResultsForReference: 'Comments Collection Results For',
TechnicalEvaluationResultsForReference: 'Technical Evaluation Results For',
ComplianceConfirmationRecord: 'Compliance Confirmation Record',
complianceConfirmation: 'Compliance Confirmation',
noComparisonDocumentSelected: 'No comparison document selected',
+2 -3
View File
@@ -1158,7 +1158,6 @@ module.exports = {
category: '类别',
RegulatoryProcessEvaluationResults: '法规流程评估结果',
ViewConformanceResults: '查看符合性结果',
CommentsCollectionResultsForReference: '意见收集结果参考',
TechnicalEvaluationResultsForReference: '技术评估结果参考',
ComplianceConfirmationRecord: '符合性确认记录',
complianceConfirmation: '符合性确认',
@@ -1259,8 +1258,8 @@ module.exports = {
category: '类别',
RegulatoryProcessEvaluationResults: '法规流程评估结果',
ViewConformanceResults: '查看符合性结果',
CommentsCollectionResultsForReference: '意见收集结果参考',
TechnicalEvaluationResultsForReference: '技术评估结果参考',
CommentsCollectionResultsForReference: '意见收集结果',
TechnicalEvaluationResultsForReference: '技术评估结果',
ComplianceConfirmationRecord: '符合性确认记录',
complianceConfirmation: '符合性确认',
Deriveconformanceresults: '导出符合性结果',
@@ -150,20 +150,20 @@
scopedSlots: { customRender: 'serialNumberLeft' }
},
{
title: this.$t('TextStatus'),
title: this.$t('TextStatus') + 1,
align: 'center',
width: 200,
ellipsis: true,
dataIndex: 'fileTypeLeft'
},
{
title: this.$t('fileName'),
align: 'center',
width: 270,
ellipsis: true,
dataIndex: 'fileNameLeft',
scopedSlots: { customRender: 'fileNameLeft' }
},
// {
// title: this.$t('fileName'),
// align: 'center',
// width: 270,
// ellipsis: true,
// dataIndex: 'fileNameLeft',
// scopedSlots: { customRender: 'fileNameLeft' }
// },
{
title: this.$t('standard') + 2,
align: 'center',
@@ -181,20 +181,20 @@
width: 170
},
{
title: this.$t('TextStatus'),
title: this.$t('TextStatus') + 2,
align: 'center',
width: 200,
ellipsis: true,
dataIndex: 'fileTypeRight'
},
{
title: this.$t('fileName'),
align: 'center',
width: 270,
ellipsis: true,
dataIndex: 'fileNameRight',
scopedSlots: { customRender: 'fileNameRight' }
},
// {
// title: this.$t('fileName'),
// align: 'center',
// width: 270,
// ellipsis: true,
// dataIndex: 'fileNameRight',
// scopedSlots: { customRender: 'fileNameRight' }
// },
{
title: this.$t('releaseSituation'),
align: 'center',
@@ -202,6 +202,13 @@
ellipsis: true,
dataIndex: 'releaseStateTitle'
},
{
title: this.$t('creater'),
align: 'center',
width: 170,
ellipsis: true,
dataIndex: 'createBy'
},
{
title: this.$t('remarks'),
align: 'center',
+14 -9
View File
@@ -86,17 +86,17 @@
>
<span slot="technicalField" slot-scope="text,record" :title="text">
<a @click="entryNameClick(record)">
{{ text && text.length > 23 ? text.slice(0, 22) + '...' : text }}
{{ text }}
</a>
</span>
<span slot="standard" slot-scope="text,record" :title="text">
{{ text && text.length > 15 ? text.slice(0, 14) + '...' : text }}
{{ text }}
</span>
<!-- <span slot="serialNumber" slot-scope="text,record" :title="text">-->
<!-- {{ text && text.length > 15 ? text.slice(0, 14) + '...' : text }}-->
<!-- </span>-->
<span slot="operation" slot-scope="text,record">
<a class="text-operation" @click="handlecody(record)">{{$t('ViewConformanceResults')}}</a>
<a class="text-operation" @click="handlecody(record)">{{$t('view')}}</a>
</span>
</a-table>
</div>
@@ -168,21 +168,24 @@ export default {
title: this.$t('standard'),
align: 'center',
dataIndex: 'serialNumber',
width: 180,
width: 300,
ellipsis: true,
scopedSlots: { customRender: 'standard' }
},
{
title: this.$t('title'),
align: 'center',
dataIndex: 'title',
width: 250,
width: 300,
ellipsis: true,
scopedSlots: { customRender: 'standard' }
},
{
title: this.$t('status'),
align: 'center',
ellipsis: true,
dataIndex: 'state_dicText',
width: 180
width: 120
},
// {
// title: this.$t('category'),
@@ -194,13 +197,14 @@ export default {
align: 'center',
dataIndex: 'technologyTerritory_dicText',
width: 250,
ellipsis: true,
scopedSlots: { customRender: 'technicalField' }
},
{
title: this.$t('RegulatoryProcessEvaluationResults'),
title: this.$t('evaluationResults'),
align: 'center',
fixed: 'right',
width: 300,
width: 180,
scopedSlots: { customRender: 'operation' }
}
],
@@ -282,7 +286,8 @@ export default {
// 导出历史
handlecody(e) {
this.drawerVisible = true
this.titleTag = e.serialNumber + this.$t('ComplianceConfirmationRecord')
// e.serialNumber +
this.titleTag = this.$t('evaluationResults')
this.paramsManifestId = e.id
this.item = {...e}
},