2、拼团收藏点击收藏显示的黑色,应该是红色吧 3、拼团开团选择规格 价格上面商品标题没显示 4、下单余额支付 立即结算怎么付款不了,其实是付款 怎么还是当前页面 什么也没提示,就提示订单生成中 6、拼团海报显示的原价是null 7、秒杀列表 限时价格没出来(后端返回如果sku多个返回最小价格) 8、秒杀详情价格没出来,立刻购买旁边还有原价购买(看下原来h5),收藏的按钮也显示出来 10、砍价点击立刻砍价下 提示的框跑到右下角了!!! 11、我的商品收藏一直加载中数据出不来 13、商户管理 订单详情下单时间显示不对 14、优惠券背景也没显示出来,首页天天惠买单跳转到领取优惠券页面,不是我到优惠券页面 15、下次再次提交体验版 把充值也放开,也一块测试测试 16、立即提现页面,上面到微信与支付宝tab替换成普通到tab,不要这样子的,替换成跟下单时候选择快递配送或者到店自提那种tab 17、提现没有提示,当前金额0,提现金额1,提交的时候提示下提现金额足不
108 lines
3.2 KiB
Vue
108 lines
3.2 KiB
Vue
<template>
|
|
<view class="my-promotion">
|
|
<view class="header">
|
|
<view class="name acea-row row-center-wrapper">
|
|
<view>当前佣金</view>
|
|
<view class="record" @click="goCashRecord()">
|
|
提现记录
|
|
<text class="iconfont icon-xiangyou"></text>
|
|
</view>
|
|
</view>
|
|
<view class="num">{{ Info.commissionCount }}</view>
|
|
<view class="profit acea-row row-between-wrapper">
|
|
<view class="item">
|
|
<view>昨日收益</view>
|
|
<view class="money">{{ Info.lastDayCount }}</view>
|
|
</view>
|
|
<view class="item">
|
|
<view>累积已提</view>
|
|
<view class="money">{{ Info.extractCount }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bnt bg-color-red" @click="toCash">立即提现</view>
|
|
<view class="list acea-row row-between-wrapper">
|
|
<view class="item acea-row row-center-wrapper row-column" @click="goPoster()">
|
|
<text class="iconfont icon-erweima"></text>
|
|
<view>推广名片</view>
|
|
</view>
|
|
<view class="item acea-row row-center-wrapper row-column" @click="goPromoterList()">
|
|
<text class="iconfont icon-tongji"></text>
|
|
<view>推广人统计</view>
|
|
</view>
|
|
<view class="item acea-row row-center-wrapper row-column" @click="goCommissionDetails()">
|
|
<text class="iconfont icon-qiandai"></text>
|
|
<view>佣金明细</view>
|
|
</view>
|
|
<view class="item acea-row row-center-wrapper row-column" @click="goPromoterOrder()">
|
|
<text class="iconfont icon-dingdan"></text>
|
|
<view>推广人订单</view>
|
|
</view>
|
|
<view class="item acea-row row-center-wrapper row-column" @click="toCash()">
|
|
<text class="iconfont icon-chongzhi"></text>
|
|
<view>立即提现</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import { getSpreadInfo } from "@/api/user";
|
|
|
|
export default {
|
|
name: "UserPromotion",
|
|
components: {},
|
|
props: {},
|
|
data: function() {
|
|
return {
|
|
Info: {
|
|
lastDayCount: 0,
|
|
extractCount: 0,
|
|
commissionCount: 0
|
|
}
|
|
};
|
|
},
|
|
mounted: function() {
|
|
this.getInfo();
|
|
},
|
|
methods: {
|
|
goPoster() {
|
|
this.$yrouter.push("/pages/user/promotion/Poster/index");
|
|
},
|
|
goCashRecord() {
|
|
this.$yrouter.push("/pages/user/promotion/CashRecord/index");
|
|
},
|
|
goPromoterList() {
|
|
this.$yrouter.push("/pages/user/promotion/PromoterList/index");
|
|
},
|
|
goCommissionDetails() {
|
|
this.$yrouter.push("/pages/user/promotion/CommissionDetails/index");
|
|
},
|
|
goPromoterOrder() {
|
|
this.$yrouter.push("/pages/user/promotion/PromoterOrder/index");
|
|
},
|
|
getInfo: function() {
|
|
let that = this;
|
|
getSpreadInfo().then(
|
|
res => {
|
|
that.Info = res.data;
|
|
},
|
|
function(err) {
|
|
uni.showToast({
|
|
title: err.msg || err.response.data.msg|| err.response.data.message,
|
|
icon: 'none',
|
|
duration: 2000
|
|
});
|
|
}
|
|
);
|
|
},
|
|
toCash: function() {
|
|
this.$yrouter.push({ path: "/pages/user/promotion/UserCash/index" });
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
|
|
<style lang="less">
|
|
</style>
|