69 lines
1.6 KiB
Vue
69 lines
1.6 KiB
Vue
<template>
|
||
<view class="content vertical">
|
||
<!-- logo -->
|
||
<image class="logo" src="@/static/wallet/logo.png" mode="widthFix"></image>
|
||
<!-- 副标题 -->
|
||
<view class="sub-title">激活您的ZH健康钱包获取钱包地址,地址可以理解为您的个人银行卡卡号</view>
|
||
<!-- 按钮 -->
|
||
<view class="wallet-btn" @click="$Router.replace({name: 'WalletCreate'})">激活钱包</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
methods: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
page {
|
||
background-color: white;
|
||
}
|
||
</style>
|
||
|
||
<style lang="scss" scoped>
|
||
.content {
|
||
position: relative;
|
||
height: 100vh;
|
||
padding: 0 15vw;
|
||
text-align: center;
|
||
|
||
.logo {
|
||
width: 138rpx;
|
||
vertical-align: top;
|
||
margin-bottom: 20vh;
|
||
}
|
||
|
||
.sub-title {
|
||
font-size: $title-size-m;
|
||
color: $text-gray;
|
||
}
|
||
|
||
.wallet-btn {
|
||
width: 100%;
|
||
background-color: $main-color;
|
||
height: 90rpx;
|
||
line-height: 90rpx;
|
||
margin-top: $margin * 2;
|
||
border-radius: $radius-lg;
|
||
color: white;
|
||
font-weight: bold;
|
||
font-size: $title-size;
|
||
|
||
&.hollow {
|
||
background-color: white;
|
||
color: $main-color;
|
||
border: solid 2rpx $main-color;
|
||
box-sizing: border-box;
|
||
}
|
||
}
|
||
}
|
||
</style>
|