56 lines
780 B
Vue
56 lines
780 B
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar title="我的骑行卡" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
|
height='45'></u-navbar>
|
|
|
|
<view class="cont">
|
|
<view class="card1">
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: '#fff'
|
|
},
|
|
sn: '',
|
|
istrue: false
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.page {
|
|
width: 750rpx;
|
|
|
|
.cont {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
.card1{
|
|
padding: 44rpx 48rpx;
|
|
width: 680rpx;
|
|
height: 142rpx;
|
|
background: #FFFFFF;
|
|
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|
|
</style> |