xxm 6 anni fa
parent
commit
b67f640628
1 ha cambiato i file con 23 aggiunte e 3 eliminazioni
  1. 23 3
      pages/main/index/cats.vue

+ 23 - 3
pages/main/index/cats.vue

@@ -1,5 +1,5 @@
 <template>
-  <section id="cert-check" class>
+  <section id="cert-check">
     <div class="table cats cats-boxs">
       <header>
         <el-form :inline="true" :model="queryForm" class="form-inline">
@@ -207,7 +207,8 @@
         </div>
       </div>
     </div>
-    <div class>
+
+    <div>
       <el-pagination
         background
         @current-change="changePagination"
@@ -333,7 +334,7 @@ export default {
     async getTableData() {
       let body = { page: this.currentPage, page_size: this.currentPageSize };
       const res = await this.$post("/api/admin/cert/getUserList", body);
-      data = res.data;
+      var data = res.data;
       env = data.current_env;
     },
     clickUID(uid) {
@@ -608,4 +609,23 @@ export default {
   // height: calc(100% - 200px);
   // overflow: auto;
 }
+.clear::after {
+  display: block;
+  clear: both;
+  content: "";
+}
+.inlineb {
+  display: inline-block;
+}
+.floatl {
+  float: left;
+}
+.floatr {
+  float: right;
+}
+.table {
+  height: calc(100% - 40px);
+}
+#main {
+}
 </style>