1
jhzh
2025-07-19 d37ceed2ad5b94bbfc71a8a4cbdb7b498ddf724d
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<template>
  <div style="background-color: #F8FAF9;">
    <van-nav-bar
      :placeholder="true"
      :safe-area-inset-top="true"
      :title="$t('智能日内')"
      left-arrow
      @click-left="onClickLeft"
    />
    <div class="body">
      <div class="body_title">
        <div class="body_title_txt">日股</div>
      </div>
      <div class="body_price">
        <div class="body_price_price">可用余额  <span style="font-weight: bold;">123123123 JPY </span></div>
        <div class="body_price_input">
          <input class="body_price_input_ipt" v-model="priceinput" placeholder="请输入参与金额" type="number"/>
        </div>
        <div class="body_price_tips">
          <div class="body_price_tips_left">限額: 100.00JPY-999,999,999,999.00JPY </div>
          <div class="body_price_tips_rigth">效益:3%-15%</div>
        </div>
      </div>
      <div class="btn">
        <div class="btn_txt">提交</div>
      </div>
      <div class="tips">
        <img class="tips_img" src="../../assets/img/tips.svg"/>
        以保证账户信息的真实性、有效性、避免洗钱诈骗风险、我们不会参与任何其他组织或者个人共享账户信息。
      </div>
    </div>
  </div>
</template>
 
<script>
// import tabsList from "./favorites/tabs";
import headers from "@/page/login/components/header.vue";
export default {
  components: {  headers },
  data() {
    return {
      gpcode: "",
      priceinput:'',
    };
  },
  methods: {
    onClickLeft() {
      this.$router.push("/home");
    },
    sousuo() {
      this.$refs.tabsList.sousuo = this.gpcode;
    },
    gpinput(e) {
      this.gpcode = e.target.value;
    },
  },
};
</script>
 
<style scoped lang="less">
  .tips_img{
    width: 14px;
    margin-right: 10px;
  }
  .tips{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0px 20px;
    margin-top: 20px;
    color: #8c8c8c;
    line-height: 30px;
  }
  .btn_txt{
    color: #fff;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
  }
  .btn{
    margin:0px 20px;
    margin-top: 60px;
    border-radius: 10px;
    background-color: #185546;
 
  }
  .body_price_tips{
    display: flex;
    margin: 40px 20px;
    justify-content: space-between;
    align-items: center;
    color: #8c8c8c;
  }
  .body_price_input_ipt{
    margin: 0 20px;
    height: 60px;
  }
  .body_price_input{
    margin: 0px 15px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
  }
  .body_price_price{
    display: flex;
    justify-content: end;
  }
  .body_price_price{
    display: flex;
    margin: 40px 15px;
  }
  .body_price{
    display: flex;
    flex-direction: column;
  }
  .body_title_txt{
    padding: 15px 0;
    width: max-content;
    border-bottom: 2px solid #185546;
    margin: 0 15px;
  }
  .body_title{
 
    border-bottom: 1px solid #dcdcdc;
  }
  .body{
    display: flex;
    flex-direction: column;
 
 
  }
   /deep/.van-nav-bar__content{
     background-color: #F8FAF9;
   }
.search {
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 22px;
  position: relative;
  z-index: 99;
 
  .search_content {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  .left_search {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    .search_img {
      width: 1rem;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      img {
        width: 0.5rem;
        height: 0.5rem;
      }
    }
 
    .search_input {
      width: 100%;
      overflow: hidden;
      height: 100%;
      display: flex;
    }
  }
 
  .right_search {
    width: 140px;
    line-height: 0.9rem;
    text-align: center;
    height: 100%;
    border-radius: 0.5rem;
    background-color: #0066ed;
    color: #ffffff;
    font-weight: bold;
    margin-left: 20px;
  }
}
/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: #185546;
}
</style>