Files
yunxinwei-uniapp/pages/saleman/saleman.vue
2023-08-11 14:30:03 +08:00

48 lines
611 B
Vue

<template>
<view class="page-wrap">
<view class="bg1">
</view>
<view class="page-body">
<view class="card1">
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
.page-wrap{
min-height: 100vh;
}
.bg1{
width: 100vw;
height: 200rpx;
background-color: #6892FB;
}
.page-body{
position: relative;
bottom: 40rpx;
}
.card1{
background-color: #FFFFFf;
box-shadow: 0 10rpx 20rpx rgba(0,0,0,.15);
width: 620rpx;
height: 400rpx;
margin: 0 auto;
border-radius: 10rpx;
}
</style>