1
jhzh
2025-08-26 42568bdd99cfaadd3f8d9059e5166e2e0b2b26d0
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
<template>
  <div class="bank_card_page">
    <van-nav-bar
      :placeholder="true"
      :safe-area-inset-top="true"
      :title="$t('关于我们')"
      left-arrow
      @click-left="$router.go(-1)"
    >
    </van-nav-bar>
    <div class="content">
      <!-- <div class="top_back">
                <div class="left_back_icon" @click="$router.go(-1)">
                    <img src="../../assets/img/zuojiantou.png" alt />
                </div>
            </div> -->
 
    <!--  <div class="titles">
        <span>{{ $t("关于我们") }}</span>
      </div> -->
      <div class="bank_name">
        {{
          $t('sgjj')
        }}
      </div>
      <div class="bank_name">
        {{
          $t('sgjj2')
        }}
      </div>
      <div class="bank_name">
        {{
          $t('sgjj3')
        }}
      </div>
    </div>
  </div>
</template>
 
<script>
import * as api from "@/axios/api";
import { Toast } from "mint-ui";
import { isNull, bankNoReg, isName } from "@/utils/utils";
 
export default {
  name: "bankCard1",
  data() {
    return {};
  },
  created() {},
  methods: {}
};
</script>
 
<style scoped lang="less">
/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;
 
}
 
.bank_card_page {
  width: 100%;
  height: 100%;
  background: #fff;
 
  .content {
    // width: 100%;
    margin: 20px;
    // padding: 0 0.6rem;
    background: rgb(247, 247, 247);
    border-radius: 0.2rem;
    .top_back {
      width: 100%;
      height: 2rem;
 
      > div {
        width: 10%;
        height: 100%;
        display: flex;
        align-items: center;
      }
 
      img {
        width: 0.6rem;
        height: 0.6rem;
      }
    }
 
    .titles {
      width: 100%;
      height: 1.5rem;
      font-size: 0.641rem;
      margin-top: 1rem;
 
      span {
        // font-weight: 600;
      }
    }
  }
 
  .bank_name {
    width: 100%;
    // height: 1.5rem;
    font-size: 18px;
    line-height: 25px;
    display: flex;
    padding: 0.2rem;
 
    margin-top: 0.3rem;
  }
}
</style>