123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- <template>
- <view class="center">
- <view class="bg"></view>
- <view class="zong flex">
- <view class="info">
- <view class="info-num">{{ yesterday || '0.00' }}</view>
- <view class="info-font">昨天释放</view>
- </view>
- <view class="info">
- <view class="info-num">{{ all || '0.00' }}</view>
- <view class="info-font">累计释放</view>
- </view>
- </view>
- <view class="zongbox flex">
- <view class="zongbox-left">昨日</view>
- <view class="info">
- <view class="num">{{yesterday_award}}</view>
- <view class="info-font">昨日门票分红</view>
- </view>
- <view class="info">
- <view class="num">{{yesterday_service}}</view>
- <view class="info-font">手续费分红</view>
- </view>
- <view class="info">
- <view class="num">0</view>
- <view class="info-font">其他分红</view>
- </view>
- </view>
- <view class="zongbox flex">
- <view class="zongbox-left">历史</view>
- <view class="info">
- <view class="num">{{all_award}}</view>
- <view class="info-font">历史门票分红</view>
- </view>
- <view class="info">
- <view class="num">{{all_service}}</view>
- <view class="info-font">手续费分红</view>
- </view>
- <view class="info">
- <view class="num">0</view>
- <view class="info-font">其他分红</view>
- </view>
- </view>
- <view class="join">
- <view class="xian"></view>
- <view class="join-font">我的节点</view>
- </view>
- <view class="tabSwiper">
- <view class="swiper-item">
- <scroll-view scroll-y @scrolltolower="onreachBottom">
- <view class="boxItem flex" style=" flex-wrap: wrap;">
- <view class="item1" v-for="ls in tabList">
- <view class="ls1">
- <view class="name1">{{ ls.plan.plan_name }}</view>
- </view>
- <view class="item-main">
- <view class="main-top flex">
- <view class="top-left">认购份数:{{ ls.buy_num * 1 }}</view>
- <view class="top-left">释放天数:{{ ls.release_time_now }}</view>
- <!-- <view class="top-right">累计释放:20</view> -->
- </view>
- <view class="main-top flex">
- <!-- <view class="top-right">累计分红:20</view> -->
- </view>
- </view>
- </view>
- </view>
- <!-- <u-loadmore :status="loding"></u-loadmore> -->
- </scroll-view>
- </view>
- </view>
- <view class="join">
- <view class="xian"></view>
- <view class="join-font">其他节点</view>
- </view>
- <view class="box">
- <view class="boxItem flex" style=" flex-wrap: wrap; width: 50%;">
- <view class="item1" v-for="ls in pointList">
- <view class="ls1">
- <view class="name1">{{ ls.plan_name }}</view>
- </view>
- <view class="item-main">
- <view class="main-top">已加入人数:{{ls.request_num*1}}</view>
- <view class="main-top">合伙总人数:{{ls.all_stock*1}}</view>
- <view class="main-top">分红总量:{{ls.release_money*1}}</view>
- <!-- <view class="main-top">时间:2021年9月2日</view> -->
- </view>
- </view>
- </view>
- </view>
- <!-- </swiper-item>
- </swiper> -->
- <!-- <u-popup v-model="show" mode="center" width="548rpx" border-radius="14">
- <view class="psw-wrapper">
- <view class="psw-title">请输入支付密码</view>
- <input type="password" v-model="password" class="psw-ipt" />
- <view class="psw-btn">
- <text @click="cancel">取消</text>
- <text class="psw-qd" @click="pswQd">确定</text>
- </view>
- </view>
- </u-popup> -->
- </view>
- </template>
- <script>
- import { myPiont } from '@/api/user.js';
- import { getPoint } from '@/api/set.js';
- export default {
- data() {
- return {
- show: false,
- password: '',
- current: 0, //当前选中的标签
- tabList: [],
- pointList: [],
- loding: 'more',
- all: '',//累计释放
- yesterday: '',//昨天释放
- all_award:'',//历史门票分红
- yesterday_award:'',//昨日门票分红
- all_service: 0,//历史手续费分红
- yesterday_service:'',//昨日手续费分红
- };
- },
- //页面加载即刻发生
- onShow() {
- this.loadData();
- },
- methods: {
- async loadData() {
- uni.showLoading({
- title: '加载中'
- });
- myPiont({ page: 1, limit: 10000 }).then(({ data }) => {
- this.yesterday = data.yesterday * 1;
- this.yesterday_award = (data.yesterday_award * 1).toFixed(4);
- this.all = data.all * 1;
- this.all_award = (data.all_award * 1).toFixed(4);
- if (data.all_service.length != 0 ){
- for(let i = 0;i < data.all_service.length; i++){
- let j = data.all_service[i].sum *1
- this.all_service = this.all_service + j
- console.log(j,'1111')
- }
- this.all_service = (this.all_service*1).toFixed(4)
- }else {
- this.all_service = 0;
- }
- if (data.yesterday_service.length != 0 ){
- for(let i = 0;i < data.yesterday_service.length; i++){
- this.yesterday_service += data.yesterday_service[i].sum
- }
- }else {
- this.yesterday_service = 0;
- }
- this.tabList = data.list;
- getPoint().then(({ data }) => {
- this.pointList = data;
- uni.hideLoading();
- });
- });
- },
- // 下拉到底部加载事件
- onreachBottom(e) {
- console.log(e);
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- height: 100%;
- }
- .tabBox {
- flex-grow: 1;
- }
- .center {
- height: 0;
- min-height: 100%;
- }
- .bg {
- width: 750rpx;
- height: 248rpx;
- background: linear-gradient(90deg, #60bab0, #60bab0, #45969b);
- border-bottom-left-radius: 150rpx;
- border-bottom-right-radius: 150rpx;
- }
- .zong {
- width: 690rpx;
- height: 181rpx;
- background: #ffffff;
- box-shadow: 0px 0px 17rpx 0px rgba(0, 0, 0, 0.05);
- border-radius: 20rpx;
- margin: -150rpx auto 0;
- justify-content: space-around;
- padding: 0rpx 36rpx;
- }
- .info {
- display: flex;
- flex-direction: column;
- align-items: center;
- .info-num {
- font-size: 50rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #0f253a;
- }
- .info-font {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #6d7c88;
- }
- }
- .zongbox {
- width: 690rpx;
- height: auto;
- background: #ffffff;
- box-shadow: 0px 0px 17rpx 0px rgba(0, 0, 0, 0.05);
- border-radius: 20rpx;
- margin: 20rpx auto 0;
- justify-content: space-around;
- padding: 36rpx 10rpx 36rpx 60rpx;
- position: relative;
- .zongbox-left {
- padding-top: 30rpx;
- position: absolute;
- left: 0;
- top: 0;
- width: 50rpx;
- text-align: center;
- height: 100%;
- color: #fff;
- line-height: 1.5;
- background: linear-gradient(90deg, #60bab0, #60bab0, #45969b);
- border-top-left-radius: 20rpx;
- border-bottom-left-radius: 20rpx;
- }
- }
- .tab {
- background-color: #ffffff;
- align-items: stretch;
- .left {
- padding-left: 10rpx;
- padding-right: 20rpx;
- }
- }
- .tabSwiper {
- .swiper-item {
- padding: 30rpx 30rpx 0;
- }
- }
- .box {
- width: 100%;
- padding: 30rpx;
- }
- .boxItem {
- .item {
- background-color: #ffffff;
- line-height: 1;
- padding: 30rpx;
- margin-bottom: 30rpx;
- .title {
- justify-content: flex-start;
- padding-bottom: 30rpx;
- align-items: stretch;
- .tip {
- width: 7rpx;
- border-radius: 99rpx;
- background-color: $base-color;
- }
- .name {
- margin-left: 20rpx;
- font-size: 30rpx;
- font-weight: bold;
- color: $font-color-dark;
- }
- }
- .itemConetnt {
- padding: 20rpx 0;
- font-weight: bold;
- font-size: 28rpx;
- border-bottom: 1px solid $border-color-light;
- border-top: 1px solid $border-color-light;
- .ls {
- padding: 10rpx 0;
- color: $font-color-light;
- .textInterval {
- width: 0.5em;
- }
- .text {
- color: $font-color-dark;
- }
- }
- }
- .lsButtom {
- font-size: 30rpx;
- background-image: $bg-green-gradual;
- text-align: center;
- color: $font-color-white;
- padding: 30rpx 0;
- border-radius: 99rpx;
- margin: 20rpx 30rpx 0rpx 30rpx;
- }
- }
- // .item1:nth-child(odd) {
- // margin-right: 30rpx;
- // }
- .item1 {
- line-height: 1;
- background: url(../../static/img/rengouBg.png) no-repeat;
- background-position: right bottom;
- background-size: 140rpx 115rpx;
- flex-grow: 1;
- width: 100%;
- margin-bottom: 30rpx;
- border-radius: 15rpx;
- background-color: #ffffff;
- border: 1px solid $uni-color-primary;
- padding: 15rpx 10rpx 35rpx 30rpx;
- .ls1 {
- font-weight: bold;
- .name1 {
- color: $font-color-dark;
- font-size: $font-base + 2rpx;
- margin-top: 10rpx;
- }
- }
- .item-main {
- padding-top: 10rpx;
- .main-top {
- margin-top: 10rpx;
- font-size: 22rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #6d7c88;
- .top-left {
- flex: 1;
- }
- .top-right {
- flex: 1;
- }
- }
- }
- }
- }
- .psw-wrapper {
- width: 548rpx;
- height: 344rpx;
- background-color: #ffffff;
- .psw-title {
- width: 100%;
- font-size: 35rpx;
- padding: 43rpx 0 49rpx;
- text-align: center;
- font-weight: 800;
- }
- .psw-ipt {
- display: block;
- background-color: #dce3ed;
- height: 90rpx;
- width: 464rpx;
- padding-left: 30rpx;
- margin: 0 auto;
- font-size: 80rpx;
- }
- .psw-btn text {
- display: inline-block;
- text-align: center;
- width: 50%;
- padding-top: 29rpx;
- font-size: 35rpx;
- }
- .psw-qd {
- color: #45969b;
- }
- }
- .join {
- margin-top: 44rpx;
- padding-left: 30rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .xian {
- width: 6rpx;
- height: 30rpx;
- background: #0f253a;
- border-radius: 4rpx;
- }
- .join-font {
- padding-left: 16rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #0f253a;
- }
- }
- </style>
|