zzzz
2024-04-02 ab0704f2238e9159d13c66a19e830bcb249b36b9
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,51 +7,52 @@
        </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 () {
    return {
      number: ''
    }
      number: "",
    };
  },
  watch: {},
  computed: {},
  created () {},
  mounted () {
    if (this.$state.theme =='red') {
        document.body.classList.remove('black-bg')
        document.body.classList.add('red-bg')
    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')
    if (this.$state.theme == "red") {
      document.body.classList.remove("red-bg");
      document.body.classList.add("black-bg");
    }
  },
  methods: {
    toSure () {
      // 确定
    }
  }
}
    },
  },
};
</script>
<style lang="less" scoped>
  .mint-header {
    // background: #f4f4f4;
    margin-bottom: 0.2rem;
  }
.wrapper {
  padding-bottom: 100px;
}
  .btn-group {
    // background: #f4f4f4;
    text-align: center;