zhulizhen 6 years ago
parent
commit
228326493b
3 changed files with 14 additions and 13 deletions
  1. 1 2
      src/test/zhulz/alarmCode.vue
  2. 12 10
      src/test/zhulz/index.vue
  3. 1 1
      src/test/zhulz/manageNote.vue

+ 1 - 2
src/test/zhulz/alarmCode.vue

@@ -9,7 +9,6 @@
         </div>
         <div class="table-box">
             <el-table
-            size="medium"
             ref="multipleTable"
             :loading="loading"
             :data="data"
@@ -95,7 +94,7 @@ export default {
   .table-box{
       height: 500px;
       overflow-y: auto;
-      margin-top: 30px;
+      margin-top: 10px;
   }
 }
 </style>

+ 12 - 10
src/test/zhulz/index.vue

@@ -59,7 +59,6 @@
                 border
                 tooltip-effect="dark"
                 style="width: 100%"
-                size="medium"
                 @selection-change="handleSelectionChange">
                 <el-table-column
                 type="selection"
@@ -384,29 +383,31 @@ export default {
 
 <style lang="less" scoped>
 .alarm-notes{
-    padding: 0 20px;
     .select-list{
-        padding-bottom: 20px;
+        padding: 0 10px 10px 10px;
         border-bottom: 1px solid #c2cedb;
+        background: #fff;
         .item{
-            margin-top: 20px;
+            margin-top: 10px;
             margin-right: 5px;
         }
         .btn-al{
-           margin-top: 20px;
+           margin-top: 10px;
            margin-right: 5px;
            display: inline-block; 
         }  
     }
     .sg-table{
-        padding: 20px 0;
+        margin:10px 0;
+        padding:10px;
+        background:#fff;
         .check-note{
             margin-left: 50px;
         }
         .btn-alarm{
             width: 200px;
             float: right;
-            margin-bottom: 20px;
+            margin-bottom: 10px;
         }
         th{
             text-align: center;
@@ -424,9 +425,10 @@ export default {
 .alarm-notes{
   .el-dialog__header{
       text-align: center;
-    //   background: #409EFF;
-    //   color: #ffffff;
-  }  
+  }
+  .el-dialog__body{
+      padding-top: 10px;
+  }
 }
 </style>
 

+ 1 - 1
src/test/zhulz/manageNote.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="manage-note">
     <div class="box" v-if="isrefresh">
-      <el-table :data="tableData" style="width: 100%" border size="medium"> 
+      <el-table :data="tableData" style="width: 100%" border> 
         <el-table-column label="姓名" align="center">
           <template slot-scope="scope">
             <el-input v-if="scope.row.edit" v-model.trim="scope.row.name" size="small" placeholder="请输入姓名"/>