From d0e1a3fb24d0ee76aa4ef1b0e042392b4d3ac794 Mon Sep 17 00:00:00 2001
From: jinlin <jinlin>
Date: 星期四, 07 十一月 2024 16:38:26 +0800
Subject: [PATCH] 预计参数多层次分级,新增型号增加namePath

---
 web/src/views/modules/baseReliability/ParamDataBasic.vue |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/web/src/views/modules/baseReliability/ParamDataBasic.vue b/web/src/views/modules/baseReliability/ParamDataBasic.vue
index 5b497be..3039eac 100644
--- a/web/src/views/modules/baseReliability/ParamDataBasic.vue
+++ b/web/src/views/modules/baseReliability/ParamDataBasic.vue
@@ -29,33 +29,33 @@
                       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">
+              <el-table-column prop="basicUnitNum" label="鍗曞厓鏁伴噺" align="center" width="100"/>
+              <el-table-column prop="basicMtbfRegulate" label="MTBF" align="right" width="120">
                 <template slot-scope="scope">
                   <span>{{  keepNumber(scope.row.basicMtbfRegulate) }}</span>
                 </template>
               </el-table-column>
-              <el-table-column prop="repairMttcr" label="MTTR" align="right">
+              <el-table-column prop="repairMttcr" label="MTTR" align="right" width="120">
                 <template slot-scope="scope">
                   <span>{{  keepNumber(scope.row.repairMttcr) }}</span>
                 </template>
               </el-table-column>
-              <el-table-column prop="basicMtbfRegulSuccRate" label="鎴愬姛鐜�" align="right">
+              <el-table-column prop="basicMtbfRegulSuccRate" label="鎴愬姛鐜�" align="right" width="100">
                 <template slot-scope="scope">
                   <span>{{keepNumber(scope.row.basicMtbfRegulSuccRate) }}</span>
                 </template>
               </el-table-column>
-              <el-table-column prop="basicRunsNum" label="杩愯娆℃暟" align="right">
+              <el-table-column prop="basicRunsNum" label="杩愯娆℃暟" align="right" width="100">
                 <template slot-scope="scope">
                   <span>{{scope.row.basicRunsNum}}</span>
                 </template>
               </el-table-column>
-              <el-table-column prop="basicMtbfOperatingRatio" label="杩愯姣�" align="right">
+              <el-table-column prop="basicMtbfOperatingRatio" label="杩愯姣�" align="right" width="100">
                 <template slot-scope="scope">
                   <span>{{keepNumber(scope.row.basicMtbfOperatingRatio) }}</span>
                 </template>
               </el-table-column>
-              <el-table-column prop="ai" label="鍙敤搴�" align="right">
+              <el-table-column prop="ai" label="鍙敤搴�" align="right" width="100">
                 <template slot-scope="scope">
                   <span>{{keepNumber(scope.row.ai)}}</span>
                 </template>

--
Gitblit v1.9.1