From af97e376db85a53b41c9fe069bd2948b59387e49 Mon Sep 17 00:00:00 2001 From: xyc <jc_xiong@hotmail.com> Date: 星期二, 05 十一月 2024 16:28:38 +0800 Subject: [PATCH] 优化工况管理右侧树形结构显示的后端处理速度 --- web/src/views/modules/baseReliability/ParamDataBasic.vue | 23 ++++++++++++++++++++--- 1 files changed, 20 insertions(+), 3 deletions(-) diff --git a/web/src/views/modules/baseReliability/ParamDataBasic.vue b/web/src/views/modules/baseReliability/ParamDataBasic.vue index 11869d5..5b497be 100644 --- a/web/src/views/modules/baseReliability/ParamDataBasic.vue +++ b/web/src/views/modules/baseReliability/ParamDataBasic.vue @@ -29,6 +29,7 @@ border @selection-change="table.selectionChangeHandle"> <!--<el-table-column type="selection" width="40"/>--> <el-table-column prop="name" label="鍚嶇О"/> + <el-table-column prop="basicUnitNum" label="鍗曞厓鏁伴噺"/> <el-table-column prop="basicMtbfRegulate" label="MTBF" align="right"> <template slot-scope="scope"> <span>{{ keepNumber(scope.row.basicMtbfRegulate) }}</span> @@ -37,6 +38,16 @@ <el-table-column prop="repairMttcr" label="MTTR" align="right"> <template slot-scope="scope"> <span>{{ keepNumber(scope.row.repairMttcr) }}</span> + </template> + </el-table-column> + <el-table-column prop="basicMtbfRegulSuccRate" label="鎴愬姛鐜�" align="right"> + <template slot-scope="scope"> + <span>{{keepNumber(scope.row.basicMtbfRegulSuccRate) }}</span> + </template> + </el-table-column> + <el-table-column prop="basicRunsNum" label="杩愯娆℃暟" align="right"> + <template slot-scope="scope"> + <span>{{scope.row.basicRunsNum}}</span> </template> </el-table-column> <el-table-column prop="basicMtbfOperatingRatio" label="杩愯姣�" align="right"> @@ -68,7 +79,9 @@ basicMtbfRegulate: '', repairMttcr: '', basicMtbfOperatingRatio: '', - ai: '' + ai: '', + basicMtbfRegulSuccRate:'', + basicRunsNum:'' }, defultKey: [] } @@ -79,8 +92,12 @@ computed: { keepNumber() { //杩囨护鍣ㄤ繚鐣�4涓哄皬鏁� return function (val) { // 瀵硅绠楀睘鎬ц繘琛屼紶鍙� - const numM = Number(val).toFixed(5); - return numM.substring(0, numM.length - 1); + let numM = 0.0 + if (val){ + numM = Number(val).toFixed(4); + numM.substring(0, numM.length - 1) + } + return numM; } }, }, -- Gitblit v1.9.1