From ab0704f2238e9159d13c66a19e830bcb249b36b9 Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Tue, 02 Apr 2024 18:20:15 +0800
Subject: [PATCH] 注册页面的客服地址错误

---
 src/page/user/cashlist.vue |  150 +++++++++++++++++++++++---------------------------
 1 files changed, 69 insertions(+), 81 deletions(-)

diff --git a/src/page/user/cashlist.vue b/src/page/user/cashlist.vue
index 8a1f316..ed9e2fb 100644
--- a/src/page/user/cashlist.vue
+++ b/src/page/user/cashlist.vue
@@ -1,18 +1,5 @@
 <template>
   <div class="wrapper">
-    <!-- <div class="header">
-      <mt-header title="提现记录">
-        <router-link to="/user" slot="left">
-          <mt-button icon="back">我的</mt-button>
-        </router-link>
-      </mt-header>
-    </div> -->
-    <div class="text-center">
-      <div class="btn-group">
-        <a href="#/cash" class="with-draw-btn">提现</a>
-        <a href="javascript:;" class="with-draw-detai-btn on">记录</a>
-      </div>
-    </div>
     <div>
       <div class="box page-part transaction">
         <div class="box-contain clearfix">
@@ -20,98 +7,99 @@
         </div>
       </div>
     </div>
-
   </div>
 </template>
 
 <script>
-import cashList from './compontents/cash-list'
+import cashList from "./compontents/cash-list";
 
 export default {
   components: {
-    cashList
+    cashList,
   },
   props: {},
-  data () {
+  data() {
     return {
-      number: ''
-    }
+      number: "",
+    };
   },
   watch: {},
   computed: {},
-  created () {},
-  mounted () {
-    if (this.$state.theme =='red') {
-        document.body.classList.remove('black-bg')
-        document.body.classList.add('red-bg')
+  created() {},
+  mounted() {
+    if (this.$state.theme == "red") {
+      document.body.classList.remove("black-bg");
+      document.body.classList.add("red-bg");
     }
   },
-  beforeDestroy () {
-    if (this.$state.theme =='red') {
-      document.body.classList.remove('red-bg')
-      document.body.classList.add('black-bg')
+  beforeDestroy() {
+    if (this.$state.theme == "red") {
+      document.body.classList.remove("red-bg");
+      document.body.classList.add("black-bg");
     }
   },
   methods: {
-    toSure () {
+    toSure() {
       // 确定
-    }
-  }
-}
+    },
+  },
+};
 </script>
 <style lang="less" scoped>
-  .mint-header {
-    // background: #f4f4f4;
-    margin-bottom: 0.2rem;
-  }
+.mint-header {
+  // background: #f4f4f4;
+  margin-bottom: 0.2rem;
+}
+.wrapper {
+  padding-bottom: 100px;
+}
+.btn-group {
+  // background: #f4f4f4;
+  text-align: center;
+  margin: 0 auto;
+  margin-bottom: 0.5rem;
 
-  .btn-group {
-    // background: #f4f4f4;
+  a {
+    display: inline-block;
     text-align: center;
-    margin: 0 auto;
-    margin-bottom: 0.5rem;
-
-    a {
-      display: inline-block;
-      text-align: center;
-      font-size: 0.29rem;
-      height: 0.7rem;
-      line-height: 0.6rem;
-      width: 1.44rem;
-      margin: 0;
-      margin-top: 0;
-      padding: 0;
-    }
-
-    .with-draw-btn {
-      position: relative;
-      right: -10px;
-      width: 1.51rem;
-      border-top-left-radius: 0.695rem;
-      border-bottom-left-radius: 0.695rem;
-    }
-
-    .with-draw-detai-btn {
-      border-top-right-radius: 0.695rem;
-      border-bottom-right-radius: 0.695rem;
-    }
-
-    .on {
-      color: #fff;
-    }
+    font-size: 0.29rem;
+    height: 0.7rem;
+    line-height: 0.6rem;
+    width: 1.44rem;
+    margin: 0;
+    margin-top: 0;
+    padding: 0;
   }
 
-  .transaction {
-    margin-top: 0.2rem;
-    color: rgba(100, 100, 100, 0.78);
-
-    .transaction-title {
-      padding: 0.15rem 0.3rem;
-    }
-
-    .empty {
-      height: 2.8rem;
-      line-height: 2.8rem;
-    }
+  .with-draw-btn {
+    position: relative;
+    right: -10px;
+    width: 1.51rem;
+    border-top-left-radius: 0.695rem;
+    border-bottom-left-radius: 0.695rem;
   }
+
+  .with-draw-detai-btn {
+    border-top-right-radius: 0.695rem;
+    border-bottom-right-radius: 0.695rem;
+  }
+
+  .on {
+    color: #fff;
+  }
+}
+
+.transaction {
+  margin-top: 0.2rem;
+  color: rgba(100, 100, 100, 0.78);
+
+  .transaction-title {
+    padding: 0.15rem 0.3rem;
+  }
+
+  .empty {
+    height: 2.8rem;
+    line-height: 2.8rem;
+  }
+}
 </style>

--
Gitblit v1.9.3