修改已知问题
This commit is contained in:
@@ -73,7 +73,7 @@ module.exports = {
|
||||
lessOrEqual: 'Less Than Or Equal To',
|
||||
user: 'User',
|
||||
numericalValue: 'Numerical Value',
|
||||
not: 'No',
|
||||
not: 'No.',
|
||||
EnterValue: 'Please Enter a Value',
|
||||
SavedQuery: 'Saved Query',
|
||||
NoQueriesSaved: 'No Queries Were Saved',
|
||||
@@ -612,7 +612,7 @@ module.exports = {
|
||||
task: 'Task',
|
||||
TaskCutOffTime: 'Due Date',
|
||||
Transfer: 'Transfer',
|
||||
CertificationDirectory: 'Certification directory',
|
||||
CertificationDirectory: 'Certification Catalogue',
|
||||
TaskRequirements: 'Task requirements',
|
||||
CertificationProgress: 'Homo Progress',
|
||||
CurrentProjectStatusEvaluation: 'Current State',
|
||||
@@ -781,7 +781,7 @@ module.exports = {
|
||||
notEvaluated: 'Not evaluated',
|
||||
cannotExceed: 'Cannot exceed',
|
||||
Characters: 'Characters',
|
||||
standardInformation: 'StandardInformation',
|
||||
standardInformation: 'Standard Information',
|
||||
VirtualList: 'VirtualList',
|
||||
importTemplate: 'Import Template',
|
||||
verificationConfirmationDeadline: 'Verification compliance confirmation deadline',
|
||||
@@ -811,7 +811,7 @@ module.exports = {
|
||||
yellow: 'Yellow',
|
||||
resultReported: 'Result Reported',
|
||||
TheDoesNotContainData: 'The maintenance list of the virtual list does not contain data',
|
||||
number: 'No',
|
||||
number: 'No.',
|
||||
Deadline: 'Deadline',
|
||||
toBeConfirmed: 'To be confirmed',
|
||||
designComplianceReview: 'Confirm design conformance',
|
||||
|
||||
+14
-3
@@ -50,9 +50,9 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="Virtual-detail-right">
|
||||
<ProjectDetailsName v-if="textTitle === '项目详情'"/>
|
||||
<ProjectDetailsName @TaskListChange="TaskListChange" v-if="textTitle === '项目详情'"/>
|
||||
<listOfRegulations v-else-if="textTitle === '法规清单'"/>
|
||||
<TaskList :isDisplayNum="isDisplayNum" v-else-if="textTitle === '任务清单'"/>
|
||||
<TaskList :isDisplayNum="isDisplayNum" :areaOfResponsibility="areaOfResponsibility" v-else-if="textTitle === '任务清单'"/>
|
||||
<ParameterItemCollectionList v-else-if="textTitle === '认证参数收集'" :paramsManifest='paramsManifest'/>
|
||||
<nonConformance v-else-if="textTitle === '未符合项'"/>
|
||||
</div>
|
||||
@@ -92,6 +92,7 @@
|
||||
title: this.$t('projectDetails'),
|
||||
textTitle: '认证参数收集',
|
||||
isDisplayNum: '',
|
||||
areaOfResponsibility:{},
|
||||
url: {
|
||||
logList: '/project/projectLawsInventoryLogEO/page',
|
||||
historicalVersionUrl: '',
|
||||
@@ -144,7 +145,17 @@
|
||||
this.isDisplayNum = res.result
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
TaskListChange(item){
|
||||
this.areaOfResponsibility = item
|
||||
this.textTitle = '任务清单'
|
||||
let textColor = document.getElementsByClassName('Virtual-detail-left-text-color')
|
||||
if (textColor && textColor.length > 0) {
|
||||
textColor[0].classList.remove('Virtual-detail-left-text-color')
|
||||
}
|
||||
let text = document.getElementsByClassName('Virtual-detail-left-text')
|
||||
text[2].classList.add('Virtual-detail-left-text-color')
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -415,7 +415,7 @@
|
||||
font-size: 14px;
|
||||
margin-right: 16px;
|
||||
margin-top: 3px;
|
||||
text-align: right;
|
||||
text-align: left;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
Reference in New Issue
Block a user