认证清单标准标号增加文档库链接

This commit is contained in:
范强强
2023-04-06 09:31:41 +08:00
parent 04f870c770
commit 17dad9fb6b
4 changed files with 14 additions and 10 deletions
+5 -3
View File
@@ -1409,7 +1409,7 @@ module.exports = {
itemInformation:'Item Information',
modifyHistory:'Historical Record',
returnToStudio:'Return to Studio',
Approved:'Review and pass',
Approved:'Approved',
returnedForApproval:'Returned For Approval',
changeSetting:'Change Setting',
referenceDeliverables:'Reference Deliverables',
@@ -1430,8 +1430,8 @@ module.exports = {
onlyDataStatusSubmittedCanBeSelected:'Only data with process status of result to be submitted can be selected',
operationWithoutPermission:'Operation without permission',
data:"'s data",
confirmApproval:'Confirm approval?',
confirmReturnForApproval:'Confirm return for approval ?',
confirmApproval:'Confirm pass review?',
confirmReturnForApproval:'Confirm Return for review ?',
onlyDataStatusResultReviewedCanBeSelected:'Only data with process status of result to be reviewed can be selected',
confirmResetProcess:'Confirm reset process?',
confirmUrging:'Confirm urging ?',
@@ -1756,4 +1756,6 @@ module.exports = {
nonCompliance:'Non-Compliance',
toBeTracked:'To be tracked',
NA:'NA',
reviewAndPass:'Review and pass',
reviewAndReturn:'Review and return',
}
+5 -3
View File
@@ -1511,7 +1511,7 @@ module.exports = {
itemInformation:'条目信息',
modifyHistory:'历史记录',
returnToStudio:'退回至Studio',
Approved:'通过',
Approved:'通过',
returnedForApproval:'审批退回',
changeSetting:'修改配置',
referenceDeliverables:'引用交付物',
@@ -1532,8 +1532,8 @@ module.exports = {
data:"的数据",
compliancereport:'生成合规报告',
todocenter:'待办中心',
confirmApproval:'确认通过审',
confirmReturnForApproval:'确认退回审',
confirmApproval:'确认通过审',
confirmReturnForApproval:'确认退回审',
onlyDataStatusResultReviewedCanBeSelected:'只能选择流程状态为结果待审查的数据',
confirmResetProcess:'确认重置流程?',
confirmUrging:'确认催办',
@@ -1858,4 +1858,6 @@ module.exports = {
nonCompliance:'不符合',
toBeTracked:'待追踪',
NA:'不涉及',
reviewAndPass:'审查通过',
reviewAndReturn:'审查退回',
}
@@ -29,7 +29,7 @@
<a-select-option v-for="(item, key) in projectNameList"
:label="item.serialNumber"
:key="key"
:value="item.id">
:value="item.standId">
<span style="display: inline-block;width: 100%"
:title=" item.serialNumber ">
{{ item.serialNumber}}
@@ -808,7 +808,7 @@
return res.id === value
})
if (content && content.length > 0) {
this.formInline.bussDocumentLibraryId = content[0].id
this.formInline.bussDocumentLibraryId = content[0].standId
this.formInline.serialNumber = content[0].serialNumber
}
},
@@ -205,14 +205,14 @@
<div @click="ApprovedClick('rzgcssc_tg',$t('confirmApproval'))" v-if="roleSwitchingCode == 2"
class="operator-text">
<a-icon type="check-circle"/>
{{ $t('Approved') }}
{{ $t('reviewAndPass') }}
</div>
<!-- 审批退回-->
<div @click="ApprovedClick('rzgcssc_th',$t('confirmReturnForApproval'))" v-if="roleSwitchingCode == 2"
class="operator-text">
<a-icon type="close-circle"/>
{{ $t('returnedForApproval') }}
{{ $t('reviewAndReturn') }}
</div>
<!-- 任务接受-->