|
@@ -9,7 +9,8 @@
|
|
|
<text class="all-title ss-m-r-8">#{{ points2point(userWallet.integralDO.currentQuota) }}</text>
|
|
|
</view>
|
|
|
<view class="ss-m-b-40 ss-font-32 text-center">
|
|
|
- <view class="all-title ss-m-r-8 ss-m-b-10 ">当前可兑换积分:#{{ points2point(userWallet.integralDO.currentQuota) }}</view>
|
|
|
+ <view class="all-title ss-m-r-8 ss-m-b-10 ">
|
|
|
+ 当前可兑换积分:#{{ points2point(userWallet.integralDO.currentQuota) }}</view>
|
|
|
<view class="all-title ss-m-r-8" style="color: var(--ui-BG-Main)" @tap="state.showQueModel = true">
|
|
|
待确权积分:#{{points2point(userWallet.integralDO.freezeQuota)}}</view>
|
|
|
</view>
|
|
@@ -19,7 +20,8 @@
|
|
|
</view>
|
|
|
<view class="ss-m-b-40">
|
|
|
<view class="all-title ss-m-r-8">
|
|
|
- <button class="btn ss-reset-button ui-Shadow-Main" @tap="sheep.$router.go('/pages/user/wallet/scoreToMoney')">
|
|
|
+ <button class="btn ss-reset-button ui-Shadow-Main"
|
|
|
+ @tap="sheep.$router.go('/pages/user/wallet/scoreToMoney')">
|
|
|
兑换
|
|
|
</button>
|
|
|
</view>
|
|
@@ -32,41 +34,48 @@
|
|
|
</view>
|
|
|
</view> -->
|
|
|
</view>
|
|
|
- <!-- tab 统计 -->
|
|
|
- <!-- <su-sticky :customNavHeight="sys_navBar">
|
|
|
- <view class="filter-box ss-p-x-30 ss-flex ss-col-center ss-row-between">
|
|
|
- <uni-datetime-picker v-model="state.date" type="daterange" @change="onChangeTime" :end="state.today">
|
|
|
- <button class="ss-reset-button date-btn">
|
|
|
- <text>{{ dateFilterText }}</text>
|
|
|
- <text class="cicon-drop-down ss-seldate-icon"></text>
|
|
|
- </button>
|
|
|
- </uni-datetime-picker>
|
|
|
- </view>
|
|
|
- <su-tabs :list="tabMaps" @change="onChange" :scrollable="false" :current="state.currentTab"></su-tabs>
|
|
|
- </su-sticky> -->
|
|
|
<!-- 积分来源 -->
|
|
|
<su-popup :show="state.showModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
|
|
|
<view class="model-box ss-flex-col">
|
|
|
- <scroll-view class="list-box" scroll-y="true" @touchmove.stop>
|
|
|
+ <scroll-view class="list-box" style="width: 600rpx;" scroll-y="true" @touchmove.stop>
|
|
|
<view v-if="state.pagination.total > 0">
|
|
|
- <view class="list-item ss-flex ss-col-center"
|
|
|
- v-for="item in state.pagination.list" :key="item.id">
|
|
|
- <view class="name">{{ item.title }} : #{{ item.point}}</view>
|
|
|
+ <view class="list-item ss-flex ss-col-center ss-row-between "
|
|
|
+ v-for="(item,index) in state.pagination.list" :key="item.id" style="padding: 30rpx 0;">
|
|
|
+ <view class="ss-flex ss-col-center" style="width: 100%;">
|
|
|
+ <view>
|
|
|
+ {{index+1}}
|
|
|
+ </view>
|
|
|
+ <!-- 头像 -->
|
|
|
+ <view class="avatar-box ss-m-x-20">
|
|
|
+ <image class="avatar-img" :src="
|
|
|
+ sheep.$url.static('/static/img/shop/default_avatar.png')" mode="aspectFill"></image>
|
|
|
+ </view>
|
|
|
+ <view class="ss-flex ss-m-t-10"
|
|
|
+ style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.5rem);">
|
|
|
+ <view class="name" style="width: 100%;"> {{ item.name || '空' }} <text
|
|
|
+ style="float: right;">#{{item.point}}</text></view>
|
|
|
+ <view class="time " style="width: 100%;">
|
|
|
+ {{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM')}}
|
|
|
+ <text style="float: right;">消费额:¥234</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<s-empty v-else text="暂无数据" paddingTop="120" icon="/static/data-empty.png" />
|
|
|
</scroll-view>
|
|
|
</view>
|
|
|
</su-popup>
|
|
|
-
|
|
|
+
|
|
|
<!-- 积分确权 -->
|
|
|
<su-popup :show="state.showQueModel" type="center" round="10" :isMaskClick="false" showClose @close="close">
|
|
|
<view class="model-box ss-flex-col">
|
|
|
- <view class="all-title ss-p-x-30 ss-p-t-30" >
|
|
|
+ <view class="all-title ss-p-x-30 ss-p-t-30">
|
|
|
待确权积分 <text style="float: right;">共#{{points2point(userWallet.integralDO.freezeQuota)}}</text>
|
|
|
</view>
|
|
|
+ <!-- {{state.pagination.list}} -->
|
|
|
<scroll-view class="list-box" style="width: 600rpx;" scroll-y="true" @touchmove.stop>
|
|
|
- <view v-if="state.pagination.total > 0">
|
|
|
+ <view v-if="!(state.pagination.total > 0)">
|
|
|
<view class="list-item ss-flex ss-col-center ss-row-between "
|
|
|
v-for="(item,index) in state.pagination.list" :key="item.id" style="padding: 30rpx 0;">
|
|
|
<view class="ss-flex ss-col-center" style="width: 100%;">
|
|
@@ -78,10 +87,14 @@
|
|
|
<image class="avatar-img" :src="
|
|
|
sheep.$url.static('/static/img/shop/default_avatar.png')" mode="aspectFill"></image>
|
|
|
</view>
|
|
|
- <view class="ss-flex ss-m-t-10" style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.5rem);">
|
|
|
- <view class="name" style="width: 100%;"> {{ item.name || '空' }} <text style="float: right;">#{{item.point}}</text></view>
|
|
|
- <view class="time " style="width: 100%;">{{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM')}}
|
|
|
- <text style="float: right;">消费额:¥234</text></view>
|
|
|
+ <view class="ss-flex ss-m-t-10"
|
|
|
+ style="flex-direction: column;align-items: flex-start;width: calc(100% - 5.5rem);">
|
|
|
+ <view class="name" style="width: 100%;"> {{ item.name || '空' }} <text
|
|
|
+ style="float: right;">#{{item.point}}</text></view>
|
|
|
+ <view class="time " style="width: 100%;">
|
|
|
+ {{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM')}}
|
|
|
+ <text style="float: right;">消费额:¥234</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -114,6 +127,8 @@
|
|
|
import {
|
|
|
resetPagination
|
|
|
} from '@/sheep/util';
|
|
|
+ import ScoreApi from '@/sheep/api/distri/score';
|
|
|
+
|
|
|
const userWallet = computed(() => sheep.$store('user').userWallet);
|
|
|
const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
|
|
|
const userInfo = computed(() => sheep.$store('user').userInfo);
|
|
@@ -122,54 +137,70 @@
|
|
|
const state = reactive({
|
|
|
currentTab: 0,
|
|
|
pagination: {
|
|
|
- list: 0,
|
|
|
+ "list": [{
|
|
|
+ "createTime": 1713607898000,
|
|
|
+ "profitStatus": 6,
|
|
|
+ "profitStatusName": "最高可以获得积分",
|
|
|
+ "userId": 247,
|
|
|
+ "orderId": 67,
|
|
|
+ "orderNo": "o202404161713151",
|
|
|
+ "id": 28,
|
|
|
+ "amount": 93312,
|
|
|
+ "afterAmount": 2822688,
|
|
|
+ "freezeAmount": null,
|
|
|
+ "afterFreezeAmount": null,
|
|
|
+ "percentTemplate": "{\"createTime\":1712568106000,\"updateTime\":1713238272000,\"creator\":\"1\",\"updater\":\"1\",\"deleted\":false,\"id\":1,\"grossProfitPerc\":\"0.3888\",\"grossProfitUserQuotaPerc\":\"0.3500\",\"grossProfitAncestorQuotaPerc\":\"0.3500\",\"grossProfitBonusQuotaPerc\":\"0.0800\",\"grossProfitPlatformQuotaPerc\":\"0.1000\",\"divideIntoPerc\":\"0.0400\",\"status\":1}"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "createTime": 1713607898000,
|
|
|
+ "profitStatus": 4,
|
|
|
+ "profitStatusName": "直推人额度",
|
|
|
+ "userId": 247,
|
|
|
+ "orderId": 73,
|
|
|
+ "orderNo": "o202404172239581",
|
|
|
+ "id": 33,
|
|
|
+ "amount": 13608,
|
|
|
+ "afterAmount": 227832,
|
|
|
+ "freezeAmount": null,
|
|
|
+ "afterFreezeAmount": null,
|
|
|
+ "percentTemplate": "{\"createTime\":1712568106000,\"updateTime\":1713238272000,\"creator\":\"1\",\"updater\":\"1\",\"deleted\":false,\"id\":1,\"grossProfitPerc\":\"0.3888\",\"grossProfitUserQuotaPerc\":\"0.3500\",\"grossProfitAncestorQuotaPerc\":\"0.3500\",\"grossProfitBonusQuotaPerc\":\"0.0800\",\"grossProfitPlatformQuotaPerc\":\"0.1000\",\"divideIntoPerc\":\"0.0400\",\"status\":1}"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "createTime": 1713607898000,
|
|
|
+ "profitStatus": 6,
|
|
|
+ "profitStatusName": "最高可以获得积分",
|
|
|
+ "userId": 247,
|
|
|
+ "orderId": 73,
|
|
|
+ "orderNo": "o202404172239581",
|
|
|
+ "id": 35,
|
|
|
+ "amount": 116640,
|
|
|
+ "afterAmount": 1632960,
|
|
|
+ "freezeAmount": null,
|
|
|
+ "afterFreezeAmount": null,
|
|
|
+ "percentTemplate": "{\"createTime\":1712568106000,\"updateTime\":1713238272000,\"creator\":\"1\",\"updater\":\"1\",\"deleted\":false,\"id\":1,\"grossProfitPerc\":\"0.3888\",\"grossProfitUserQuotaPerc\":\"0.3500\",\"grossProfitAncestorQuotaPerc\":\"0.3500\",\"grossProfitBonusQuotaPerc\":\"0.0800\",\"grossProfitPlatformQuotaPerc\":\"0.1000\",\"divideIntoPerc\":\"0.0400\",\"status\":1}"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+
|
|
|
total: 0,
|
|
|
pageSize: 6,
|
|
|
pageNo: 1,
|
|
|
},
|
|
|
loadStatus: '',
|
|
|
- date: [],
|
|
|
- today: '',
|
|
|
- showModel: false,
|
|
|
- showQueModel: false
|
|
|
- });
|
|
|
- const close = () => {
|
|
|
- state.showModel = false
|
|
|
- state.showQueModel = false
|
|
|
- }
|
|
|
- const tabMaps = [{
|
|
|
- name: '全部',
|
|
|
- value: 'all',
|
|
|
- },
|
|
|
- {
|
|
|
- name: '收入',
|
|
|
- value: 'true',
|
|
|
- },
|
|
|
- {
|
|
|
- name: '支出',
|
|
|
- value: 'false',
|
|
|
- },
|
|
|
- ];
|
|
|
|
|
|
- const dateFilterText = computed(() => {
|
|
|
- if (state.date[0] === state.date[1]) {
|
|
|
- return state.date[0];
|
|
|
- } else {
|
|
|
- return state.date.join('~');
|
|
|
- }
|
|
|
});
|
|
|
|
|
|
- async function getLogList() {
|
|
|
+
|
|
|
+
|
|
|
+ async function getLogList(isFreeze) {
|
|
|
state.loadStatus = 'loading';
|
|
|
+ // isFreeze为true是冻结积分 isFreeze为false是已拿到的积分
|
|
|
let {
|
|
|
code,
|
|
|
data
|
|
|
- } = await PointApi.getPointRecordPage({
|
|
|
+ } = await ScoreApi.getScoreApi({
|
|
|
pageNo: state.pagination.pageNo,
|
|
|
pageSize: state.pagination.pageSize,
|
|
|
- addStatus: state.currentTab > 0 ? tabMaps[state.currentTab].value : undefined,
|
|
|
- 'createTime[0]': state.date[0] + ' 00:00:00',
|
|
|
- 'createTime[1]': state.date[1] + ' 23:59:59',
|
|
|
+ isFreeze: isFreeze
|
|
|
});
|
|
|
if (code !== 0) {
|
|
|
return;
|
|
@@ -180,23 +211,10 @@
|
|
|
}
|
|
|
|
|
|
onLoad(() => {
|
|
|
- state.today = dayjs().format('YYYY-MM-DD');
|
|
|
- state.date = [state.today, state.today];
|
|
|
- getLogList();
|
|
|
+ // getLogList(true);
|
|
|
+ // getLogList(false);
|
|
|
});
|
|
|
|
|
|
- function onChange(e) {
|
|
|
- state.currentTab = e.index;
|
|
|
- resetPagination(state.pagination);
|
|
|
- getLogList();
|
|
|
- }
|
|
|
-
|
|
|
- function onChangeTime(e) {
|
|
|
- state.date[0] = e[0];
|
|
|
- state.date[1] = e[e.length - 1];
|
|
|
- resetPagination(state.pagination);
|
|
|
- getLogList();
|
|
|
- }
|
|
|
|
|
|
function onLoadMore() {
|
|
|
if (state.loadStatus === 'noMore') {
|
|
@@ -311,7 +329,7 @@
|
|
|
.list-box {
|
|
|
width: 500rpx;
|
|
|
height: 600rpx;
|
|
|
- padding:0 20rpx;
|
|
|
+ padding: 0 20rpx;
|
|
|
overflow-y: auto;
|
|
|
|
|
|
.list-item {
|