zhulizhen 5 年之前
父節點
當前提交
8a1a936dad

+ 1 - 0
src/components/data_admin/buildData/recommend.vue

@@ -638,5 +638,6 @@
         line-height: 100vh;
         font-size: 20px;
         color: #b7c3c8;
+        background:#fff;
     }
 </style>

+ 1 - 1
src/components/ledger/handsontables/assets.vue

@@ -40,7 +40,7 @@
       <div
         style="width:100px;cursor: pointer;float:right; font-size:14px;margin-right:10px"
       >
-      <el-select v-model="onlyRead" @click="changeRead">
+      <el-select v-model="onlyRead" @click="changeRead" size="small">
         <el-option
           v-for="item in options"
           :key="item.value"

+ 1 - 1
src/components/ledger/handsontables/device.vue

@@ -39,7 +39,7 @@
         <div
         style="width:100px;cursor: pointer;float:right; font-size:14px;margin-right:10px"
       >
-      <el-select v-model="onlyRead" @click="changeRead">
+      <el-select v-model="onlyRead" @click="changeRead" size="small">
         <el-option
           v-for="item in options"
           :key="item.value"

+ 1 - 1
src/components/ledger/handsontables/system.vue

@@ -32,7 +32,7 @@
         <div
         style="width:100px;cursor: pointer;float:right; font-size:14px;margin-right:10px"
       >
-      <el-select v-model="onlyRead" @click="changeRead">
+      <el-select v-model="onlyRead" @click="changeRead" size="small">
         <el-option
           v-for="item in options"
           :key="item.value"

+ 9 - 6
src/views/data_admin/buildData/index.vue

@@ -89,7 +89,7 @@
                     </div>
                     <!-- 控制点位标签显示 -->
                     <div class="label_show">
-                        <el-button type="primary" @click="labelShowBtn">{{labelChecked}}</el-button>
+                        <el-button plain @click="labelShowBtn">{{labelChecked}}</el-button>
                         <!-- <div class="label_btn" @click="labelShowBtn">
                             <span>{{labelChecked}}</span>
                             <i class="iconfont" :class="!labelShow ? 'icon-unfold' : 'icon-packup'"></i>
@@ -107,17 +107,17 @@
                     <div class="undo_btn" @click="undo">
                         <!-- <i class="iconfont icon-undo"></i>
                         <i>撤回</i> -->
-                        <el-button type="primary">撤回</el-button>
+                        <el-button plain>撤回</el-button>
                     </div>
                     <div class="undo_btn" @click="refresh">
                         <!-- <i class="iconfont icon-shuaxin"></i>
                         <i>刷新</i> -->
-                        <el-button type="primary">刷新</el-button>
+                        <el-button plain>刷新</el-button>
                     </div>
                     <div class="undo_btn" @click="download">
                         <!-- <i class="iconfont icon-xiazai"></i>
                         <i>下载</i> -->
-                        <el-button type="primary">下载</el-button>
+                        <el-button plain>下载</el-button>
                     </div>
                     <p class="build_msg" v-show="buildMsgShow" :class="buildMsg ? 'blink' : ''">其他设备族的资产只能在对应页签内维护,设备族变更的资产刷新后不匹配的信息点值将丢失,将会在对应的页签内显示</p>
                 </div>
@@ -1823,12 +1823,15 @@
     .el-tabs__header{
         width: 100%;
     }
-    .el-tabs__content{
-        // width: 800px;
+    .el-dialog{
+       height: 100%;
     }
     .center{
         text-align: center
     }
+    .el-radio-button__inner{
+        width: 90px;
+    }
 }
 </style>