修改UAT提出的问题
This commit is contained in:
@@ -735,7 +735,7 @@ module.exports = {
|
||||
regulatoryTaskConfirmation: 'Regulation Task Confirmed ',
|
||||
certificationStart: 'Homo Completed ',
|
||||
preHomoCompletion: 'Pre-Homo Completed ',
|
||||
certificationEnd: 'Homo Approved ',
|
||||
certificationEnd: 'Homo KO',
|
||||
directoryName: 'Catalogue Name',
|
||||
batch: 'Batch',
|
||||
uploadTime: 'Upload Time',
|
||||
@@ -1447,12 +1447,12 @@ module.exports = {
|
||||
select:'select',
|
||||
onlyDataWithProcessStatusDeleted:'Only data with process status of list to be released and approved can be deleted',
|
||||
complianceCertificationProgram:'Compliance & Homologation Program',
|
||||
listPublishing:'List Release',
|
||||
responsibilityConfirmation:'Responsibility Confirm',
|
||||
designVerification:'Design Check',
|
||||
getStarted:'Pre-Homo Starts',
|
||||
certificationStartOne:'Homo Starts',
|
||||
verificationAndVerification:'Validation Check',
|
||||
listPublishing:'List Publishing',
|
||||
responsibilityConfirmation:'Responsibility Confirmation',
|
||||
designVerification:'Design Verification',
|
||||
getStarted:'Get Started',
|
||||
certificationStartOne:'Certification Start',
|
||||
verificationAndVerification:'Verification And Verification',
|
||||
projectInterfacePersonRegulationEngineerSetting:'Project Interface Person - Regulation Engineer Setting',
|
||||
projectInterfacePersonCertificationEngineerSetting:'Project Interface Person - Certification Engineer Setting',
|
||||
registrationnumber:'Product registration number',
|
||||
@@ -1705,7 +1705,7 @@ module.exports = {
|
||||
softwareversion:'Software version',
|
||||
returntofill:'Return to fill',
|
||||
thereAreCurrentlyNoRegulationsToHandle:'No regulations to be processed now',
|
||||
certificationSubmission:'Application Submitted',
|
||||
certificationSubmission:'Certification Submission',
|
||||
upgradecompletion:'Upgrade completion',
|
||||
implementedupgrade:'Whether the implemented upgrade is consistent with the record',
|
||||
numberofvehicles:'Number of vehicles that have completed upgrades',
|
||||
|
||||
@@ -111,12 +111,11 @@
|
||||
this.syncReport = res.result.syncReport ? res.result.syncReport : []
|
||||
this.dutyTerritory = res.result.dutyTerritory ? res.result.dutyTerritory : []
|
||||
this.getEcharts()
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getoptions() {
|
||||
let id = ''
|
||||
if (this.idList && this.idList.length > 0) {
|
||||
@@ -134,6 +133,7 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getonChange(value) {
|
||||
this.collectingpercentage = []
|
||||
this.collectingquantity = []
|
||||
@@ -145,6 +145,7 @@
|
||||
this.syncReportquantity = []
|
||||
this.getData(value)
|
||||
},
|
||||
|
||||
onChange(value) {
|
||||
this.collectingpercentage = []
|
||||
this.collectingquantity = []
|
||||
@@ -155,8 +156,8 @@
|
||||
this.syncReportpercentage = []
|
||||
this.syncReportquantity = []
|
||||
this.getEcharts()
|
||||
|
||||
},
|
||||
|
||||
getEcharts(chart, title, color, data, num) {
|
||||
this.collecting.forEach((item, index) => {
|
||||
this.collectingpercentage.push(item.percentage)
|
||||
@@ -342,6 +343,7 @@
|
||||
option && myChart.setOption(option, true)
|
||||
|
||||
},
|
||||
|
||||
mainLeftEcharts(data, color) {
|
||||
this.getEcharts('main-left', this.$t('Parametercollection'), color, data, 1)
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -133,12 +133,14 @@
|
||||
<template slot="title">
|
||||
<span>{{ val.time.slice(0, 11) }}</span>
|
||||
</template>
|
||||
<img v-if="val.status == 1" src="../../../assets/huiBottom.png" class="process-content-left"
|
||||
alt="">
|
||||
<img v-else-if="val.status == 2" src="../../../assets/kongBottom.png"
|
||||
<img @click="statusClick(val)" v-if="val.status == 1" src="../../../assets/huiBottom.png"
|
||||
class="process-content-left"
|
||||
alt="">
|
||||
<img v-else-if="val.status == 3" src="../../../assets/shiBottom.png" class="process-content-left"
|
||||
<img @click="statusClick(val)" v-else-if="val.status == 2" src="../../../assets/kongBottom.png"
|
||||
class="process-content-left"
|
||||
alt="">
|
||||
<img @click="statusClick(val)" v-else-if="val.status == 3" src="../../../assets/shiBottom.png"
|
||||
class="process-content-left"
|
||||
alt="">
|
||||
</a-tooltip>
|
||||
|
||||
@@ -206,11 +208,13 @@
|
||||
<!-- </a-table>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<statistics ref="statisticsRef"/>
|
||||
</a-card>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getAction, postAction, deleteAction, downloadFile } from '@/api/manage'
|
||||
import statistics from './components/statistics'
|
||||
import * as echarts from 'echarts'
|
||||
import moment from 'moment'
|
||||
import { ResizeHeader, ResizeColumnProvide } from '@/mixins/header'
|
||||
@@ -218,6 +222,9 @@
|
||||
export default {
|
||||
name: 'index',
|
||||
mixins: [ResizeHeader, ResizeColumnProvide],
|
||||
components: {
|
||||
statistics
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
queryParam: {},
|
||||
@@ -571,6 +578,9 @@
|
||||
}
|
||||
downloadFile('/project/ProjectStatusBoardController/exportXls',
|
||||
this.$t('GRPSystemProjectProgressStatistics') + '.xls', query, this.Deselect)
|
||||
},
|
||||
statusClick(val) {
|
||||
this.$refs.statisticsRef.getData(val)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user