| | |
| | | <el-col :span="24"> |
| | | <el-row justify="space-between" class="p-h-16"> |
| | | <el-statistic title="场景数" :value="sceneNum" /> |
| | | <el-statistic title="问题数" :value="proNum" /> |
| | | <!-- <el-statistic title="单场景问题均值" :value="proEachSceneNum" /> --> |
| | | <el-statistic title="整改数" :value="changeNum" /> |
| | | <el-statistic title="整改通过数" :value="changePassNum" /> |
| | | <el-statistic title="问题整改率" :value="changePer" /> |
| | | <el-statistic title="整改通过率" :value="changePassPer" /> |
| | | <el-statistic title="问题/整改" :value="proNum + '/' + changePassNum" /> |
| | | <el-statistic title="单场景问题均值" :value="proEachSceneNum" /> |
| | | <!-- <el-statistic title="整改数" :value="changeNum" /> --> |
| | | <!-- <el-statistic title="整改通过数" :value="changePassNum" /> --> |
| | | <!-- <el-statistic title="整改提交率" :value="changePer" /> --> |
| | | <el-statistic title="整改率/(提交率)" :value="changePassPer + '/' + changePer" /> |
| | | </el-row> |
| | | <!-- <el-row justify="space-between" class="p-h-16"> |
| | | <el-statistic title="整改通过数" :value="changePassNum" /> |
| | |
| | | </el-text> --> |
| | | </el-col> |
| | | <!-- <el-col :span="6"> --> |
| | | <!-- <el-statistic title="有效整改率" :value="changePassPer" /> --> |
| | | <!-- <el-row justify="end"> |
| | | <!-- <el-statistic title="有效整改率" :value="changePassPer" /> --> |
| | | <!-- <el-row justify="end"> |
| | | <OptionTime v-model="time"></OptionTime> |
| | | </el-row> --> |
| | | <!-- </el-col> --> |
| | |
| | | if (this.proNum > 0) { |
| | | return Math.round((this.changeNum / this.proNum) * 100) + '%' |
| | | } else { |
| | | return '/' |
| | | return '-' |
| | | } |
| | | }, |
| | | changePassPer() { |
| | | if (this.proNum > 0) { |
| | | return Math.round((this.changePassNum / this.proNum) * 100) + '%' |
| | | } else { |
| | | return '/' |
| | | return '-' |
| | | } |
| | | } |
| | | }, |