123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604 |
- <template>
- <view class="content">
- <view class="content-money">
- <view class="content-money">
- <view class="status_bar"><!-- 这里是状态栏 --></view>
- <view class="body-title">
- <!-- <view class="goback-box" @click="toBack"><image class="goback" src="../../static/icon/fanhui.png" mode=""></image></view> -->
- <view class="header">我的余额</view>
- </view>
- <view class="content-bg"><image src="../../static/img/user-bg.png" mode=""></image></view>
- <view class="money-box">
- <view class="money">{{ userInfo.now_money || '0.00'}}</view>
- <view>当前余额</view>
- </view>
- <view class="moneybtn-box">
- <!-- <view class="money-btn" style="text-decoration: underline;" @click="navto('/pages/money/freeze')">冻结记录</view> -->
- <view class="money-btn" style="text-decoration: underline;"></view>
- <view class="money-btn" @click="navto('/pages/user/yjzz?type=1')">余额互转</view>
- <!-- <view class="money-btn" @click="openkf()">充值</view> -->
- </view>
- </view>
- </view>
- <!-- <view class="info-box flex">
- <view class="shu"></view>
- <view class="info-item">
- <view class="info-font">累计充值</view>
- <view class="info-num">{{ userInfo.recharge || '0' }}</view>
- </view>
- <view class="shu"></view>
- <view class="info-item">
- <view class="info-font">累计支出</view>
- <view class="info-num">{{ userInfo.orderStatusSum || '0'}}</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: maxheight }" 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">
- <!-- 空白页 -->
- <empty v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
- <!-- 订单列表 -->
- <view class="order-item flex" v-for="(item, index) in tabItem.orderList" :key="index">
- <view class="title-box">
- <view class="title">
- <text>{{ item.mark||item.title }}</text>
- </view>
- <view class="time">
- <text>{{ item.add_time }}</text>
- </view>
- </view>
- <view class="money">
- <text>{{ (item.pm == 0 ? '-' : '+') + item.number }}</text>
- </view>
- </view>
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- <uni-popup ref="popupkf" type="center">
- <view class="popup-box">
- <view class="img">
- <image src="../../static/img/img009.png" mode=""></image>
- </view>
- <view class="mian">
- <view class="delivery">
- <view class="title">已经为您定制专属客服</view>
- <image src="../../static/img/img010.png" mode=""></image>
- </view>
- <view class="nocancel">客服VX:{{ text }}</view>
- <view class="comfirm-box">
- <view class="cancel" @click="cancel">取消</view>
- <view class="comfirm" @click="comfirm(text)">复制微信</view>
- </view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import { spreadCommission, userBalance, yue } from '@/api/wallet.js';
- import { mapState, mapMutations } from 'vuex';
- import { getMoneyStyle } from '@/utils/rocessor.js';
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- import empty from '@/components/empty';
- import { getUserInfo } from '@/api/user.js';
- export default {
- filters: {
- getMoneyStyle
- },
- components: {
- empty,
- uniLoadMore
- },
- onReady(res) {
- var _this = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.swiper-box').boundingClientRect();
- query.exec(function(res) {
- _this.maxheight = resu.windowHeight - res[0].top + 'px';
- console.log('打印页面的剩余高度', _this.maxheight);
- });
- },
- fail: res => {}
- });
- },
- data() {
- return {
- text: '',
- userInfo: {},
- // 头部图高度
- maxheight: '',
- tabCurrentIndex: 0,
- sr: '',
- zc: '',
- navList: [
- {
- state: 2,
- text: '收入',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页面
- limit: 10 //每次信息条数
- },
- {
- state: 1,
- text: '支出',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页面
- limit: 10 //每次信息条数
- }
- ],
- money: ''
- };
- },
- onLoad(options) {},
- onShow() {
- this.getUserInfo();
- this.loadData('re');
- //获取用户余额
- // userBalance({}).then(({ data }) => {
- // this.money = data.commissionCount;
- // });
- },
- methods: {
- ...mapMutations('user', ['setUserInfo']),
- // 打开客服
- openkf() {
- this.$refs.popupkf.open();
- },
- cancel() {
- this.$refs.popupkf.close();
- },
- comfirm(text) {
- console.log(text);
- const result = this.uniCopy(text);
- if (result === false) {
- uni.showToast({
- title: '不支持'
- });
- } else {
- uni.showToast({
- title: '复制成功',
- icon: 'none'
- });
- }
- this.$refs.popupkf.close();
- },
- uniCopy(content) {
- /**
- * 小程序端 和 app端的复制逻辑
- */
- //#ifndef H5
- uni.setClipboardData({
- data: content,
- success: function() {
- console.log('success');
- return true;
- }
- });
- //#endif
-
- /**
- * H5端的复制逻辑
- */
- // #ifdef H5
- if (!document.queryCommandSupported('copy')) {
- //为了兼容有些浏览器 queryCommandSupported 的判断
- // 不支持
- return false;
- }
- let textarea = document.createElement('textarea');
- textarea.value = content;
- textarea.readOnly = 'readOnly';
- document.body.appendChild(textarea);
- textarea.select(); // 选择对象
- textarea.setSelectionRange(0, content.length); //核心
- let result = document.execCommand('copy'); // 执行浏览器复制命令
- textarea.remove();
- return result;
- // #endif
- },
- navto(e) {
- uni.navigateTo({
- url: e
- });
- },
- getUserInfo() {
- getUserInfo({}).then(({ data }) => {
- this.userInfo = data
- });
- },
- async loadData(source) {
- const obj = this;
- //这里时将订单挂载到tab列表下
- let index = this.tabCurrentIndex;
- let navItem = this.navList[index];
- let state = navItem.state ;
- if(source == 're' ) {
- navItem.orderList = []
- navItem.loadingType = 'more'
- navItem.page = 1
- }
- if (source === 'tabChange' && navItem.loaded === true) {
- //tab切换只有第一次需要加载数据
- return;
- }
- if (navItem.loadingType === 'loading' || navItem.loadingType === 'noMore') {
- //防止重复加载
- return;
- }
- //修改当前对象状态为加载中
- navItem.loadingType = 'loading';
- spreadCommission(
- {
- page: navItem.page,
- limit: navItem.limit,
- },state
- )
- .then(({ data }) => {
- if (data.length > 0) {
-
- let arr = []
- data.forEach(item => {
- arr = arr.concat(item.list)
- console.log(arr);
- })
- navItem.orderList = navItem.orderList.concat(arr);
- }
- if (navItem.limit == data.length) {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'more';
- } else {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'noMore';
- }
- navItem.page++
- uni.hideLoading();
- this.$set(navItem, 'loaded', true);
- })
- .catch(e => {
- console.log(e);
- });
- },
- //swiper 切换
- changeTab(e) {
- this.tabCurrentIndex = e.target.current;
- this.loadData('tabChange');
- },
- //顶部tab点击
- tabClick(index) {
- this.tabCurrentIndex = index;
- },
- toBack() {
- uni.navigateBack({
- fail() {
- uni.switchTab({
- url: '/pages/user/user'
- })
- }
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- $base-btn-color:#847360;
- page {
- background: #f2f5f4;
- height: 100%;
- }
- .status_bar {
- height: var(--status-bar-height);
- width: 100%;
- }
- .content-money {
- position: relative;
- height: 480rpx;
- .content-bg {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- width: 750rpx;
- height: 480rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .body-title {
- height: 80rpx;
- text-align: center;
- font-size: 35rpx;
- position: relative;
- .header {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: $base-btn-color;
- height: 80rpx;
- font-size: 36rpx;
- font-weight: 700;
- z-index: 9;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .goback-box {
- position: absolute;
- left: 18rpx;
- top: 0;
- height: 80rpx;
- display: flex;
- align-items: center;
- }
- .goback {
- z-index: 100;
- width: 34rpx;
- height: 34rpx;
- }
- }
- }
- .money-box {
- position: relative;
- z-index: 2;
- padding-top: 90rpx;
- color: $base-btn-color;
- text-align: center;
- .money {
- font-size: 72rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: $base-btn-color;
- }
- .text {
- font-size: 30rpx;
- }
- }
- .moneybtn-box {
- display: flex;
- justify-content: space-between;
- position: relative;
- z-index: 2;
- color:$base-btn-color;
- padding: 20rpx 50rpx;
- font-size: 30rpx;
- font-weight: bold;
- }
- .navbar {
- margin-top: 25rpx;
- display: flex;
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- position: relative;
- z-index: 10;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- color: $font-color-dark;
- position: relative;
- &.current {
- color: #000;
- font-weight: bold;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid #FF4C4C;
- }
- }
- }
- }
- //列表
- .swiper-box {
- .order-item {
- padding: 20rpx 30rpx;
- line-height: 1.5;
- .title-box {
- .title {
- font-size: $font-lg;
- color: $font-color-base;
- }
- .time {
- font-size: $font-base;
- color: $font-color-light;
- }
- }
- .money {
- color: rgba(239, 58, 85, 1);
- font-size: $font-lg;
- }
- }
- }
- .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-family: PingFang SC;
- font-weight: bold;
- color: #999999;
- }
- .info-num {
- margin-top: 30rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #181818;
- }
- }
- .shu {
- width: 2rpx;
- height: 74rpx;
- background: #dcdfe6;
- }
- }
- .list-scroll-content {
- background-color: #ffffff;
- height: 100%;
- }
- .content {
- height: 100%;
- .empty-content {
- background-color: #ffffff;
- }
- }
- .btm-wrap {
- height: 140rpx;
- width: 750rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- background-color: #fff;
- .btn {
- width: 674rpx;
- height: 88rpx;
- line-height: 88rpx;
- margin: auto;
- background: linear-gradient(-22deg, #9a5e19, #9a5e19);
- border-radius: 44rpx;
- text-align: center;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- }
- }
- .popup-box {
- width: 522rpx;
- height: 605rpx;
- background-color: #ffffff;
- border-radius: 20rpx;
- position: relative;
- .img {
- position: relative;
- top: -56rpx;
- left: 0;
- width: 522rpx;
- height: 132rpx;
- display: flex;
- justify-content: center;
- image {
- border-radius: 20rpx 20rpx 0 0;
- width: 450rpx;
- height: 132rpx;
- }
- }
- .mian {
- margin-top: -44rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- // padding: 32rpx 32rpx;
- background-color: #ffffff;
- border-radius: 0 0 20rpx 20rpx;
- text-align: center;
- .delivery {
- font-size: 40rpx;
- color: #333333;
- display: flex;
- align-items: center;
- flex-direction: column;
- image {
- margin-top: 48rpx;
- width: 172rpx;
- height: 160rpx;
- }
- }
- .nocancel {
- font-size: 32rpx;
- color: #333333;
- margin-top: 14rpx;
- }
- .comfirm-box {
- margin-top: 52rpx;
- display: flex;
- .cancel {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 197rpx;
- height: 74rpx;
- border: 1px solid #dcc786;
- border-radius: 38rpx;
- font-size: 32rpx;
- color: #605128;
- }
- .comfirm {
- margin-left: 32rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 197rpx;
- height: 74rpx;
- background: linear-gradient(-90deg, #d1ba77 0%, #f7e8ad 100%);
- border-radius: 38px;
- font-size: 32rpx;
- color: #605128;
- }
- }
- }
- }
- </style>
|