Browse Source

修改注册 币币左侧tab切换

master
liaoxinyu 2 years ago
parent
commit
528a35fff5
  1. 2
      src/i18n/kor.json
  2. 17
      src/views/exchange/symbols.vue
  3. 2
      src/views/home/index.vue
  4. 2
      src/views/profile/certification.vue
  5. 5
      src/views/signUp/index.vue
  6. 4
      src/views/wallet/exchange-assets.vue

2
src/i18n/kor.json

@ -275,7 +275,7 @@
"confirmpassword":"두 번 의 비밀번호 가 일치 하지 않 습 니 다.",
"Remembered": "비밀번호를 기억하시나요?",
"text1": "안심하고 거래하세요!",
"text2": "XXX는 귀하의 자산에 대해 1:1 예비금을 보유하고 있으며 정기적으로 예비금 인증서의 감사 결과를 공개할 것입니다.",
"text2": "BTCoinmt는 귀하의 자산에 대해 1:1 예비금을 보유하고 있으며 정기적으로 예비금 인증서의 감사 결과를 공개할 것입니다.",
"text3": "우리와 함께 암호화폐 여행을 시작하세요"
},
"application": {

17
src/views/exchange/symbols.vue

@ -1,7 +1,7 @@
<template>
<div style="width:20%;background-color: #121212;margin-right: 7px;">
<div class="">
<div
<div
class="coin-change d-flex align-items-center py-2 pl-2 heading justify-content-between" style="border-bottom: 1px solid #2e2e2e;height: 43px;font-size: 16px;"
>{{ $t("contact.market") }}
</div>
@ -56,9 +56,12 @@
<td class="w-33 text-right">
{{ coin.coin_name == 'fav' ? item.close : item.price}}
</td>
<td class="w-33 text-right" :class="item.increaseStr.startsWith('-') ? 'red' : 'green'">
<td class="w-33 text-right" :class="getItemClass(item)">
{{ item.increaseStr }}
</td>
<!-- <td class="w-33 text-right" :class="item.increaseStr.startsWith('-') ? 'red' : 'green'">
{{ item.increaseStr }}
</td> -->
</tr>
</tbody>
</table>
@ -228,7 +231,15 @@ export default {
this.favList.marketInfoList = res||[];
})
.catch((err) => {});
}
},
// -
getItemClass(item) {
if (item && item.increaseStr && item.increaseStr.startsWith('-')) {
return 'red';
} else {
return 'green';
}
}
},
created() {

2
src/views/home/index.vue

@ -373,7 +373,7 @@
{{item.increaseStr}}
</div>
</div>
<div style="font-weight: bold;color: white;">{{ item.close }}</div>
<div style="font-weight: bold;color: white;margin-top: 5px;">{{ item.close }}</div>
<div>
<div style="color: #6b6f6c;font-size: 12px;"> {{omitTo(item.close*price_cny,2)}} USD</div>
</div>

2
src/views/profile/certification.vue

@ -365,6 +365,8 @@ export default {
}
Profile.primaryAuth(data)
.then(res => {
console.log(res,'111111');
console.log(data,'222222');
this.$message.success(this.$t("profile.preliminary"));
// this.setp++;
this.$router.push("/wallet/assets/exchange")

5
src/views/signUp/index.vue

@ -91,7 +91,8 @@
{{$t('login.enterEmailCode',{email:ajar.email,num:6})}}
<br />
{{$t('login.accountActivated')}}
<a href @click.prevent="step = 1;">{{$t('login.backOld')}}</a>
<div style="display: inline-block;" class="rightText" @click.prevent="step = 1;">{{$t('login.backOld')}}</div>
<!-- <a href @click.prevent="step = 1;">{{$t('login.backOld')}}</a> -->
</div>
<section class="my-codes">
<header class="my-codes__title">{{$t('login.verCode')}}</header>
@ -121,7 +122,7 @@
<section class="my-codes">
<header class="my-codes__title">Code</header>
<div class="my-codes__controls">
<input type="text" v-for="pos in 6" :key="pos" pattern="[0-9]*" @focus="current=pos" @blur="current=-1" ref="spaces" class="form-control" @keyup="handleKeyUp(pos-1, $event)" @input="handleInput(pos-1, $event)" @paste="autofill" />
<input style="color: #000;" type="text" v-for="pos in 6" :key="pos" pattern="[0-9]*" @focus="current=pos" @blur="current=-1" ref="spaces" class="form-control" @keyup="handleKeyUp(pos-1, $event)" @input="handleInput(pos-1, $event)" @paste="autofill" />
</div>
</section>
<aside class="prompt">

4
src/views/wallet/exchange-assets.vue

@ -12,13 +12,13 @@
<!-- <div class="w-6/24">{{$t('login.phone')}}</div> -->
<div class="w-5/24">{{$t('login.email')}}</div>
<div class="w-6/24">{{$t('wallet.Authentication')}}</div>
<div class="w-6/24">{{$t('wallet.countryRegion')}}</div>
<!-- <div class="w-6/24">{{$t('wallet.countryRegion')}}</div> -->
</div>
<div class="d-flex px-5 fn-16">
<!-- <div class="w-6/24">{{ phoneNumbe }}</div> -->
<div class="w-5/24">{{ userInfo.email }}</div>
<div class="w-6/24">{{ userInfo.user_auth_level_text }}</div>
<div class="w-6/24">{{ userInfo.country_code }}</div>
<!-- <div class="w-6/24">{{ userInfo.country_code }}</div> -->
</div>
</div>
</div>

Loading…
Cancel
Save