|
|
@@ -1,87 +1,90 @@
|
|
|
<template>
|
|
|
<view class="content">
|
|
|
- <view class="bg">
|
|
|
- </view>
|
|
|
<view class="content-money">
|
|
|
- <view class="conetnt-box">
|
|
|
- <view class="money-box">
|
|
|
- <view class="text">可用佣金(元)</view>
|
|
|
- <view class="money">{{ money | getMoneyStyle }}</view>
|
|
|
+ <view class="status_bar">
|
|
|
+ <!-- 这里是状态栏 -->
|
|
|
+ </view>
|
|
|
+ <view class="body-title flex-center">
|
|
|
+ <view class="goback-box flex-center" @click="toBack">
|
|
|
+ <image class="goback" src="../../../static/icon/next2.png" mode="scaleToFill"></image>
|
|
|
</view>
|
|
|
-
|
|
|
- <view class="detailBox flex">
|
|
|
- <view class="item">
|
|
|
- <view class="nametype">
|
|
|
- 提现中
|
|
|
- </view>
|
|
|
- <view class="moneyNum font-color-red">
|
|
|
- {{addMoney||0}}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="item">
|
|
|
- <view class="nametype">
|
|
|
- 即将到账
|
|
|
- </view>
|
|
|
- <view class="moneyNum ">
|
|
|
- {{timeMoney||0}}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="item">
|
|
|
- <view class="nametype">
|
|
|
- 累计收益
|
|
|
- </view>
|
|
|
- <view class="moneyNum ">
|
|
|
- {{allMoney||0}}
|
|
|
- </view>
|
|
|
+ <view class="header flex-center">我的佣金</view>
|
|
|
+ </view>
|
|
|
+ <view class="content-bg">
|
|
|
+ <image src="../../../static/image/awardbg.png" mode="scaleToFill"></image>
|
|
|
+ </view>
|
|
|
+ <view class="money-box">
|
|
|
+ <view class="money">{{ bankData.brokerage_price || 0 }}</view>
|
|
|
+ <view>我的佣金</view>
|
|
|
+ </view>
|
|
|
+ <view class="moneybtn-box flex">
|
|
|
+ <view class="money-btn flex" @click="navto('/pages/user_home/award/changeWallet')">
|
|
|
+ <image src="../../../static/icon/award1.png" mode="widthFix" class="tip"></image>
|
|
|
+ <view>
|
|
|
+ 卡券转换
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="flex buttom-box">
|
|
|
- <view class="buttom geMoney" @click="navto('./withdrawal')">
|
|
|
- <text>提现</text>
|
|
|
+ <view class="money-btn flex" @click="navto('/pages/user_home/award/withdrawal')">
|
|
|
+ <image src="../../../static/icon/award2.png" mode="widthFix" class="tip"></image>
|
|
|
+ <view>
|
|
|
+ 佣金提现
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="listbox">
|
|
|
- <view class="navbar flex">
|
|
|
- <view class="title">
|
|
|
- 佣金变动明细
|
|
|
- </view>
|
|
|
- <view class="alllist" @click="navto('./awardList')">
|
|
|
- 全部
|
|
|
- </view>
|
|
|
+ <view class="info-box flex">
|
|
|
+ <view class="info-item">
|
|
|
+ <view class="info-font">累计收入</view>
|
|
|
+ <view class="info-num">{{bankData.total_brokerage || '0.00'}}</view>
|
|
|
</view>
|
|
|
- <view class="conetntList">
|
|
|
- <view class="listItem flex" v-for="(item, tabIndex) in navList[0].orderList">
|
|
|
- <view class="itemLeft">
|
|
|
- <view class="itemTitle flex">
|
|
|
- <text>{{item.title}}</text>
|
|
|
- <text class="font-size-sm font-color-red" v-if="item.status==0">(未到账)</text>
|
|
|
- </view>
|
|
|
- <view class="itemBottom">
|
|
|
- {{item.add_time}}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="itemRight">
|
|
|
- <view class="itemTitle">
|
|
|
- {{(item.pm == 0 ? '-' : '+')+item.number}}
|
|
|
- </view>
|
|
|
- <!-- <view class="itemBottom">
|
|
|
- 余额{{item.yue}}
|
|
|
- </view> -->
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <uni-load-more :status="navList[0].loadingType"></uni-load-more>
|
|
|
+ <view class="shu"></view>
|
|
|
+ <view class="info-item">
|
|
|
+ <view class="info-font">累计支出</view>
|
|
|
+ <view class="info-num">{{bankData.ext_broerage || '0.00'}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="navbar">
|
|
|
+ <view v-for="(item, index) in navList" :key="index" class="nav-item"
|
|
|
+ :class="{ current: tabCurrentIndex === index }" @click="tabClick(index)">{{ item.text }}</view>
|
|
|
+ </view>
|
|
|
+ <swiper :current="tabCurrentIndex" :style="{ height: height }" class="swiper-box" duration="300"
|
|
|
+ @change="changeTab">
|
|
|
+ <swiper-item class="tab-content" v-for="(tabItem, tabIndex) in navList" :key="tabIndex">
|
|
|
+ <scroll-view scroll-y="true" class="list-scroll-content" @scrolltolower="loadData">
|
|
|
+ <!-- 空白页 -->
|
|
|
+ <!-- #ifdef H5 -->
|
|
|
+ <empty src="../../../static/error/emptyOrder.png"
|
|
|
+ v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
|
|
|
+ <!-- #endif -->
|
|
|
+ <!-- #ifndef H5 -->
|
|
|
+ <empty src="../../static/error/emptyOrder.png"
|
|
|
+ v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
|
|
|
+ <!-- #endif -->
|
|
|
+ <!-- 订单列表 -->
|
|
|
+ <view>
|
|
|
+ <view class="order-item flex" v-for="(item, index) in tabItem.orderList" :key="index">
|
|
|
+ <view class="title-box">
|
|
|
+ <view class="title">
|
|
|
+ <text>{{ item.mark }}</text>
|
|
|
+ </view>
|
|
|
+ <view class="time">
|
|
|
+ <text>{{ item.create_time }}</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="money">
|
|
|
+ <view>{{ (item.pm == 0 ? '-' : '+') + item.number }}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <uni-load-more :status="tabItem.loadingType"
|
|
|
+ v-if="!(tabItem.orderList.length == 0 && tabItem.loaded)"></uni-load-more>
|
|
|
+ </scroll-view>
|
|
|
+ </swiper-item>
|
|
|
+ </swiper>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {
|
|
|
- spreadCommission,
|
|
|
- extractBank
|
|
|
- } from '@/api/wallet.js';
|
|
|
import {
|
|
|
mapState,
|
|
|
mapMutations
|
|
|
@@ -89,61 +92,106 @@
|
|
|
import {
|
|
|
getMoneyStyle
|
|
|
} from '@/utils/rocessor.js';
|
|
|
- // import empty from '@/components/empty';
|
|
|
+ import {
|
|
|
+ mapGetters
|
|
|
+ } from 'vuex';
|
|
|
+ import {
|
|
|
+ extractBank,
|
|
|
+ spreadCommission
|
|
|
+ } from '@/api/wallet.js'
|
|
|
export default {
|
|
|
filters: {
|
|
|
getMoneyStyle
|
|
|
},
|
|
|
- // components: {
|
|
|
- // empty,
|
|
|
- // },
|
|
|
+ computed: {
|
|
|
+ ...mapState('user', ['userInfo'])
|
|
|
+ },
|
|
|
+ onReady(res) {
|
|
|
+ var _this = this;
|
|
|
+ console.log(_this.userInfo)
|
|
|
+ uni.getSystemInfo({
|
|
|
+ success: resu => {
|
|
|
+ const query = uni.createSelectorQuery();
|
|
|
+ query.select('.swiper-box').boundingClientRect();
|
|
|
+ query.exec(function(res) {
|
|
|
+ _this.height = resu.windowHeight - res[0].top + 'px';
|
|
|
+ console.log('打印页面的剩余高度', _this.height);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ fail: res => {}
|
|
|
+ });
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
+ height: '',
|
|
|
+ // 头部图高度
|
|
|
+ maxheight: '',
|
|
|
tabCurrentIndex: 0,
|
|
|
- navList: [{
|
|
|
- state: 3,
|
|
|
- text: '收入',
|
|
|
- loadingType: 'more',
|
|
|
- orderList: [],
|
|
|
- page: 1, //当前页面
|
|
|
- limit: 10 //每次信息条数
|
|
|
- }],
|
|
|
- money: 0, //可提现佣金
|
|
|
- addMoney: 200, //提现中到账
|
|
|
- timeMoney: 200, //即将到账
|
|
|
- allMoney: 1000, //累计收益
|
|
|
-
|
|
|
+ orderStatusSum: 0,
|
|
|
+ recharge: 0,
|
|
|
+ navList: [
|
|
|
+ // {
|
|
|
+ // state: 0,
|
|
|
+ // text: '全部',
|
|
|
+ // loadingType: 'more',
|
|
|
+ // orderList: [],
|
|
|
+ // page: 1, //当前页数
|
|
|
+ // limit: 10 //每次信息条数
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ state: 3,
|
|
|
+ text: '收入',
|
|
|
+ loadingType: 'more',
|
|
|
+ orderList: [],
|
|
|
+ page: 1, //当前页数
|
|
|
+ limit: 10 //每次信息条数
|
|
|
+ },
|
|
|
+ {
|
|
|
+ state: 4,
|
|
|
+ text: '支出',
|
|
|
+ loadingType: 'more',
|
|
|
+ orderList: [],
|
|
|
+ page: 1, //当前页数
|
|
|
+ limit: 10 //每次信息条数
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ money: '',
|
|
|
+ bankData:{
|
|
|
+ brokerage_price:'0.00',
|
|
|
+ ext_broerage:'0.00',//累计支出
|
|
|
+ total_brokerage:'0.00',//累计收入
|
|
|
+ }
|
|
|
};
|
|
|
},
|
|
|
- onLoad(options) {
|
|
|
- this.loadData();
|
|
|
- },
|
|
|
+ onLoad(options) {},
|
|
|
onShow() {
|
|
|
- //获取用户余额
|
|
|
- extractBank({}).then(({
|
|
|
- data
|
|
|
- }) => {
|
|
|
- this.money = data.commissionCount;
|
|
|
- this.addMoney = data.ext_broerage;
|
|
|
- this.timeMoney = data.not_broerage;
|
|
|
- this.allMoney = data.total_brokerage;
|
|
|
- });
|
|
|
- },
|
|
|
- // 页面到底部后加载数据
|
|
|
- onReachBottom() {
|
|
|
+ this.extractBank()
|
|
|
this.loadData();
|
|
|
},
|
|
|
methods: {
|
|
|
+ extractBank() {
|
|
|
+ extractBank().then(res => {
|
|
|
+ this.bankData = res.data
|
|
|
+ })
|
|
|
+ },
|
|
|
+ toBack() {
|
|
|
+ uni.switchTab({
|
|
|
+ url: '/pages/user/user'
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 页面跳转
|
|
|
navto(e) {
|
|
|
uni.navigateTo({
|
|
|
url: e
|
|
|
});
|
|
|
},
|
|
|
+ //获取收入支出信息
|
|
|
async loadData(source) {
|
|
|
- //这里时将订单挂载到tab列表下
|
|
|
+ let obj = this;
|
|
|
+ //这里是将订单挂载到tab列表下
|
|
|
let index = this.tabCurrentIndex;
|
|
|
let navItem = this.navList[index];
|
|
|
- let state = navItem.state ;
|
|
|
+ let state = navItem.state;
|
|
|
if (source === 'tabChange' && navItem.loaded === true) {
|
|
|
//tab切换只有第一次需要加载数据
|
|
|
return;
|
|
|
@@ -152,29 +200,22 @@
|
|
|
//防止重复加载
|
|
|
return;
|
|
|
}
|
|
|
- //修改当前对象状态为加载中
|
|
|
+ // 修改当前对象状态为加载中
|
|
|
navItem.loadingType = 'loading';
|
|
|
|
|
|
spreadCommission({
|
|
|
- page: navItem.page,
|
|
|
- limit: navItem.limit
|
|
|
- },
|
|
|
- state
|
|
|
- )
|
|
|
+ page: navItem.page,
|
|
|
+ limit: navItem.limit,
|
|
|
+ },state)
|
|
|
.then(({
|
|
|
data
|
|
|
}) => {
|
|
|
- if (data.length > 0) {
|
|
|
- navItem.orderList = navItem.orderList.concat(data[0].list);
|
|
|
- console.log(navItem.orderList);
|
|
|
- navItem.page++;
|
|
|
- }
|
|
|
- //判断是否还有数据, 有改为more, 没有改为noMore
|
|
|
+ navItem.orderList = navItem.orderList.concat(data)
|
|
|
+ navItem.page++
|
|
|
if (navItem.limit == data.length) {
|
|
|
navItem.loadingType = 'more';
|
|
|
- return;
|
|
|
} else {
|
|
|
- navItem.loadingType = 'noMore';
|
|
|
+ navItem.loadingType = 'noMore'
|
|
|
}
|
|
|
uni.hideLoading();
|
|
|
this.$set(navItem, 'loaded', true);
|
|
|
@@ -184,144 +225,245 @@
|
|
|
});
|
|
|
},
|
|
|
|
|
|
+ //swiper 切换
|
|
|
+ changeTab(e) {
|
|
|
+ this.tabCurrentIndex = e.target.current;
|
|
|
+ this.loadData('tabChange');
|
|
|
+ },
|
|
|
+ //顶部tab点击
|
|
|
+ tabClick(index) {
|
|
|
+ this.tabCurrentIndex = index;
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
+ };
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
page {
|
|
|
+ background: #f1f1f1;
|
|
|
height: 100%;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
.content-money {
|
|
|
position: relative;
|
|
|
- padding: 20rpx;
|
|
|
- z-index: 1;
|
|
|
+ height: 480rpx;
|
|
|
+ color: #ffffff;
|
|
|
|
|
|
- .conetnt-box {
|
|
|
- border-radius: 20rpx;
|
|
|
- background-color: #ffffff;
|
|
|
- padding-bottom: 50rpx;
|
|
|
+ .content-bg {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ height: 480rpx;
|
|
|
|
|
|
- // height: 400rpx;
|
|
|
- .detailBox {
|
|
|
- justify-content: space-around;
|
|
|
- padding-top: 30rpx;
|
|
|
+ image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- .item {
|
|
|
- text-align: center;
|
|
|
- color: $font-color-light;
|
|
|
+ .money-box {
|
|
|
+ position: relative;
|
|
|
+ z-index: 2;
|
|
|
+ padding-top: 130rpx;
|
|
|
+ text-align: center;
|
|
|
+ padding-bottom: 50rpx;
|
|
|
|
|
|
- .nametype {
|
|
|
- color: $font-color-disabled;
|
|
|
- font-size: 24rpx;
|
|
|
- }
|
|
|
+ .money {
|
|
|
+ font-size: 72rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
|
|
|
- .moneyNum {
|
|
|
- margin-top: 20rpx;
|
|
|
- font-size: 28rpx;
|
|
|
- font-weight: bold;
|
|
|
- }
|
|
|
- }
|
|
|
+ .text {
|
|
|
+ font-size: $font-lg;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .buttom-box {
|
|
|
+ .body-title {
|
|
|
+ height: 80rpx;
|
|
|
text-align: center;
|
|
|
- margin: 0 30rpx;
|
|
|
- margin-top: 50rpx;
|
|
|
+ font-size: 35rpx;
|
|
|
+ z-index: 999;
|
|
|
+ font-weight: bold;
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
|
|
|
- .buttom {
|
|
|
- flex-grow: 1;
|
|
|
- border-radius: 100rpx;
|
|
|
- font-size: $font-lg;
|
|
|
- width: 300rpx;
|
|
|
- height: 80rpx;
|
|
|
- line-height: 80rpx;
|
|
|
- background-color: $color-green;
|
|
|
- color: #FFFFFF;
|
|
|
-
|
|
|
- &.geMoney {
|
|
|
- border: 1px solid $font-color-disabled;
|
|
|
- color: $font-color-disabled;
|
|
|
- background-color: #FFFFFF;
|
|
|
+ .header {}
|
|
|
+
|
|
|
+ .goback-box {
|
|
|
+ position: absolute;
|
|
|
+ left: 18rpx;
|
|
|
+ bottom: 0;
|
|
|
+ top: 0;
|
|
|
+
|
|
|
+ .goback {
|
|
|
+ width: 34rpx;
|
|
|
+ height: 34rpx;
|
|
|
+ transform: rotate(180deg);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .money-box {
|
|
|
- text-align: center;
|
|
|
- color: $font-color-dark;
|
|
|
- font-weight: bold;
|
|
|
+ .info-box {
|
|
|
+ width: 670rpx;
|
|
|
+ height: 186rpx;
|
|
|
+ background: #ffffff;
|
|
|
+ box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
|
|
|
+ border-radius: 20rpx;
|
|
|
+ margin: -100rpx auto 0;
|
|
|
+ position: relative;
|
|
|
+ z-index: 2;
|
|
|
+
|
|
|
+ .info-item {
|
|
|
+ width: 50%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ line-height: 1;
|
|
|
+
|
|
|
+ .info-font {
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #999999;
|
|
|
+ }
|
|
|
|
|
|
- .text {
|
|
|
- padding-top: 85rpx;
|
|
|
- font-size: 24rpx;
|
|
|
- margin-bottom: 20rpx;
|
|
|
+ .info-num {
|
|
|
+ margin-top: 30rpx;
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #181818;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- .money {
|
|
|
- font-size: 60rpx;
|
|
|
+ .shu {
|
|
|
+ width: 2rpx;
|
|
|
+ height: 74rpx;
|
|
|
+ background: #dcdfe6;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .listbox {
|
|
|
- margin: 0 20rpx;
|
|
|
- border-radius: 20rpx;
|
|
|
+
|
|
|
+
|
|
|
+ .moneybtn-box {
|
|
|
position: relative;
|
|
|
+ padding: 0rpx 50rpx;
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ .money-btn{
|
|
|
+ font-size: $font-lg;
|
|
|
+ .tip{
|
|
|
+ width: 40rpx;
|
|
|
+ height:40rpx;
|
|
|
+ margin-right: 10rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.navbar {
|
|
|
+ margin-top: 20rpx;
|
|
|
+ display: flex;
|
|
|
+ height: 88rpx;
|
|
|
+ padding: 0 5px;
|
|
|
background: #fff;
|
|
|
- padding: 30rpx;
|
|
|
- border-bottom: 1px solid $page-color-light;
|
|
|
- border-top-left-radius: 20rpx;
|
|
|
- border-top-right-radius: 20rpx;
|
|
|
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
|
|
|
+ position: relative;
|
|
|
+ z-index: 10;
|
|
|
|
|
|
- .title {
|
|
|
- font-size: 32rpx;
|
|
|
- font-weight: bold;
|
|
|
- }
|
|
|
+ .nav-item {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 100%;
|
|
|
+ font-size: 15px;
|
|
|
+ color: #999999;
|
|
|
+ position: relative;
|
|
|
|
|
|
- .alllist {
|
|
|
- font-size: 28rpx;
|
|
|
+ &.current {
|
|
|
+ color: #000;
|
|
|
|
|
|
+ &:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: 0;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ width: 44px;
|
|
|
+ height: 0;
|
|
|
+ border-bottom: 2px solid #fe5b38;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ //列表
|
|
|
+ .swiper-box {
|
|
|
+ .order-item:last-child {
|
|
|
+ margin-bottom: 60rpx;
|
|
|
+ }
|
|
|
|
|
|
- .content {
|
|
|
- height: 100%;
|
|
|
+ .order-item {
|
|
|
+ padding: 20rpx 30rpx;
|
|
|
+ line-height: 1.5;
|
|
|
|
|
|
- .bg {
|
|
|
- background-color: #f6ab0b;
|
|
|
- width: 950rpx;
|
|
|
- position: absolute;
|
|
|
- left: -100rpx;
|
|
|
- border-bottom-left-radius: 1000rpx;
|
|
|
- border-bottom-right-radius: 1000rpx;
|
|
|
- top: 0rpx;
|
|
|
- height: 300rpx;
|
|
|
+ .title-box {
|
|
|
+ .title {
|
|
|
+ font-size: $font-lg;
|
|
|
+ color: $font-color-base;
|
|
|
+ }
|
|
|
+
|
|
|
+ .time {
|
|
|
+ font-size: $font-base;
|
|
|
+ color: $font-color-light;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .money {
|
|
|
+ color: #fd5b23;
|
|
|
+ font-size: $font-lg;
|
|
|
+ text-align: right;
|
|
|
+
|
|
|
+ .status {
|
|
|
+ color: $font-color-light;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
+ .list-scroll-content {
|
|
|
+ background: #ffffff;
|
|
|
+ height: 100%;
|
|
|
}
|
|
|
|
|
|
- .conetntList {
|
|
|
- padding: 30rpx;
|
|
|
- background-color: #FFFFFF;
|
|
|
- border-bottom-left-radius: 20rpx;
|
|
|
- border-bottom-right-radius: 20rpx;
|
|
|
+ .content {
|
|
|
+ height: 100%;
|
|
|
|
|
|
- .listItem {
|
|
|
- font-size: 30rpx;
|
|
|
- color: $font-color-dark;
|
|
|
- align-items: flex-start;
|
|
|
+ .empty-content {
|
|
|
+ background-color: #ffffff;
|
|
|
}
|
|
|
|
|
|
- .itemBottom {
|
|
|
- font-size: 24rpx;
|
|
|
- color: $font-color-disabled;
|
|
|
- }
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-box {
|
|
|
+ width: 674rpx;
|
|
|
+ height: 88rpx;
|
|
|
+ background: linear-gradient(0deg, #2e58ff, #32c6ff);
|
|
|
+ border-radius: 44rpx;
|
|
|
+ font-size: 36rpx;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #ffffff;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 88rpx;
|
|
|
+ position: fixed;
|
|
|
+ bottom: 48rpx;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ margin: 0 auto;
|
|
|
}
|
|
|
</style>
|