Browse Source

修改控制台输出

master
liaoxinyu 2 years ago
parent
commit
c43da213c3
  1. 4
      layout/vDropdwon.vue
  2. 2
      pages/assets/recharge.vue
  3. 2
      pages/transfer/index.vue
  4. 2
      plugins/datafeed.js

4
layout/vDropdwon.vue

@ -58,7 +58,7 @@ export default {
leverShow:{
deep: true,
handler:function(newVal,oldVal) {
console.log(newVal, '下拉组件leverShow更新');
// console.log(newVal, 'leverShow');
this.$nextTick(() => {
this.text=this.list[newVal].label;
})
@ -67,7 +67,7 @@ export default {
list:{
deep: true,
handler:function(newVal,oldVal) {
console.log(newVal, '下拉组件list更新');
// console.log(newVal, 'list');
if(this.contract==1&&this.list){
this.text=this.list[1].label
}else if(this.contract==0&&this.list){

2
pages/assets/recharge.vue

@ -174,7 +174,7 @@ export default {
coin(n) {
if (n) {
this.form.address = "";
console.info(this.coin)
// console.info(this.coin)
if (this.coin != "USDT") {
this.rechargeType = 1;
}else{

2
pages/transfer/index.vue

@ -189,7 +189,7 @@ export default {
}else{
this.tag = 1
}
console.log( this.accountMap )
// console.log( this.accountMap )
},
//
fundsTransfer() {

2
plugins/datafeed.js

@ -3,7 +3,7 @@ class Datafeed {
this.self = vm;
}
onReady(callback) {
console.log('onReady')
// console.log('onReady')
var _this = this;
return new Promise(function (resolve) {
var configuration = _this.defaultConfiguration();

Loading…
Cancel
Save