zxr 2 jaren geleden
bovenliggende
commit
4b0f740476

+ 3 - 3
src/views/barracksManagement/barracks/index.vue

@@ -84,7 +84,7 @@
     <div class="hezi">
       <div class="tji">营房统计</div>
       <div style="display: flex; flex-wrap: wrap; padding: 11px 20px">
-        <div style="width:33.3%; display: flex; align-items: center; height: 100px">
+        <div style="width:30%; display: flex; align-items: center; height: 100px">
           <div class="div-l" style="flex: 2; text-align: right; margin-right: 30px">
             <span>公寓</span>
           </div>
@@ -94,7 +94,7 @@
             </span>
           </div>
         </div>
-        <div style="width:33.3%; display: flex; align-items: center; height: 100px">
+        <div style="width:30%; display: flex; align-items: center; height: 100px">
           <div class="div-l" style="flex: 2; text-align: right; margin-right: 30px">
             <span>宿舍</span>
           </div>
@@ -104,7 +104,7 @@
             </span>
           </div>
         </div>
-        <div style="width:33.3%; display: flex; align-items: center; height: 100px">
+        <div style="width:30%; display: flex; align-items: center; height: 100px">
           <div class="div-l" style="flex: 2; text-align: right; margin-right: 30px">
             <span>营房</span>
           </div>

+ 6 - 2
src/views/materialManagement/WarehouseStatistics/index.vue

@@ -27,8 +27,8 @@
         <li v-for="(item, i) in lieList" :key="i + ' '">
           <div class="names">{{ item.dictLabel }}</div>
           <div class="btn">
-            <el-button size="btJS" @click="chuku(item.dictValue)">出库</el-button>
-            <el-button size="btJS" @click="ruku(item.dictLabel)">入库</el-button>
+            <el-button size="btJS" style="padding-right:10px;" @click="chuku(item.dictValue)">出库记录</el-button>
+            <el-button size="btJS" @click="ruku(item.dictLabel)">入库记录</el-button>
           </div>
         </li>
       </ul>
@@ -415,4 +415,8 @@ li {
   margin-top: 20px;
   height: 50px;
 }
+.el-button--btJS {
+  width: 70px;
+  text-align: center;
+}
 </style>

+ 1 - 1
src/views/peopleManage/PersonnelStatistics/index.vue

@@ -20,7 +20,7 @@
       </div>
     </div>
     <el-table :data="peopleList" :header-cell-style="{ background: '#003C69', color: 'white' }">
-      <el-table-column type="selection" width="55" align="center" />
+      <!-- <el-table-column type="selection" width="55" align="center" /> -->
       <el-table-column label="单位名称" align="center" prop="name" />
       <el-table-column label="军官" align="center" prop="zbgb" />
       <el-table-column label="士官" align="center" prop="zbsb"></el-table-column>