121 lines
2.3 KiB
Vue
121 lines
2.3 KiB
Vue
<template>
|
|
<view class="selectCard">
|
|
<view class="bankInfo">
|
|
<image class="bankLogin" src="/static/imgs/bankLogo.png" mode="widthFix" />
|
|
<view class="right">
|
|
<view class="left">
|
|
<view class="title">浦发银行 <view class="tags">快捷支付</view>
|
|
</view>
|
|
<view class="des">储值卡</view>
|
|
<view class="no">622 8480530 382837819</view>
|
|
</view>
|
|
<u-icon name="calendar" color="rgba(255,255,255,0.6)" size='60' />
|
|
</view>
|
|
</view>
|
|
<!-- <u-toast ref="uToast" /> -->
|
|
<u-toast ref="uToast" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
chaineb
|
|
} from '@/apis/interfaces/mine';
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.selectCard {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
padding-top: 30rpx;
|
|
background-color: #fff;
|
|
|
|
.bankInfo {
|
|
width: calc(100% - 60rpx);
|
|
background-image: linear-gradient(to right, #7c52fc, #976dff);
|
|
box-shadow: 0 10rpx 20rpx 0rpx rgba($color: #976dff, $alpha: 0.6);
|
|
margin: 0 30rpx;
|
|
border-radius: 20rpx;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
padding:40rpx 30rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
z-index: 1;
|
|
|
|
.bankLogin {
|
|
width: 80rpx;
|
|
opacity: .9;
|
|
}
|
|
|
|
.right {
|
|
flex: 1;
|
|
margin-left: 20rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
color: rgba($color: #fff, $alpha: .9);
|
|
|
|
.left {
|
|
flex: 1;
|
|
|
|
.title {
|
|
font-size: 38rpx;
|
|
font-weight: bold;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
.tags {
|
|
color: $text-price;
|
|
font-size: 24rpx;
|
|
margin-left: 20rpx;
|
|
padding: 4rpx 14rpx;
|
|
position: relative;
|
|
display: inline-block;
|
|
color: #7C52FC;
|
|
|
|
&::before {
|
|
background: rgba($color: #fff, $alpha: .8);
|
|
z-index: -1;
|
|
position: absolute;
|
|
content: '';
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
transform: skewX(-10deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
.des {
|
|
font-size: 28rpx;
|
|
margin-top: 14rpx;
|
|
}
|
|
|
|
.no {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
margin-top: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|