123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <view class="body">
- <!-- 分红金额 -->
- <view class="bg-box">
- <view class="fh-box">分红余额(元)</view>
- <view class="maney-box">
- <view style="flex:1;"></view>
- <view style="font-size: 60rpx;margin-left: 30rpx;">99999.88</view>
- <view class="tix-box">提现</view>
- <view style="flex:1;"></view>
- </view>
- </view>
- <view style="font-size:28rpx;margin-top:10rpx;margin-left:2.5%;color:#555;">收益明细</view>
- <!-- 中部 -->
- <view class="list-wrap" style="margin-top:10rpx;">
- <scroll-view scroll-y="true" class="list">
- <view class="list-scroll-view">
- <view class="course-card" v-for="i in 20">
- <view>
- <view style="font-size:28rpx;color:#666;">随心</view>
- <view style="font-size:22rpx;color:#CBCBCB;">2024-09-18 15:45:41</view>
- </view>
- <view style="flex:1;"></view>
- <view style="font-size:36rpx;color:red;">+98</view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- current: 0,
- swiperDotIndex: 0,
- data: [{
- image: '/static/images/banner/banner01.jpg'
- },
- {
- image: '/static/images/banner/banner02.jpg'
- },
- {
- image: '/static/images/banner/banner03.jpg'
- }
- ]
- }
- },
- methods: {
- clickBannerItem(item) {
- console.info(item)
- },
- changeSwiper(e) {
- this.current = e.detail.current
- },
- changeGrid(e) {
- this.$modal.showToast('模块建设中~')
- }
- }
- }
- </script>
- <style lang="scss">
- // 上中下布局样式
- .body {
- display: flex;
- flex-direction: column;
- height: calc(100vh - 60px);
- background-color: #EEEEF0;
- }
- .head {
- text-align: center;
- }
- // 中部滚动
- .list-wrap {
- flex-grow: 1;
- position: relative;
- width: 95%;
- margin-left: 2.5%;
- box-sizing: border-box;
- border-radius: 10rpx;
- background-color: #fff;
- }
- .list {
- position: absolute;
- top: 20rpx;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .list-scroll-view {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: space-between;
- margin-left: 2vw;
- margin-right: 2vw;
- }
- .course-card {
- width:95%;
- margin-left:2.5%;
- box-sizing:border-box;
- display:flex;
- flex-wrap:wrap;
- justify-content:center;
- align-items: center;
- padding-bottom:15rpx;
- border-bottom:1rpx solid #999;
- margin-bottom:30rpx;
- }
- // 底部
- .tools {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .tools-item {
- width: 45px;
- text-align: center;
- font-size: 14px;
- padding: 20px;
- }
- .tix-box {
- padding: 10rpx;
- font-size: 30rpx;
- margin-left: 10rpx;
- }
- .maney-box {
- display: flex;
- flex-wrap: nowrap;
- justify-content: center;
- align-items: center;
- width: 100%;
- box-sizing: border-box;
- }
- .fh-box {
- width: 100%;
- padding: 10rpx;
- padding-top: 30rpx;
- font-size: 36rpx;
- text-align: center;
- box-sizing: border-box;
- }
- .bg-box {
- position: relative;
- width: 100%;
- min-height: 240rpx;
- background-color: #36AFCA;
- color: #fff;
- box-sizing: border-box;
- }
- </style>
|