Onlife/pages/wallet/createmethod.vue

143 lines
3.0 KiB
Vue
Raw Normal View History

2025-04-19 15:38:48 +08:00
<template>
<view class="container">
<!-- moneybi -->
<view class="moneylist" style="margin-bottom: 30rpx;">
<view class="moneyitem" @click="tocreatewallet">
<view class="item_le">
<image src="/static/wallet8.png" mode=""></image>
</view>
<view class="item_ri">
<view class="name">
<view class="">
創建錢包
</view>
<view style="margin-top: 12rpx; font-size: 25rpx;">
<text style="color: #908baf;">免費創建錢包</text>
</view>
</view>
<view class="number">
<u-icon name="arrow-right" color="#fff" size="14"></u-icon>
</view>
</view>
</view>
</view>
<view class="content">
<!-- moneybi -->
<view class="moneylist">
<view class="moneyitem">
<view class="item_le">
<image src="/static/wallet8.png" mode=""></image>
</view>
<view class="item_ri">
<view class="name">
<view class="">
冷錢包
</view>
<view style="margin-top: 12rpx; font-size: 25rpx;">
<text style="color: #908baf;">離線導入與使用確保與網絡隔絕</text>
</view>
</view>
<view class="number">
<u-icon name="arrow-right" color="#fff" size="14"></u-icon>
</view>
</view>
</view>
</view>
<!-- moneybi -->
<view class="moneylist">
<view class="moneyitem">
<view class="item_le">
<image src="/static/wallet8.png" mode=""></image>
</view>
<view class="item_ri">
<view class="name">
<view class="">
觀察錢包
</view>
<view style="margin-top: 12rpx; font-size: 25rpx;">
<text style="color: #908baf;">離線導入與使用確保與網絡隔絕</text>
</view>
</view>
<view class="number">
<u-icon name="arrow-right" color="#fff" size="14"></u-icon>
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
tocreatewallet() {
uni.navigateTo({
url: '/pages/wallet/choosewallet'
})
}
}
}
</script>
<style lang="scss">
.container {
border-top: 1px solid dimgrey;
width: 100vw;
height: 100vh;
background-color: #000033;
font-size: 30rpx;
padding: 30rpx;
box-sizing: border-box;
image {
width: 100%;
height: 100%;
}
.moneylist {
background-color: #392e7f;
padding: 30rpx;
border-radius: 20rpx;
.moneyitem {
display: flex;
justify-content: space-between;
align-items: center;
.item_le {
width: 70rpx;
height: 70rpx;
border-radius: 50%;
}
.item_ri {
width: 520rpx;
height: 100rpx;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2rpx solid #534a84;
.name {
color: #fff;
display: flex;
flex-direction: column;
padding-bottom: 10rpx;
}
}
}
}
}
.content {
background-color: #3e3384;
border-radius: 20rpx;
}
</style>