认证清单列表添加交付物模板
This commit is contained in:
@@ -1710,4 +1710,5 @@ module.exports = {
|
||||
implementationrecords:'Fault handling measures and emergency response implementation records',
|
||||
onlyDataWithListStatusDraftCanBeDeleted:'Only data with a list status of Draft can be deleted',
|
||||
implementationDateTwo:'Implementation Date',
|
||||
reasonForReturn:'Reason For Return',
|
||||
}
|
||||
@@ -1810,4 +1810,5 @@ module.exports = {
|
||||
implementationrecords:'故障处置措施和应急响应实施记录',
|
||||
onlyDataWithListStatusDraftCanBeDeleted:'只能删除清单状态为草稿的数据',
|
||||
implementationDateTwo:'实施日期',
|
||||
reasonForReturn:'Reason For Return',
|
||||
}
|
||||
@@ -367,6 +367,14 @@
|
||||
{{result.certificationProgress_dictText ? result.certificationProgress_dictText : $t('maintainProgress')}}
|
||||
</span>
|
||||
</div>
|
||||
<span slot="deliverableTemplate" slot-scope="text,result">
|
||||
<span class="viewFile"
|
||||
@click="viewFileClick(result.deliverableTemplate)"
|
||||
v-if="result.deliverableTemplate">
|
||||
{{$t('viewFile')}}
|
||||
</span>
|
||||
<span v-else>--</span>
|
||||
</span>
|
||||
</a-table>
|
||||
<div class="page" v-if="dataSource.length > 0">
|
||||
<a-pagination
|
||||
@@ -483,7 +491,7 @@
|
||||
|
||||
export default {
|
||||
name: 'index',
|
||||
props:['isDisplayNum'],
|
||||
props: ['isDisplayNum'],
|
||||
components: {
|
||||
globalAdvancedQuery,
|
||||
ImportFile,
|
||||
@@ -578,7 +586,7 @@
|
||||
AndUserIdEdit: '/project/projectLibraryRoleRelEO/edit',
|
||||
saveBatch: '/project/projectCertificationInventoryEO/saveBatch',
|
||||
questionUrl: '/project/projectCertificationInventoryEO/expediting',
|
||||
importZipUrl: '/project/projectCertificationInventoryEO/importData',
|
||||
importZipUrl: '/project/projectCertificationInventoryEO/importData'
|
||||
},
|
||||
dataSource: [],
|
||||
roleSwitchingCode: '',
|
||||
@@ -604,7 +612,7 @@
|
||||
dataIndex: 'category',
|
||||
width: 180,
|
||||
ellipsis: true,
|
||||
fixed: 'left',
|
||||
fixed: 'left'
|
||||
},
|
||||
{
|
||||
title: this.$t('inspectionItems'),
|
||||
@@ -612,7 +620,7 @@
|
||||
dataIndex: 'inspectionItem',
|
||||
width: 180,
|
||||
ellipsis: true,
|
||||
fixed: 'left',
|
||||
fixed: 'left'
|
||||
},
|
||||
{
|
||||
title: this.$t('configurationItem'),
|
||||
@@ -656,6 +664,14 @@
|
||||
width: 180,
|
||||
ellipsis: true
|
||||
},
|
||||
{
|
||||
title: this.$t('deliverableTemplate'),
|
||||
align: 'left',
|
||||
dataIndex: 'deliverableTemplate',
|
||||
width: 180,
|
||||
ellipsis: true,
|
||||
scopedSlots: { customRender: 'deliverableTemplate' }
|
||||
},
|
||||
{
|
||||
title: this.$t('typeOfDeliverables'),
|
||||
align: 'left',
|
||||
|
||||
@@ -405,7 +405,7 @@
|
||||
</a-spin>
|
||||
</a-modal>
|
||||
<a-modal
|
||||
:title="$t('reasonsForRejection')"
|
||||
:title="$t('reasonForReturn')"
|
||||
:width="500"
|
||||
:visible="visibleComment"
|
||||
:confirm-loading="confirmLoadingComment"
|
||||
@@ -419,12 +419,12 @@
|
||||
<div class="box-title-text-index">
|
||||
<div class="title-text-Comment">
|
||||
<span class="Required">*</span>
|
||||
<span class="title-text-text" :title="$t('reasonsForRejection')">{{ $t('reasonsForRejection') }}</span>
|
||||
<span class="title-text-text" :title="$t('reasonForReturn')">{{ $t('reasonForReturn') }}</span>
|
||||
</div>
|
||||
<a-form-model-item class="itemModelComment" :prop="'commentContent'">
|
||||
<a-textarea
|
||||
style="width: 100%"
|
||||
:placeholder="$t('PleaseEnter')+$t('reasonsForRejection')"
|
||||
:placeholder="$t('PleaseEnter')+$t('reasonForReturn')"
|
||||
:disabled="false"
|
||||
v-model="formInlineComment.commentContent" :rows="4"/>
|
||||
</a-form-model-item>
|
||||
@@ -768,7 +768,7 @@
|
||||
commentContent: [
|
||||
{
|
||||
required: true,
|
||||
message: this.$t('reasonsForRejection') + this.$t('cannotEmpty'),
|
||||
message: this.$t('reasonForReturn') + this.$t('cannotEmpty'),
|
||||
trigger: 'blur'
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user