Browse Source

修改充值每次点击切换会重新进行请求,修改初级认证没有选择日期(H5),修改二维码和下载链接

master
liaoxinyu 2 years ago
parent
commit
a07436475b
  1. BIN
      src/assets/img/home/Ewmlogin.png
  2. BIN
      src/assets/img/home/catyapp.png
  3. BIN
      src/assets/img/home/coinobserv.png
  4. BIN
      src/assets/img/home/dfiqr.png
  5. BIN
      src/assets/img/home/qrcode.png
  6. 2
      src/components/CommonFooter.vue
  7. 1
      src/components/NewMsg.vue
  8. 2
      src/views/home/index.vue
  9. 2
      src/views/signIn/index.vue
  10. 2
      src/views/signUp/index.vue
  11. 24
      src/views/wallet/exchange-assets.vue

BIN
src/assets/img/home/Ewmlogin.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

BIN
src/assets/img/home/catyapp.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

BIN
src/assets/img/home/coinobserv.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
src/assets/img/home/dfiqr.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/img/home/qrcode.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

2
src/components/CommonFooter.vue

@ -251,7 +251,7 @@
<div style="font-size: 20px;">{{ $t("homeNewText.hh44",{name:"Coinobserv"}) }}</div>
<router-link class="jump_btn" to="/sign-up" v-if="!isLogin">{{ $t("homeNewText.hh48") }}</router-link>
<router-link class="jump_btn" to="/exchange" v-else>{{ $t("homeNewText.hh45") }}</router-link>
<img src="" alt="" style="width: 120px;height: 120px;background-color: #ccc;">
<img src="@/assets/img/home/coinobserv.png" alt="" style="width: 120px;height: 120px;background-color: #ccc;">
<div style="font-size: 16px; color: #9C9C9C;margin-top: 12px;text-align: center;">{{ $t("homeNewText.hh46",{name:"Coinobserv"}) }}</div>
</div>
</div>

1
src/components/NewMsg.vue

@ -86,6 +86,7 @@ export default {
this.list = [];
this.more = true;
this.myNotifiables();
this.myNotifiablesCount()
},
load() {
if (!this.more) return;

2
src/views/home/index.vue

@ -218,7 +218,7 @@
<div class="positionBox">
<div class="positionBox_box4">
<div class="trade_box">
<div class="trade_img"><img src="" style="border-radius: 10px;" alt=""></div>
<div class="trade_img"><img src="@/assets/img/home/coinobserv.png" style="border-radius: 10px;" alt=""></div>
<div style="margin-left: 15px;">
<div style="font-size: 18px;">{{ $t("homeNewText.hh24") }}</div>
<div style="font-weight: bold;margin-top: 30px;">IOS & Android apps</div>

2
src/views/signIn/index.vue

@ -3,7 +3,7 @@
<div class="sign_left">
<div class="sign_left_box">
<div style="width: 242px;height: 242px;background-color: #fff;line-height: 242px;text-align: center;border-radius: 10px;box-shadow: 0px 0px 6px 0px rgba(82, 72, 208, 0.25);">
<img src="" style="width: 205px;height: 205px;" />
<img src="@/assets/img/home/coinobserv.png" style="width: 205px;height: 205px;" />
</div>
<div style="font-size: 16px; color: #9C9C9C;margin-top: 12px;text-align: center;">{{ $t("homeNewText.hh46",{name:"Coinobserv"}) }}</div>
</div>

2
src/views/signUp/index.vue

@ -9,7 +9,7 @@
</div>
</div>
<div class="sign_right" style="width: 53%;background-color: #fff;">
<div class="form-access">
<div class="form-access" :style="{padding: step === 3 ? '150px 0px' : '0px'}">
<form class="register-body">
<div class="h3">
<span>{{$t('login.goRegister')}}</span>

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

@ -565,6 +565,9 @@
getEmailCodeLock: false,
JStime: 0,
tiemr: null,
bool:false,
address1:"",
address2:""
};
},
@ -575,7 +578,18 @@
depositeAdressType() {
this.getDepositeAdress();
},
//
depositeAdressType() {
this.deposite.address = ""
if(this.depositeAdressType==3&&this.bool==true){
this.getDepositeAdress();
}else{
this.deposite.address = this.address2
}
if(this.depositeAdressType==2){
this.deposite.address = this.address1
}
},
allAssets(val) {
if (val) {
this.cacheInputAssets = this.withdraw.amount;
@ -668,6 +682,13 @@
})
.then(data => {
this.deposite.address = data.address;
if(this.depositeAdressType==2){
this.address1 = data.address
}
if(this.depositeAdressType==3){
this.address2 = data.address
this.bool = false
}
})
.catch(err => {});
},
@ -679,6 +700,7 @@
this.deposite.coin_id = item.coin_id;
//
this.getDepositeAdress();
this.bool = true;
$("#deposite").modal("show");
} else {
// this.$message.error(this.$t("wallet.auth"))

Loading…
Cancel
Save