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