This commit is contained in:
weicw
2023-08-11 14:30:03 +08:00
parent 7a73b38bd5
commit 81ecfd9df0
9 changed files with 176 additions and 10 deletions

47
pages/saleman/saleman.vue Normal file
View File

@@ -0,0 +1,47 @@
<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>