18 changed files with 44208 additions and 51563 deletions
@ -1,381 +0,0 @@ |
|||
<template> |
|||
<view class="hr"> |
|||
<navigation :showBack="true" :bgnum="true"> |
|||
<text class="big_title"> |
|||
{{i18n.Addaddress}} |
|||
</text> |
|||
</navigation> |
|||
|
|||
<view class="main"> |
|||
<view class="main_con"> |
|||
<view class="item"> |
|||
<view class="top flex"> |
|||
<view class="text1"> |
|||
{{i18n.curr}} |
|||
</view> |
|||
</view> |
|||
<view class="inputcon"> |
|||
<input type="text" value="" v-model="value" |
|||
placeholder-style="font-size: 30rpx; color: #D0D0D2;" |
|||
placeholder="Please select the currency" class="input1" @click="showSelect()" |
|||
:disabled="true" /> |
|||
<image src="../../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="img1"> |
|||
</image> |
|||
</view> |
|||
</view> |
|||
|
|||
<view class="item"> |
|||
<view class="top flex"> |
|||
<view class="text1"> |
|||
{{i18n.Address}} |
|||
</view> |
|||
</view> |
|||
<view class="inputcon"> |
|||
<input type="text" value="" @input="showSave()" |
|||
placeholder-style="font-size: 30rpx; color: #D0D0D2;" |
|||
placeholder="Please enter the recipient address" class="input1" v-model="bigAddress" /> |
|||
<image src="../../../../static/tongyonh/Frame330.png" mode="aspectFit" class="img2" |
|||
@click="chooseImage"></image> |
|||
</view> |
|||
|
|||
</view> |
|||
|
|||
<view class="item"> |
|||
<view class="top flex"> |
|||
<view class="text1"> |
|||
{{i18n.Name}} |
|||
</view> |
|||
</view> |
|||
<view class="inputcon"> |
|||
<input type="text" @input="showSave" value="" |
|||
placeholder-style="font-size: 30rpx; color: #D0D0D2;" placeholder="Please enter the name" |
|||
class="input1" v-model="addressName" /> |
|||
</view> |
|||
</view> |
|||
|
|||
<view class="btn" @click="handove()" :class="save?'sheng':''"> |
|||
{{i18n.Save}} |
|||
</view> |
|||
|
|||
</view> |
|||
|
|||
<u-mask z-index="10" :show="show" @click="show = false"></u-mask> |
|||
</view> |
|||
<view class="big_con w100" v-if="show"> |
|||
<view class="tiao" @click="show=false,value=''"></view> |
|||
<view class="title"> |
|||
{{i18n.selectcurrency}} |
|||
</view> |
|||
<view class="bottom_con zindex" v-if="show"> |
|||
<u-radio-group v-model="value"> |
|||
<view class="item flex" v-for="(item, index) in list" :key="index" @click="handove2(item,index)"> |
|||
<view class="text1 flex"> |
|||
<image :src="item.url" mode="aspectFit" class="img"></image> |
|||
<view class="textcon"> |
|||
<view class="text1"> |
|||
{{item.lang}} |
|||
</view> |
|||
<view class="text2"> |
|||
{{item.name}} |
|||
</view> |
|||
</view> |
|||
|
|||
</view> |
|||
<u-radio :name="item.name" :disabled="item.disabled" active-color="#5B53FF"> |
|||
|
|||
</u-radio> |
|||
</view> |
|||
</u-radio-group> |
|||
<view class="select_btn" @click="selectA"> |
|||
{{i18n.langSelect}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
|
|||
|
|||
|
|||
</template> |
|||
|
|||
<script> |
|||
import cont from "@/components/navigation/navigation.vue" |
|||
export default { |
|||
data() { |
|||
return { |
|||
|
|||
info: {}, |
|||
addressName: '', |
|||
bigAddress: '', |
|||
save: false, |
|||
show: false, |
|||
checked: false, |
|||
list: [{ |
|||
url: '../../../../static/tongyonh/bye.png', |
|||
lang: 'Bitcoin', |
|||
disabled: false, |
|||
name: "BTC" |
|||
}, |
|||
{ |
|||
url: '../../../../static/tongyonh/Frame3299.png', |
|||
lang: 'Ethereum', |
|||
disabled: false, |
|||
name: "ETH" |
|||
}, |
|||
{ |
|||
url: '../../../../static/tongyonh/tron1.png', |
|||
lang: 'Tron', |
|||
disabled: false, |
|||
name: "TRX" |
|||
}, |
|||
|
|||
], |
|||
// u-radio-group的v-model绑定的值如果设置为某个radio的name,就会被默认选中 |
|||
value: '', |
|||
transfer:'', |
|||
} |
|||
}, |
|||
onLoad() { |
|||
|
|||
}, |
|||
computed: { |
|||
i18n() { |
|||
return this.$t('index') |
|||
}, |
|||
}, |
|||
methods: { |
|||
selectA() { |
|||
this.show = false |
|||
}, |
|||
// 唤醒摄像头 |
|||
chooseImage() { |
|||
var _this = this |
|||
uni.chooseImage({ |
|||
count: 1, //默认9 |
|||
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有 |
|||
sourceType: ['album', 'camera'], //从相册选择、摄像头 |
|||
success: function(res) { |
|||
_this.imgShow = res.tempFilePaths[0] |
|||
} |
|||
}); |
|||
}, |
|||
handove2(item, index) { |
|||
this.value = item.name; |
|||
this.show = false; |
|||
|
|||
}, |
|||
showSave() { |
|||
if (this.bigAddress != '' && this.name != '' && this.value != '') { |
|||
this.save = true; |
|||
} else { |
|||
this.save = false; |
|||
} |
|||
}, |
|||
handove(item) { |
|||
if (this.value == '') { |
|||
this.save = false |
|||
uni.showToast({ |
|||
title: 'Please select a currency', |
|||
icon: 'none', |
|||
duration: 1500 |
|||
}) |
|||
return; |
|||
} |
|||
if (this.bigAddress == '' || this.addressName == '') { |
|||
this.save = false |
|||
uni.showToast({ |
|||
title: 'Address or name cannot be empty', |
|||
icon: 'none', |
|||
duration: 1500 |
|||
}) |
|||
return; |
|||
} |
|||
|
|||
if (this.value == 'BTC') { |
|||
|
|||
console.log(uni.getStorageSync('BTCAddressInfo'), 777) |
|||
if (uni.getStorageSync('BTCAddressInfo').length > 0) { |
|||
let btc = new Object; |
|||
btc.address = this.bigAddress; |
|||
btc.name = this.addressName |
|||
btc.coinList = [{ |
|||
name: "BTC", |
|||
name2: "BTC", |
|||
xname: 'Bitcoin', |
|||
icon: require('@/static/tongyonh/bye.png') |
|||
}]; |
|||
let BTCAddressInfo = [] |
|||
BTCAddressInfo = uni.getStorageSync('BTCAddressInfo') |
|||
BTCAddressInfo.push(btc) |
|||
uni.setStorageSync('BTCAddressInfo', BTCAddressInfo) |
|||
console.log(BTCAddressInfo, 1111) |
|||
uni.showToast({ |
|||
title: 'Successfully', |
|||
icon: 'success', |
|||
duration: 1500 |
|||
}) |
|||
uni.reLaunch({ |
|||
url: '../address/index2' |
|||
}) |
|||
} else { |
|||
let btc = new Object; |
|||
btc.address = this.bigAddress; |
|||
btc.name = this.addressName |
|||
btc.coinList = [{ |
|||
name: "BTC", |
|||
name2: "BTC", |
|||
xname: 'Bitcoin', |
|||
icon: require('@/static/tongyonh/bye.png') |
|||
}]; |
|||
console.log(btc, 4444) |
|||
let BTCAddressInfo = [] |
|||
BTCAddressInfo.push(btc) |
|||
console.log(BTCAddressInfo, 4444) |
|||
uni.setStorageSync('BTCAddressInfo', BTCAddressInfo) |
|||
|
|||
uni.showToast({ |
|||
title: 'Successfully', |
|||
icon: 'success', |
|||
duration: 1500 |
|||
}) |
|||
setTimeout(() => { |
|||
uni.reLaunch({ |
|||
url: '../address/index2' |
|||
}) |
|||
}, 1500) |
|||
} |
|||
|
|||
} |
|||
|
|||
|
|||
if (this.value == 'ETH') { |
|||
console.log(uni.getStorageSync('ETHAddressInfo'), 777) |
|||
if (uni.getStorageSync('ETHAddressInfo').length > 0) { |
|||
let eth = new Object; |
|||
eth.address = this.bigAddress; |
|||
eth.name = this.addressName |
|||
eth.coinList = [{ |
|||
name: "ETH", |
|||
name2: "ETH", |
|||
xname: 'Ethereum', |
|||
icon: require('@/static/tongyonh/Frame3299.png') |
|||
}]; |
|||
let ETHAddressInfo = [] |
|||
ETHAddressInfo = uni.getStorageSync('ETHAddressInfo') |
|||
ETHAddressInfo.push(eth) |
|||
uni.setStorageSync('ETHAddressInfo', ETHAddressInfo) |
|||
console.log(ETHAddressInfo, 1111) |
|||
uni.showToast({ |
|||
title: 'Successfully', |
|||
icon: 'success', |
|||
duration: 1500 |
|||
}) |
|||
|
|||
setTimeout(() => { |
|||
uni.reLaunch({ |
|||
url: '../address/index2' |
|||
}) |
|||
}, 1500) |
|||
|
|||
} else { |
|||
let eth = new Object; |
|||
eth.address = this.bigAddress; |
|||
eth.name = this.addressName |
|||
eth.coinList = [{ |
|||
name: "ETH", |
|||
name2: "ETH", |
|||
xname: 'Ethereum', |
|||
icon: require('@/static/tongyonh/Frame3299.png') |
|||
}]; |
|||
console.log(eth, 4444) |
|||
let ETHAddressInfo = [] |
|||
ETHAddressInfo.push(eth) |
|||
console.log(ETHAddressInfo, 4444) |
|||
uni.setStorageSync('ETHAddressInfo', ETHAddressInfo) |
|||
uni.showToast({ |
|||
title: 'Successfully', |
|||
icon: 'success', |
|||
duration: 1500 |
|||
}) |
|||
setTimeout(() => { |
|||
uni.reLaunch({ |
|||
url: '../address/index2' |
|||
}) |
|||
}, 1500) |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
if (this.value == 'TRX') { |
|||
console.log(uni.getStorageSync('TRXAddressInfo'), 777) |
|||
if (uni.getStorageSync('TRXAddressInfo').length > 0) { |
|||
let trx = new Object; |
|||
trx.address = this.bigAddress; |
|||
trx.name = this.addressName |
|||
trx.coinList = [{ |
|||
name: "TRX", |
|||
name2: "TRX", |
|||
xname: 'TRON', |
|||
icon: require('@/static/tongyonh/tron1.png') |
|||
}]; |
|||
let TRXAddressInfo = [] |
|||
TRXAddressInfo = uni.getStorageSync('TRXAddressInfo') |
|||
TRXAddressInfo.push(trx) |
|||
uni.setStorageSync('TRXAddressInfo', TRXAddressInfo) |
|||
console.log(TRXAddressInfo, 1111) |
|||
uni.showToast({ |
|||
title: 'Successfully', |
|||
icon: 'success', |
|||
duration: 1500 |
|||
}) |
|||
setTimeout(() => { |
|||
uni.reLaunch({ |
|||
url: '../address/index2' |
|||
}) |
|||
}, 1500) |
|||
} else { |
|||
let trx = new Object; |
|||
trx.address = this.bigAddress; |
|||
trx.name = this.addressName |
|||
trx.coinList = [{ |
|||
name: "TRX", |
|||
name2: "TRX", |
|||
xname: 'TRON', |
|||
icon: require('@/static/tongyonh/tron1.png') |
|||
}]; |
|||
console.log(trx, 4444) |
|||
let TRXAddressInfo = [] |
|||
TRXAddressInfo.push(trx) |
|||
console.log(TRXAddressInfo, 4444) |
|||
uni.setStorageSync('TRXAddressInfo', TRXAddressInfo) |
|||
uni.showToast({ |
|||
title: 'Successfully', |
|||
icon: 'success', |
|||
duration: 1500 |
|||
}) |
|||
setTimeout(() => { |
|||
uni.reLaunch({ |
|||
url: '../address/index2' |
|||
}) |
|||
}, 1500) |
|||
} |
|||
|
|||
} |
|||
|
|||
}, |
|||
showSelect() { |
|||
this.show = true; |
|||
}, |
|||
} |
|||
}; |
|||
</script> |
|||
<style scoped> |
|||
page { |
|||
background: #FAFAFA; |
|||
height: 100%; |
|||
} |
|||
</style> |
|||
|
|||
<style> |
|||
@import './index.css'; |
|||
</style> |
@ -1,314 +0,0 @@ |
|||
<template> |
|||
<view class=""> |
|||
<navigation :showBack="false" :bgnum="true"> |
|||
<image src="../../../../static/tongyonh/Vector.png" mode="aspectFit" class="back" @click="back()" ></image> |
|||
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" class="renYou" slot="logo" @click="goAddress()"></image> |
|||
<text class="big_title"> |
|||
{{i18n.Address}} |
|||
</text> |
|||
</navigation> |
|||
<view class="main"> |
|||
<view class="big_item"> |
|||
|
|||
<view class="item flex" v-for="(item,index) in BTCAddressInfo" @click="goTransfer(item)"> |
|||
<view class="textcon flex"> |
|||
<view class="bigcon"> |
|||
<view class="textimg flexx"> |
|||
<image :src="item.coinList[0].icon" mode="aspectFit" class="img"></image> |
|||
<text class="textt">{{item.coinList[0].name}}</text> |
|||
<text class="textt2">{{item.name}}</text> |
|||
</view> |
|||
<view class="text1"> |
|||
{{item.address}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<view class="btncon"> |
|||
<image src="../../../../static/tongyonh/more_vert_24px_outlined.svg" mode="aspectFit" class="img2" @click.stop="showIndex(item,index)"> |
|||
</image> |
|||
</view> |
|||
|
|||
|
|||
<view class="set_con" v-if="show" v-show="index==btcIndex"> |
|||
<image src="../../../../static/tongyonh/xg.png" mode="aspectFit" class="img1" @click.stop="show = false"></image> |
|||
<view class="itemm flexx" @click.stop="editItem(index)"> |
|||
<image src="../../../../static/tongyonh/create_24px.png" mode="aspectFit" class="img"></image> |
|||
{{i18n.edit}} |
|||
</view> |
|||
<view class="itemm flexx red" @click.stop="deleteItem()"> |
|||
<image src="../../../../static/tongyonh/trash.png" mode="aspectFit" class="img"></image> |
|||
{{i18n.Delete}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
|
|||
<view class="item flex" v-for="(item,index) in ETHAddressInfo" @click="goTransfer(item)"> |
|||
<view class="textcon flex"> |
|||
<view class="bigcon"> |
|||
<view class="textimg flexx"> |
|||
<image :src="item.coinList[0].icon" mode="aspectFit" class="img"></image> |
|||
<text class="textt">{{item.coinList[0].name}}</text> |
|||
<text class="textt2">{{item.name}}</text> |
|||
</view> |
|||
<view class="text1"> |
|||
{{item.address}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<view class="btncon"> |
|||
<image src="../../../../static/tongyonh/more_vert_24px_outlined.svg" mode="aspectFit" class="img2" @click.stop="showIndex(item,index)"> |
|||
</image> |
|||
</view> |
|||
|
|||
<view class="set_con" v-if="show2" v-show="index==ethIndex"> |
|||
<image src="../../../../static/tongyonh/xg.png" mode="aspectFit" class="img1" @click.stop="show2 = false"></image> |
|||
<view class="itemm flexx" @click.stop="editItem(index)"> |
|||
<image src="../../../../static/tongyonh/create_24px.png" mode="aspectFit" class="img"></image> |
|||
{{i18n.edit}} |
|||
</view> |
|||
<view class="itemm flexx red" @click.stop="deleteItem()"> |
|||
<image src="../../../../static/tongyonh/trash.png" mode="aspectFit" class="img"></image> |
|||
{{i18n.Delete}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
<view class="item flex" v-for="(item,index) in TRXAddressInfo" @click="goTransfer(item)"> |
|||
<view class="textcon flex"> |
|||
<view class="bigcon"> |
|||
<view class="textimg flexx"> |
|||
<image :src="item.coinList[0].icon" mode="aspectFit" class="img"></image> |
|||
<text class="textt">{{item.coinList[0].name}}</text> |
|||
<text class="textt2">{{item.name}}</text> |
|||
</view> |
|||
<view class="text1"> |
|||
{{item.address}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<view class="btncon"> |
|||
<image src="../../../../static/tongyonh/more_vert_24px_outlined.svg" mode="aspectFit" class="img2" @click.stop="showIndex(item,index)"> |
|||
</image> |
|||
</view> |
|||
|
|||
<view class="set_con" v-if="show3" v-show="index==trxIndex"> |
|||
<image src="../../../../static/tongyonh/xg.png" mode="aspectFit" class="img1" @click.stop="show3 = false"></image> |
|||
<view class="itemm flexx" @click.stop="editItem(index)"> |
|||
<image src="../../../../static/tongyonh/create_24px.png" mode="aspectFit" class="img"></image> |
|||
{{i18n.edit}} |
|||
</view> |
|||
<view class="itemm flexx red" @click.stop="deleteItem()"> |
|||
<image src="../../../../static/tongyonh/trash.png" mode="aspectFit" class="img"></image> |
|||
{{i18n.Delete}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
|
|||
|
|||
|
|||
<view class="info_con green" v-if="showImte"> |
|||
<view class="text"> |
|||
|
|||
{{itemCoin}} {{itemAddress}} |
|||
</view> |
|||
<view class="text text2"> |
|||
{{i18n.DELETE}} |
|||
</view> |
|||
</view> |
|||
|
|||
|
|||
</view> |
|||
|
|||
|
|||
|
|||
<u-mask z-index="10" :show="show" ></u-mask> |
|||
<u-mask z-index="10" :show="show2" ></u-mask> |
|||
<u-mask z-index="10" :show="show3" ></u-mask> |
|||
</view> |
|||
|
|||
|
|||
|
|||
</template> |
|||
|
|||
<script> |
|||
import cont from "@/components/navigation/navigation.vue" |
|||
export default { |
|||
data() { |
|||
return { |
|||
ethIndex:0, |
|||
btcIndex:0, |
|||
trxIndex:0, |
|||
showImte:false, |
|||
BTCAddressInfo:{}, |
|||
ETHAddressInfo:{}, |
|||
TRXAddressInfo:{}, |
|||
walletIndex:-1, |
|||
itemCoin:'', |
|||
itemAddress:'', |
|||
info:{}, |
|||
transfer:'', |
|||
show: false, |
|||
show2: false, |
|||
show3: false, |
|||
list: [ |
|||
{ |
|||
name: 'Single address', |
|||
checked: true, |
|||
disabled: false |
|||
}, |
|||
{ |
|||
name: 'Batch add 10 addresses', |
|||
checked: false, |
|||
disabled: false |
|||
}, |
|||
{ |
|||
name: 'Batch add 50 addresses', |
|||
checked: false, |
|||
disabled: false |
|||
} |
|||
] |
|||
} |
|||
}, |
|||
computed: { |
|||
i18n() { |
|||
return this.$t('index') |
|||
}, |
|||
}, |
|||
methods: { |
|||
// 点击把地址带到去交易页 |
|||
goTransfer(item){ |
|||
if(this.transfer){ |
|||
uni.setStorageSync('myTransAddress',item) |
|||
uni.navigateTo({ |
|||
url:'../transfer/index' |
|||
}) |
|||
} |
|||
|
|||
}, |
|||
back(){ |
|||
uni.navigateTo({ |
|||
url:'/pages/menu/sendToken/transfer/index' |
|||
}) |
|||
}, |
|||
editItem(index){ |
|||
console.log(index,78787) |
|||
uni.setStorageSync('editIndex',index) |
|||
uni.setStorageSync('AddressInfo',this.info) |
|||
uni.setStorageSync('AddressName',this.itemCoin) |
|||
uni.setStorageSync('AddressIndex',this.walletIndex) |
|||
uni.navigateTo({ |
|||
url:'../addAddress2/index' |
|||
}) |
|||
}, |
|||
showIndex(item,index){ |
|||
this.itemCoin=item.coinList[0].name |
|||
if(item.coinList[0].xname=='Bitcoin'){ |
|||
this.btcIndex=index |
|||
this.show=true |
|||
}else if(item.coinList[0].xname=='Ethereum'){ |
|||
this.show2=true |
|||
this.ethIndex=index |
|||
}else{ |
|||
this.trxIndex=index |
|||
this.show3=true |
|||
} |
|||
this.info= item |
|||
this.itemCoin=item.coinList[0].name |
|||
this.itemAddress=item.address |
|||
this.walletIndex=index; |
|||
}, |
|||
deleteItem(){ |
|||
console.log(this.walletIndex,4444444) |
|||
if(this.itemCoin=='BTC'){ |
|||
console.log(this.BTCAddressInfo.length,'length') |
|||
if(this.BTCAddressInfo.length==1){ |
|||
let BTCAddressInfo=[] |
|||
uni.setStorageSync('BTCAddressInfo',BTCAddressInfo) |
|||
|
|||
} |
|||
console.log(this.BTCAddressInfo,1111) |
|||
console.log(this.walletIndex,44444) |
|||
|
|||
this.BTCAddressInfo.splice(this.walletIndex,1) |
|||
console.log(this.BTCAddressInfo,'删除后') |
|||
uni.setStorageSync('BTCAddressInfo', this.BTCAddressInfo) |
|||
this.showImte=true; |
|||
this.show=false; |
|||
setTimeout(()=>{ |
|||
this.showImte=false; |
|||
},1500) |
|||
|
|||
} |
|||
if(this.itemCoin=='ETH'){ |
|||
if(this.ETHAddressInfo.length==1){ |
|||
let ETHAddressInfo=[] |
|||
uni.setStorageSync('ETHAddressInfo',ETHAddressInfo) |
|||
|
|||
} |
|||
console.log(this.ETHAddressInfo,1111) |
|||
console.log(this.walletIndex,44444) |
|||
this.ETHAddressInfo.splice(this.walletIndex,1) |
|||
uni.setStorageSync('ETHAddressInfo',this.ETHAddressInfo) |
|||
this.showImte=true; |
|||
this.show2=false; |
|||
setTimeout(()=>{ |
|||
this.showImte=false; |
|||
},1500) |
|||
|
|||
} |
|||
if(this.itemCoin=='TRX'){ |
|||
if(this.TRXAddressInfo.length==1){ |
|||
let TRXAddressInfo=[] |
|||
uni.setStorageSync('TRXAddressInfo',TRXAddressInfo) |
|||
|
|||
} |
|||
this.TRXAddressInfo.splice(this.walletIndex,1) |
|||
uni.setStorageSync('TRXAddressInfo',this.TRXAddressInfo) |
|||
this.showImte=true; |
|||
this.show3=false; |
|||
setTimeout(()=>{ |
|||
this.showImte=false; |
|||
},1500) |
|||
|
|||
} |
|||
}, |
|||
goAddress(){ |
|||
uni.navigateTo({ |
|||
url:'../addAddress/index2' |
|||
}) |
|||
} |
|||
}, |
|||
onLoad(item) { |
|||
|
|||
|
|||
|
|||
if(uni.getStorageSync('BTCAddressInfo').length>0){ |
|||
this.BTCAddressInfo=uni.getStorageSync('BTCAddressInfo') |
|||
console.log(this.BTCAddressInfo,777) |
|||
} |
|||
if(uni.getStorageSync('ETHAddressInfo').length>0){ |
|||
this.ETHAddressInfo=uni.getStorageSync('ETHAddressInfo') |
|||
console.log(this.ETHAddressInfo,777) |
|||
} |
|||
if(uni.getStorageSync('TRXAddressInfo').length>0){ |
|||
this.TRXAddressInfo=uni.getStorageSync('TRXAddressInfo') |
|||
console.log(this.TRXAddressInfo,777) |
|||
} |
|||
} |
|||
}; |
|||
</script> |
|||
<style scoped> |
|||
page { |
|||
background: #FAFAFA; |
|||
height: 100%; |
|||
} |
|||
</style> |
|||
|
|||
<style> |
|||
@import './index.css'; |
|||
</style> |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue