@ -1,25 +1,27 @@ |
|||||
<template> |
<template> |
||||
<view class="maintoP"> |
<view class="maintoP"> |
||||
<navigation :showBack="true" :bgnum="true"> |
<navigation :showBack="false" :bgnum="true" class="aaa"> |
||||
|
<image src="../../../../static/tongyonh/Vector.png" mode="aspectFit" class="back" @click="back()" ></image> |
||||
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" @click="goAdd" class="renYou2" slot="logo"></image> |
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" @click="goAdd" class="renYou2" slot="logo"></image> |
||||
<text class="big_title"> |
<text class="big_title"> |
||||
Binance NFT |
{{item.projectName}} |
||||
</text> |
</text> |
||||
</navigation> |
</navigation> |
||||
<view class="main"> |
<view class="main"> |
||||
<view class="item"> |
|
||||
|
<view class="item" v-for="item,index in result" :key="index"> |
||||
<view class="top"> |
<view class="top"> |
||||
<image src="../../../../static/tongyonh/bye.png" mode="aspectFit" class="img"></image> |
<image :src="item.chainIconUrl" mode="aspectFit" class="img"></image> |
||||
0x0Cc6...08E9 |
{{item.address}} |
||||
|
<image src="../../../../static/tongyonh/[email protected]" mode="aspectFit" class="img lfet" @click="goDetail(index)"></image> |
||||
</view> |
</view> |
||||
<view class="top"> |
<view class="top"> |
||||
合约:0xf7a2...490a |
<text class="textleft">Contracts: </text>{{item.contract}} |
||||
</view> |
</view> |
||||
<view class="top"> |
<view class="top"> |
||||
ID:624869217469673946369844112959321786979269186132 |
<text class="textleft texttt">ID: </text>{{item.id}} |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
|
|
||||
</view> |
</view> |
||||
|
|
||||
</view> |
</view> |
||||
@ -31,20 +33,88 @@ |
|||||
export default { |
export default { |
||||
data() { |
data() { |
||||
return { |
return { |
||||
|
item:{}, |
||||
|
wallet:{}, |
||||
|
address:'', |
||||
|
result:[], |
||||
|
result2:[], |
||||
|
pageSize:10, |
||||
|
pageNum:1, |
||||
} |
} |
||||
}, |
}, |
||||
|
|
||||
onLoad() { |
onLoad(option) { |
||||
|
if(uni.getStorageSync('wallet')){ |
||||
|
this.address=uni.getStorageSync('wallet').address |
||||
|
this.wallet=uni.getStorageSync('wallet') |
||||
|
this.wallet.address = this.wallet.address.substring(0, 6) + '...' + this.wallet.address |
||||
|
.substring(25, this.wallet.address.length); |
||||
|
|
||||
|
}else{ |
||||
|
this.wallet=uni.getStorageSync('walletInfo').BTC[0] |
||||
|
this.wallet.address = this.wallet.address.substring(0, 6) + '...' + this.wallet.address.substring(25, this.wallet.address.length); |
||||
|
console.log(this.wallet,111) |
||||
|
} |
||||
|
|
||||
|
|
||||
|
this.item=uni.getStorageSync('nftitem') |
||||
|
|
||||
|
|
||||
|
this.getProject() |
||||
|
this.getProject2() |
||||
|
}, |
||||
|
onReachBottom() { |
||||
|
this.pageSize+=5 |
||||
|
this.getProject() |
||||
|
this.getProject2() |
||||
}, |
}, |
||||
methods: { |
methods: { |
||||
|
back(){ |
||||
|
uni.reLaunch({ |
||||
|
url:'../index' |
||||
|
}) |
||||
|
}, |
||||
|
// http://wallet-api.weirui0755.com/api/nft/getNftCollectionList?nftProjectId=1&address= |
||||
|
getProject(){ |
||||
|
uni.request({ |
||||
|
url: 'http://wallet-api.weirui0755.com/api/nft/getNftCollectionList?'+'nftProjectId='+this.item.id+'&'+'address='+this.address+'&'+'pageSize='+this.pageSize+'&'+'pageNum='+this.pageNum, //请求接口 |
||||
|
header: { |
||||
|
'content-type': 'application/x-www-form-urlencoded', //自定义请求头信息 |
||||
|
}, |
||||
|
success: (res) => { |
||||
|
this.result=res.data.data.rows |
||||
|
for(var i =0;i<this.result.length;i++){ |
||||
|
this.result[i].address = this.result[i].address.substring(0, 6) + '...' + this.result[i].address |
||||
|
.substring(25, this.result[i].address.length); |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
}); |
||||
|
}, |
||||
|
getProject2(){ |
||||
|
uni.request({ |
||||
|
url: 'http://wallet-api.weirui0755.com/api/nft/getNftCollectionList?'+'nftProjectId='+this.item.id+'&'+'address='+this.address+'&'+'pageSize='+this.pageSize+'&'+'pageNum='+this.pageNum, //请求接口 |
||||
|
header: { |
||||
|
'content-type': 'application/x-www-form-urlencoded', //自定义请求头信息 |
||||
|
}, |
||||
|
success: (res) => { |
||||
|
this.result2=res.data.data.rows |
||||
|
console.log( this.result2,7878) |
||||
|
} |
||||
|
}); |
||||
|
}, |
||||
goAdd(){ |
goAdd(){ |
||||
uni.navigateTo({ |
uni.navigateTo({ |
||||
url:'../addCollection/index' |
url:'../addCollection/index' |
||||
}) |
}) |
||||
|
}, |
||||
|
goDetail(index){ |
||||
|
console.log(this.result2[index]) |
||||
|
uni.setStorageSync('nftOneItem',this.result2[index]) |
||||
|
uni.navigateTo({ |
||||
|
url:'../collectionDetailtrue/index' |
||||
|
}) |
||||
|
|
||||
} |
} |
||||
|
|
||||
|
|
||||
|
@ -0,0 +1,65 @@ |
|||||
|
page{ |
||||
|
background-color: #fafafa; |
||||
|
} |
||||
|
.aaa{ |
||||
|
background-color: #fafafa !important; |
||||
|
} |
||||
|
.main{ |
||||
|
padding: 0 24rpx; |
||||
|
margin-top: 80rpx; |
||||
|
} |
||||
|
.main_con{ |
||||
|
padding: 0 24rpx; |
||||
|
background-color: #fff; |
||||
|
border-radius: 24rpx; |
||||
|
box-shadow: 0 24rpx 24rpx 24rpx #EBEEF1; |
||||
|
padding-bottom: 80rpx; |
||||
|
padding-top: 24rpx; |
||||
|
} |
||||
|
.flex{ |
||||
|
display: flex; |
||||
|
justify-content: space-between; |
||||
|
align-items: center; |
||||
|
} |
||||
|
.main_con .item{ |
||||
|
padding: 24rpx 0; |
||||
|
border-bottom: 2rpx solid #F5F5F5; |
||||
|
} |
||||
|
.main_con .item .imgcon .img{ |
||||
|
width: 54rpx; |
||||
|
height: 54rpx; |
||||
|
margin-right: 24rpx; |
||||
|
} |
||||
|
.flex2{ |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
} |
||||
|
.main_con .item2{ |
||||
|
margin-bottom: 50rpx; |
||||
|
} |
||||
|
.main_con .item2 .title{ |
||||
|
} |
||||
|
.main_con .item2 .input{ |
||||
|
height: 100rpx; |
||||
|
background-color: #FAFAFA; |
||||
|
border-radius: 20rpx; |
||||
|
padding-left: 24rpx; |
||||
|
margin-top: 20rpx; |
||||
|
} |
||||
|
.main_con .btn{ |
||||
|
line-height: 96rpx; |
||||
|
background-color: #5B53FF; |
||||
|
text-align: center; |
||||
|
color: #fff; |
||||
|
border-radius: 32rpx; |
||||
|
margin-top: 80rpx; |
||||
|
} |
||||
|
.lfetimg{ |
||||
|
width: 24rpx; |
||||
|
height: 24rpx; |
||||
|
margin-left: 30rpx; |
||||
|
} |
||||
|
.text1one{ |
||||
|
word-break: break-word; |
||||
|
margin-top: 24rpx; |
||||
|
} |
@ -0,0 +1,105 @@ |
|||||
|
<template> |
||||
|
<view class="maintoP"> |
||||
|
<navigation :showBack="true" :bgnum="true" class="aaa"> |
||||
|
<text class="big_title"> |
||||
|
Collection details |
||||
|
</text> |
||||
|
</navigation> |
||||
|
<view class="main"> |
||||
|
<view class="main_con"> |
||||
|
<view class="item"> |
||||
|
<view class="imgcon flex2"> |
||||
|
<image :src="item.chainIconUrl" mode="aspectFit" class="img"></image> |
||||
|
<text class="tex1">{{wallet.coinList[0].name2}}</text> |
||||
|
</view> |
||||
|
<view class="text1one"> |
||||
|
{{item.address}} |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="item"> |
||||
|
<view class="title"> |
||||
|
Contract address |
||||
|
</view> |
||||
|
<view class="text1one"> |
||||
|
{{item.contract}} |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="item"> |
||||
|
<view class="title"> |
||||
|
Token ID |
||||
|
</view> |
||||
|
<view class="text1one"> |
||||
|
{{item.tonkenId}} |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="btn" @click="test"> |
||||
|
Confirm |
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
</view> |
||||
|
|
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import cont from "@/components/navigation/navigation.vue" |
||||
|
import token from "@/utils/TokenUtil" |
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
wallet:{}, |
||||
|
nftIndex:0, |
||||
|
walletInfo:{}, |
||||
|
// nftContrct:{ |
||||
|
// // [ |
||||
|
// // { |
||||
|
|
||||
|
// // } |
||||
|
// // ] |
||||
|
// }, |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
onLoad() { |
||||
|
console.log(uni.getStorageSync('nftOneItem'),4444) |
||||
|
this.item=uni.getStorageSync('nftOneItem') |
||||
|
|
||||
|
if(uni.getStorageSync('wallet')){ |
||||
|
this.wallet=uni.getStorageSync('wallet') |
||||
|
this.wallet.address = this.wallet.address.substring(0, 6) + '...' + this.wallet.address |
||||
|
.substring(25, this.wallet.address.length); |
||||
|
|
||||
|
}else{ |
||||
|
this.wallet=uni.getStorageSync('walletInfo').BTC[0] |
||||
|
this.wallet.address = this.wallet.address.substring(0, 6) + '...' + this.wallet.address |
||||
|
console.log(this.wallet,111) |
||||
|
} |
||||
|
|
||||
|
|
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
test(){ |
||||
|
this.nftIndex=uni.getStorageSync('nftIndex') |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
}; |
||||
|
</script> |
||||
|
<style scoped> |
||||
|
|
||||
|
</style> |
||||
|
|
||||
|
<style> |
||||
|
@import './index.css'; |
||||
|
</style> |
@ -0,0 +1,336 @@ |
|||||
|
<template> |
||||
|
<view class=""> |
||||
|
<navigation :showBack="true" :bgnum="true"> |
||||
|
<text class="big_title"> |
||||
|
{{userObjectss.name2}} |
||||
|
</text> |
||||
|
|
||||
|
|
||||
|
</navigation> |
||||
|
<view class="main"> |
||||
|
<view class="money_con" |
||||
|
:class="{'money_con': userObject.coinList[0].xname=='Ethereum', 'money_con2': userObject.coinList[0].xname=='Bitcoin', 'money_con3': userObject.coinList[0].xname=='TRON'}"> |
||||
|
<view class="textcon1"> |
||||
|
<text class="text1"> |
||||
|
<view class="" v-if="userObject.coinList[0].xname=='Bitcoin'"> |
||||
|
0.00 BTC |
||||
|
</view> |
||||
|
<view class="" v-if="userObject.coinList[0].xname=='Ethereum'"> |
||||
|
0.00 |
||||
|
</view> |
||||
|
<view class="" v-if="userObject.coinList[0].xname=='TRON'"> |
||||
|
0.00 TRX |
||||
|
</view> |
||||
|
<text class="text2">≈ $0.0</text> |
||||
|
</text> |
||||
|
<!-- <image src="../../../../static/tongyonh/ethereum.png" mode="aspectFit" class="img1" |
||||
|
v-if="userObject.coinList[0].xname=='Ethereum'"></image> |
||||
|
<image src="../../../../static/tongyonh/Frame28.png" mode="aspectFit" class="img1" |
||||
|
v-if="userObject.coinList[0].xname=='Bitcoin'"></image> |
||||
|
<image src="../../../../static/tongyonh/tronicon.png" mode="aspectFit" class="img1" |
||||
|
v-if="userObject.coinList[0].xname=='TRON'"></image> --> |
||||
|
</view> |
||||
|
<view class="textcon1"> |
||||
|
<view class="v1"> |
||||
|
<view class="t1"> |
||||
|
0.0 |
||||
|
</view> |
||||
|
<view class="t2"> |
||||
|
Existing balance |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="v1 v2"> |
||||
|
<view class="t1"> |
||||
|
0.0 |
||||
|
</view> |
||||
|
<view class="t2"> |
||||
|
Freeze balance |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
<view class="select_con"> |
||||
|
<view class="select"> |
||||
|
<u-tabs height="120" bar-width="172" active-color="#6F69FF" inactive-color="#A3AED0" :list="list" |
||||
|
:is-scroll="false" :current="current" @change="change"></u-tabs> |
||||
|
|
||||
|
<u-empty text="No content" mode="list" v-if="showInfo"></u-empty> |
||||
|
|
||||
|
<view class="" v-if="!showInfo"> |
||||
|
<view class="item1" v-for="(item,index) in trxs" v-if="current==1&&address==item.from" |
||||
|
@click="goDetail(item,index)"> |
||||
|
<view class="lef_con"> |
||||
|
<image src="../../../../static/tongyonh/arrow-up-left_1.png" mode="aspectFit" |
||||
|
class="img1" v-if="address==item.from"></image> |
||||
|
<view class="textcon"> |
||||
|
<view class="text1" v-if="address==item.from"> |
||||
|
{{item.to}} |
||||
|
</view> |
||||
|
|
||||
|
<view class="text2" v-if="address==item.from"> |
||||
|
{{item.time}} |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="rig_con"> |
||||
|
<view class="text1"> |
||||
|
<text v-if="address==item.from">-</text> |
||||
|
{{item.value}} |
||||
|
<text class=""> |
||||
|
{{item.network}} |
||||
|
</text> |
||||
|
|
||||
|
|
||||
|
|
||||
|
</view> |
||||
|
<image src="../../../../static/tongyonh/Shape.png" mode="aspectFit" class="img1"> |
||||
|
</image> |
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
|
||||
|
<view class="item1" v-for="(item,index) in trxs" v-if="current==0" |
||||
|
@click="goDetail(item,index)"> |
||||
|
<view class="lef_con"> |
||||
|
<image src="../../../../static/tongyonh/arrow-up-left.png" mode="aspectFit" class="img1" |
||||
|
v-if="address==item.to"></image> |
||||
|
<image src="../../../../static/tongyonh/arrow-up-left_1.png" mode="aspectFit" |
||||
|
class="img1" v-if="address==item.from"></image> |
||||
|
<view class="textcon"> |
||||
|
<view class="text1" v-if="address==item.from"> |
||||
|
{{item.to}} |
||||
|
</view> |
||||
|
<view class="text1" v-if="address==item.to"> |
||||
|
{{item.from}} |
||||
|
</view> |
||||
|
<view class="text2"> |
||||
|
{{item.time}} |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="rig_con"> |
||||
|
<view class="text1"> |
||||
|
<text v-if="address==item.to">+</text> |
||||
|
<text v-if="address==item.from">-</text> |
||||
|
{{item.value}} |
||||
|
<text class=""> |
||||
|
{{item.network}} |
||||
|
</text> |
||||
|
|
||||
|
|
||||
|
|
||||
|
</view> |
||||
|
<image src="../../../../static/tongyonh/Shape.png" mode="aspectFit" class="img1"> |
||||
|
</image> |
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
<view class="item1" v-for="(item,index) in trxs" v-if="current==2&&address==item.to" |
||||
|
@click="goDetail(item,index)"> |
||||
|
<view class="lef_con"> |
||||
|
<image src="../../../../static/tongyonh/arrow-up-left.png" mode="aspectFit" class="img1" |
||||
|
v-if="address==item.to"></image> |
||||
|
<view class="textcon"> |
||||
|
<view class="text1" v-if="address==item.to"> |
||||
|
{{item.from}} |
||||
|
</view> |
||||
|
|
||||
|
<view class="text2" v-if="address==item.to"> |
||||
|
{{item.time}} |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="rig_con"> |
||||
|
<view class="text1"> |
||||
|
<text v-if="address==item.to">+</text> |
||||
|
{{item.value}} |
||||
|
<text class=""> |
||||
|
{{item.network}} |
||||
|
</text> |
||||
|
|
||||
|
|
||||
|
|
||||
|
</view> |
||||
|
<image src="../../../../static/tongyonh/Shape.png" mode="aspectFit" class="img1"> |
||||
|
</image> |
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
</view> |
||||
|
|
||||
|
|
||||
|
<view class="btnconn"> |
||||
|
<view class="btn active" @click="goSend"> |
||||
|
<image src="../../../../static/tongyonh/arrow-up-leftw.png" mode="aspectFit" class="arrow-up-left"> |
||||
|
</image> |
||||
|
Send |
||||
|
</view> |
||||
|
<view class="btn" @click="goReceive"> |
||||
|
<image src="../../../../static/tongyonh/arrow-up-leftp.png" mode="aspectFit" class="arrow-up-left"> |
||||
|
</image> |
||||
|
<text class="btn13">Receive</text> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import cont from "@/components/navigation/navigation.vue" |
||||
|
import api from '@/utils/api' |
||||
|
import index from '@/utils/index.js' |
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
// 拿账单的address |
||||
|
coinInfo: {}, |
||||
|
trxs: [], |
||||
|
trxs2: [], |
||||
|
address: '', |
||||
|
userObject: {}, |
||||
|
userObjectss: {}, |
||||
|
showInfo: false, |
||||
|
list: [{ |
||||
|
name: 'All' |
||||
|
}, { |
||||
|
name: 'Send' |
||||
|
}, { |
||||
|
name: 'Receive', |
||||
|
}], |
||||
|
infoWallet:{}, |
||||
|
current: 0, |
||||
|
pageSize:10, |
||||
|
pageNum:1, |
||||
|
param : { |
||||
|
'address':'', |
||||
|
'pageNum':1, |
||||
|
'pageSize':10, |
||||
|
'address2':'', |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
goSend(){ |
||||
|
let itemm = JSON.stringify(this.infoWallet) |
||||
|
uni.navigateTo({ |
||||
|
url: '/pages/menu/sendToken/transfer2/index?item=' + itemm |
||||
|
}) |
||||
|
}, |
||||
|
goReceive() { |
||||
|
let itemm = JSON.stringify(this.infoWallet) |
||||
|
uni.navigateTo({ |
||||
|
url: '/pages/menu/sendToken/index?item=' + itemm |
||||
|
}) |
||||
|
}, |
||||
|
goDetail(item, index) { |
||||
|
let itemm = JSON.stringify(this.trxs2[index]) |
||||
|
uni.navigateTo({ |
||||
|
url: '/pages/menu/transction/detail/index?item=' + itemm |
||||
|
}) |
||||
|
|
||||
|
}, |
||||
|
change(index) { |
||||
|
console.log(index) |
||||
|
this.current = index; |
||||
|
console.log(this.current) |
||||
|
|
||||
|
}, |
||||
|
getWalletInfo(){ |
||||
|
if (this.infoWallet.coinList[0].xname == 'Ethereum') { |
||||
|
this.param.address2=this.infoWallet.address |
||||
|
this.address = this.userObjectss.contractAddress |
||||
|
this.address2 =this.userObjectss.contractAddress |
||||
|
console.log( this.userObjectss.contractAddress,111) |
||||
|
this.param.address= this.userObjectss.contractAddress |
||||
|
console.log(this.param,2222) |
||||
|
this.userObject = this.infoWallet |
||||
|
const post = api.addressOther( |
||||
|
this.param |
||||
|
) |
||||
|
post.then(res => { |
||||
|
console.log(res, 77) |
||||
|
if (res.data.code == 404) { |
||||
|
this.showInfo = true; |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
this.trxs = res.data.data |
||||
|
console.log(this.trxs,7878) |
||||
|
for (var i = 0; i < this.trxs.length; i++) { |
||||
|
this.trxs[i].from = this.trxs[i].from.substring(0, 6) + '...' + this.trxs[i].from |
||||
|
.substring(35, this.trxs[i].from.length); |
||||
|
this.trxs[i].to = this.trxs[i].to.substring(0, 6) + '...' + this.trxs[i].to.substring( |
||||
|
35, this.trxs[i].to.length); |
||||
|
this.trxs[i].time = index.formatyymmddhhmmss(this.trxs[i].time); |
||||
|
this.trxs[i].value = parseFloat(this.trxs[i].value).toFixed(0) |
||||
|
} |
||||
|
|
||||
|
}) |
||||
|
this.address = this.address.substring(0, 6) + '...' + this.address.substring(35, this.address.length); |
||||
|
this.getInfo() |
||||
|
} else if (this.infoWallet.coinList[0].xname == 'TRON') { |
||||
|
this.address = this.infoWallet.address |
||||
|
this.param.address=this.address |
||||
|
this.address2 = this.infoWallet.address |
||||
|
this.userObject =this.infoWallet |
||||
|
const post = api.addresstrx( |
||||
|
this.param |
||||
|
) |
||||
|
post.then(res => { |
||||
|
if (res.data.code == 404) { |
||||
|
this.showInfo = true; |
||||
|
return; |
||||
|
} |
||||
|
if (res.data.data.network == 'TRX') { |
||||
|
this.trxs = res.data.data.txs |
||||
|
for (var i = 0; i < this.trxs.length; i++) { |
||||
|
this.trxs[i].from = this.trxs[i].from.substring(0, 6) + '...' + this.trxs[i].from |
||||
|
.substring(35, this.trxs[i].from.length); |
||||
|
this.trxs[i].to = this.trxs[i].to.substring(0, 6) + '...' + this.trxs[i].to.substring( |
||||
|
35, this.trxs[i].to.length); |
||||
|
this.trxs[i].time = index.formatyymmddhhmmss(this.trxs[i].time); |
||||
|
this.trxs[i].value = parseFloat(this.trxs[i].value).toFixed(5) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
}) |
||||
|
this.address = this.address.substring(0, 6) + '...' + this.address.substring(35, this.address.length); |
||||
|
} |
||||
|
}, |
||||
|
getInfo() { |
||||
|
this.param.address=this.address2 |
||||
|
const post = api.addressOther( |
||||
|
this.param |
||||
|
) |
||||
|
post.then(res => { |
||||
|
this.trxs2 = res.data.data.txs |
||||
|
}) |
||||
|
} |
||||
|
}, |
||||
|
onLoad(option) { |
||||
|
this.userObjectss=uni.getStorageSync('daiInfo') |
||||
|
console.log(this.userObjectss,777) |
||||
|
const item = JSON.parse(option.item); |
||||
|
this.infoWallet = item |
||||
|
this.getWalletInfo() |
||||
|
}, |
||||
|
onReachBottom() { |
||||
|
this.param.pageSize+=5; |
||||
|
this.getWalletInfo() |
||||
|
} |
||||
|
}; |
||||
|
</script> |
||||
|
<style scoped> |
||||
|
page { |
||||
|
background: #FAFAFA; |
||||
|
|
||||
|
} |
||||
|
</style> |
||||
|
|
||||
|
<style> |
||||
|
@import './index.css'; |
||||
|
</style> |
@ -0,0 +1,63 @@ |
|||||
|
page{ |
||||
|
height: 100%; |
||||
|
} |
||||
|
.main{ |
||||
|
padding: 0 24rpx; |
||||
|
margin-top: 150rpx; |
||||
|
} |
||||
|
.topview{ |
||||
|
background-color: #FAFAFA; |
||||
|
width: 80%; |
||||
|
border-radius: 32rpx; |
||||
|
position: relative; |
||||
|
} |
||||
|
.topinput{ |
||||
|
width: 100%; |
||||
|
height: 70rpx; |
||||
|
padding-left: 100rpx; |
||||
|
} |
||||
|
.searchimg{ |
||||
|
width: 48rpx; |
||||
|
height: 48rpx; |
||||
|
position: absolute; |
||||
|
left: 30rpx; |
||||
|
top: 50%; |
||||
|
transform: translateY(-50%); |
||||
|
} |
||||
|
.custom-style{ |
||||
|
width: 100%; |
||||
|
height: 80rpx; |
||||
|
padding-left: 150rpx; |
||||
|
} |
||||
|
|
||||
|
/deep/ uni-input { |
||||
|
height: 40px !important; |
||||
|
padding-left: 90rpx !important; |
||||
|
} |
||||
|
.flex .text{ |
||||
|
font-size: 32rpx; |
||||
|
color: #5B53FF; |
||||
|
} |
||||
|
.flex{ |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
justify-content: space-between; |
||||
|
} |
||||
|
/deep/ .u-empty{ |
||||
|
position: absolute; |
||||
|
left: 50%; |
||||
|
top: 50%; |
||||
|
transform: translate(-50%,-50%); |
||||
|
z-index: -1; |
||||
|
} |
||||
|
.searchimg{ |
||||
|
width: 48rpx; |
||||
|
height: 48rpx; |
||||
|
position: absolute; |
||||
|
left: 30rpx; |
||||
|
top: 50%; |
||||
|
transform: translateY(-50%); |
||||
|
} |
||||
|
/deep/ .u-icon__label { |
||||
|
line-height: 1.5 !important; |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
<template> |
||||
|
<view class="main"> |
||||
|
<view class="flex"> |
||||
|
<view class="topview"> |
||||
|
<image src="../../../../static/tongyonh/search.png" mode="aspectFit" class="searchimg"></image> |
||||
|
<u-input placeholderStyle="fontSize:12px;color:#D0D0D2" placeholder="Enter the token name or contract address" v-model="value" :focus="true" :type="type" :border="border" class="custom-style" /> |
||||
|
</view> |
||||
|
<text class="text" @click="back">Cancel</text> |
||||
|
</view> |
||||
|
<u-empty text="Please enter the token name or contract address to search" mode="list"></u-empty> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
value: '', |
||||
|
type: 'text', |
||||
|
show: false, |
||||
|
border: false, |
||||
|
|
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
back(){ |
||||
|
uni.navigateBack({ |
||||
|
|
||||
|
}) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
<style> |
||||
|
@import './index.css'; |
||||
|
</style> |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 304 B |
After Width: | Height: | Size: 387 B |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 15 KiB |
@ -1 +1 @@ |
|||||
https://ide.dcloud.net.cn/build/download/7f5439d0-3e5a-11ec-a595-9f7faa4d5fb0 |
https://ide.dcloud.net.cn/build/download/a3d5cd30-43dd-11ec-b023-0d93e5e61c77 |
@ -1 +1 @@ |
|||||
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 |
@ -1 +1 @@ |
|||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__1ECBEE1","name":"BITCOOO","version":{"name":"1.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"compatible":{"ignoreVersion":true},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","proapp@2x":"unpackage/res/icons/167x167.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png"},"prerendered":"false"}},"splashscreen":{"androidStyle":"default","iosStyle":"default"},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"packagename":"com.bitcooo","password":"owEUXhIlikr8dyWwHO6U9A==","aliasname":"jack501","keystore":"google-keystore","custompermissions":true},"apple":{"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}},"orientation":["portrait-primary"]},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.2.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html","adid":"127964190008"}} |
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__1ECBEE1","name":"BITCOOO","version":{"name":"1.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"compatible":{"ignoreVersion":true},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","proapp@2x":"unpackage/res/icons/167x167.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png"},"prerendered":"false"}},"splashscreen":{"androidStyle":"default","iosStyle":"default","android":{"hdpi":"","xhdpi":"","xxhdpi":""}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"packagename":"com.bitcooo","password":"owEUXhIlikr8dyWwHO6U9A==","aliasname":"jack501","keystore":"google-keystore","custompermissions":true},"apple":{"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}},"orientation":["portrait-primary"]},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.2.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html","adid":"127964190008"}} |
Before Width: | Height: | Size: 709 B After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 692 B |
After Width: | Height: | Size: 638 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 304 B |
After Width: | Height: | Size: 387 B |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 15 KiB |
@ -1 +1 @@ |
|||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__1ECBEE1","name":"BITCOOO","version":{"name":"1.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"compatible":{"ignoreVersion":true},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"androidStyle":"default","iosStyle":"default"},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.2.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}} |
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__1ECBEE1","name":"BITCOOO","version":{"name":"1.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"compatible":{"ignoreVersion":true},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"androidStyle":"default","iosStyle":"default","android":{"hdpi":"","xhdpi":"","xxhdpi":""}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.2.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}} |
Before Width: | Height: | Size: 709 B After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 692 B |
After Width: | Height: | Size: 638 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 304 B |
After Width: | Height: | Size: 387 B |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 432 B |
@ -1 +1 @@ |
|||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__1ECBEE1","name":"BITCOOO","version":{"name":"1.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"compatible":{"ignoreVersion":true},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"androidStyle":"default","iosStyle":"default"},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.2.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}} |
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__1ECBEE1","name":"BITCOOO","version":{"name":"1.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"compatible":{"ignoreVersion":true},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"androidStyle":"default","iosStyle":"default","android":{"hdpi":"","xhdpi":"","xxhdpi":""}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.2.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}} |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 304 B |
After Width: | Height: | Size: 387 B |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 432 B |