diff --git a/src/api/admin/mm-wallet-white-list.js b/src/api/admin/mm-wallet-white-list.js
index 1fbceec..84c1fd0 100644
--- a/src/api/admin/mm-wallet-white-list.js
+++ b/src/api/admin/mm-wallet-white-list.js
@@ -51,3 +51,13 @@ export function batchInsertMmWalletWhiteList(data) {
     data: data,
   });
 }
+
+// 导出MmWalletWhiteList
+export function exportMmWalletWhiteList(query) {
+  return request({
+    url: "/api/v1/mm-wallet-white-list/export",
+    method: "get",
+    params: query,
+    responseType: "blob",
+  });
+}
\ No newline at end of file
diff --git a/src/layout/index.vue b/src/layout/index.vue
index 8d36328..ea321ef 100644
--- a/src/layout/index.vue
+++ b/src/layout/index.vue
@@ -105,7 +105,7 @@ export default {
 
       needGoolAuth()
         .then(response => {
-          console.log("needGoogleAuth", response)
+          
           if (response.code === 200) {
             if (response.data.needGooglAuth) {
               this.needGoolAuthData.otpAuthUrl = response.data.otpAuthUrl
diff --git a/src/utils/request.js b/src/utils/request.js
index 7ffe6a3..0b162d3 100644
--- a/src/utils/request.js
+++ b/src/utils/request.js
@@ -48,7 +48,6 @@ service.interceptors.response.use(
       return response.data
     }
     const code = response.data.code
-    console.log("xx",code)
 
     if (code === 401) {
       store.dispatch('user/resetToken')
diff --git a/src/views/admin/mm-wallet-white-list/index.vue b/src/views/admin/mm-wallet-white-list/index.vue
index 9cb9b86..3c82810 100644
--- a/src/views/admin/mm-wallet-white-list/index.vue
+++ b/src/views/admin/mm-wallet-white-list/index.vue
@@ -8,8 +8,8 @@
                     
                     
                         
-                            
+                            
                         
                     
 
@@ -26,8 +26,8 @@
                         
                     
                     
-                        批量新增
+                        批量新增
                         
                     
                     
@@ -40,14 +40,24 @@
                             icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete">删除
                         
                     
+
+                    
+                        
+                            导出
+                            
+                        
+                    
                 
 
                 
                     
                     
-                    
+                    
                         
-                            {{ statusFormat(scope.row.status) }}
+                            {{ statusFormat(scope.row.status)
+                                }}
                         
                     
                     
@@ -98,13 +108,14 @@