From aa2e71d1bbbd05a6eff9f2b1be724291ad4f3bf6 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Thu, 26 Aug 2021 15:43:48 +0800
Subject: [PATCH] 卡片样式

---
 src/components/Approval/Approval.vue |   36 ++++++++++++++++++------------------
 1 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/src/components/Approval/Approval.vue b/src/components/Approval/Approval.vue
index 159a348..2b63b16 100644
--- a/src/components/Approval/Approval.vue
+++ b/src/components/Approval/Approval.vue
@@ -65,10 +65,10 @@
     var d = this.data,
       b = [];
     for (var k in d) {
-      console.log({
-        label: d[k].menuName,
-        value: d[k].type + "",
-      });
+      // console.log({
+      //   label: d[k].menuName,
+      //   value: d[k].type + "",
+      // });
       b.push({
         label: d[k].menuName,
         value: d[k].type + "",
@@ -187,20 +187,20 @@
           Object.assign(params, this.query)
         ).then((ress) => {
           this.data = this.data.concat(ress.data.data.records);
-        });
-        getListrek(
-          page.currentPage,
-          page.pageSize,
-          Object.assign(params, this.query)
-        ).then((resk) => {
-          this.data = this.data.concat(resk.data.data.records);
-        });
-        getListrev(
-          page.currentPage,
-          page.pageSize,
-          Object.assign(params, this.query)
-        ).then((resv) => {
-          this.data = this.data.concat(resv.data.data.records);
+          getListrek(
+            page.currentPage,
+            page.pageSize,
+            Object.assign(params, this.query)
+          ).then((resk) => {
+            this.data = this.data.concat(resk.data.data.records);
+            getListrev(
+              page.currentPage,
+              page.pageSize,
+              Object.assign(params, this.query)
+            ).then((resv) => {
+              this.data = this.data.concat(resv.data.data.records);
+            });
+          });
         });
       });
     },

--
Gitblit v1.9.3