zzzz
2024-04-22 a5f4dd223bd0fc3ef727891d68b830ef825e23ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<template>
  <div class="wrapper">
    <van-nav-bar
      :placeholder="true"
      :safe-area-inset-top="true"
      :title="$t('hj162')"
      left-arrow
      @click-left="$router.go(-1)"
    >
    </van-nav-bar>
    <div>
      <!-- <div class="box page-part transaction"> -->
      <div class="box-contain clearfix">
        <cashList></cashList>
      </div>
      <!-- </div> -->
    </div>
  </div>
</template>
 
<script>
import cashList from "./compontents/cash-list";
 
export default {
  components: {
    cashList,
  },
  props: {},
  data() {
    return {
      number: "",
    };
  },
  watch: {},
  computed: {},
  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");
    }
  },
  methods: {
    toSure() {
      // 确定
    },
  },
};
</script>
<style lang="less" scoped>
/deep/ .van-nav-bar__content {
  height: 65px;
}
/deep/ .van-nav-bar__title {
  font-family: "DINPro";
  width: 100%;
  height: 1.17333rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 0.48rem;
  color: #14181f;
}
 
.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;
 
  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;
  }
}
 
.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>