Bläddra i källkod

feat:红包已领取页面和已错失页面

suwadaimyojin 2 år sedan
förälder
incheckning
283c265ef4

+ 8 - 0
api/home.js

@@ -174,3 +174,11 @@ export function leaderboard(data) {
 export function todayStatistics(data) {
 	return request.get('/v1/re/todayStatistics', data)
 }
+// 查询当前登录人领取的红包金额记录
+export function logListByUserId(data) {
+	return request.get('/v1/re/logListByUserId', data)
+}
+// 分页查询错失红包记录列表
+export function exclusivePage(data) {
+	return request.get('/v1/re/exclusivePage', data)
+}

+ 15 - 0
pages.json

@@ -37,6 +37,7 @@
 			"path": "pages/order_addcart/wallet_received/index",
 			"style": {
 				"navigationBarTitleText": "已领取红包",
+				"enablePullDownRefresh": true,
 				"app-plus": {
 					// #ifdef APP-PLUS
 					"titleNView": {
@@ -50,6 +51,20 @@
 			"path": "pages/order_addcart/wallet_missed/index",
 			"style": {
 				"navigationBarTitleText": "已错失红包",
+				"enablePullDownRefresh": true,
+				"app-plus": {
+					// #ifdef APP-PLUS
+					"titleNView": {
+						"type": "default"
+					}
+					// #endif
+				}
+			}
+		},
+		{
+			"path": "pages/order_addcart/wallet_accelerate/index",
+			"style": {
+				"navigationBarTitleText": "加速",
 				"app-plus": {
 					// #ifdef APP-PLUS
 					"titleNView": {

+ 1476 - 1454
pages/order_addcart/order_addcart.vue

@@ -1,1498 +1,1520 @@
 <template>
-	<view class="order_addcart" :style="colorStyle">
-		<view class="order_addcart-header-area">
-			<view class="received">
-				<view class="pictrue">
-					<image src='http://wine.gzzzyd.com/wx/order_addcart/qiandai.png'></image>
-				</view>
-				<view class="text-info" @click="goReceived()">
-					<view class="received-count">
-						{{moneyObj.receiveItemAmount}}
-					</view>
-					<view class="received-info">
-						已领取红包
-					</view>
-				</view>
-			</view>
-			<view class="loss" @click="goMissed()">
-				<view class="text-info">
-					<view class="received-count">
-						{{moneyObj.lossTotalAmount}}
-					</view>
-					<view class="received-info">
-						已错失红包
-					</view>
-				</view>
-			</view>
-		</view>
+  <view class="order_addcart" :style="colorStyle">
+    <view class="order_addcart-header-area">
+      <view class="received">
+        <view class="pictrue">
+          <image
+            src="http://wine.gzzzyd.com/wx/order_addcart/qiandai.png"
+          ></image>
+        </view>
+        <view class="text-info" @click="goReceived()">
+          <view class="received-count">
+            {{ moneyObj.receiveItemAmount }}
+          </view>
+          <view class="received-info"> 已领取红包 </view>
+        </view>
+      </view>
+      <view class="loss" @click="goMissed()">
+        <view class="text-info">
+          <view class="received-count">
+            {{ moneyObj.lossTotalAmount }}
+          </view>
+          <view class="received-info"> 已错失红包 </view>
+        </view>
+      </view>
+    </view>
 
-		<view class="loop">
-			<view class="loop-title">
-				当前红包池
-			</view>
-			<view class="loop-count">
-				{{moneyObj.totalRemainItemAmount}}
-			</view>
-		</view>
+    <view class="loop">
+      <view class="loop-title"> 当前红包池 </view>
+      <view class="loop-count">
+        {{ moneyObj.totalRemainItemAmount }}
+      </view>
+    </view>
 
-		<view class="tab-area">
-			<view @click="isactiveTab = 'todayRank';leaderboard()"
-				:class="{'tab-area-active1':isactiveTab === 'todayRank','base-tab':true}">
-				<text> 今日红包排行榜</text>
-			</view>
-			<view @click="isactiveTab = 'allRank';leaderboard()"
-				:class="{'tab-area-active2':isactiveTab === 'allRank','base-tab':true}">
-				<text> 红包领取总榜</text>
-			</view>
-		</view>
-		<view class="rank-list">
-			<view class="rank-list-item" v-for="(src, i) in rankList" :key="src.id">
-				<img v-show="i===0" src='http://wine.gzzzyd.com/wx/order_addcart/rank1.png' alt="">
-				<img v-show="i===1" src='http://wine.gzzzyd.com/wx/order_addcart/rank2.png' alt="">
-				<img v-show="i===2" src='http://wine.gzzzyd.com/wx/order_addcart/rank3.png' alt="">
-				<img v-show="i!==0 && i!==1 && i!==2" :src='src.avatar' alt="">
-				<text class="nuber"> {{src.userName}}</text>
-				<text class="mosaic"> {{src.phone}}</text>
-				<text class="litem-info"> 共领取了</text>
-				<text class="balance">{{src.totalAmount}}</text>
-			</view>
-
-
-		</view>
-	</view>
+    <view class="tab-area">
+      <view
+        @click="
+          isactiveTab = 'todayRank';
+          leaderboard();
+        "
+        :class="{
+          'tab-area-active1': isactiveTab === 'todayRank',
+          'base-tab': true,
+        }"
+      >
+        <text> 今日红包排行榜</text>
+      </view>
+      <view
+        @click="
+          isactiveTab = 'allRank';
+          leaderboard();
+        "
+        :class="{
+          'tab-area-active2': isactiveTab === 'allRank',
+          'base-tab': true,
+        }"
+      >
+        <text> 红包领取总榜</text>
+      </view>
+    </view>
+    <view class="rank-list">
+      <view class="rank-list-item" v-for="(src, i) in rankList" :key="src.id">
+        <img
+          v-show="i === 0"
+          src="http://wine.gzzzyd.com/wx/order_addcart/rank1.png"
+          alt=""
+        />
+        <img
+          v-show="i === 1"
+          src="http://wine.gzzzyd.com/wx/order_addcart/rank2.png"
+          alt=""
+        />
+        <img
+          v-show="i === 2"
+          src="http://wine.gzzzyd.com/wx/order_addcart/rank3.png"
+          alt=""
+        />
+        <img v-show="i !== 0 && i !== 1 && i !== 2" :src="src.avatar" alt="" />
+        <text class="nuber"> {{ src.userName }}</text>
+        <text class="mosaic"> {{ src.phone }}</text>
+        <text class="litem-info"> 共领取了</text>
+        <text class="balance">{{ src.totalAmount }}</text>
+      </view>
+    </view>
+  </view>
 </template>
 
 <script>
-	// #ifdef APP-PLUS
-	let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
-	// #endif
-	// #ifndef APP-PLUS
-	let sysHeight = 0
-	// #endif
-	import {
-		leaderboard,
-		todayStatistics
-	} from '@/api/home.js';
-	import {
-		getProductHot,
-		collectAll,
-		getProductDetail
-	} from '@/api/store.js';
-	import {
-		toLogin
-	} from '@/libs/login.js';
-	import {
-		mapGetters
-	} from "vuex";
-	import recommend from '@/components/recommend';
-	import productWindow from '@/components/productWindow';
-	// #ifdef MP
-	import authorize from '@/components/Authorize';
-	// #endif
-	import pageFooter from '@/components/pageFooter/index.vue'
-	import colors from "@/mixins/color";
-	import {
-		HTTP_REQUEST_URL
-	} from '@/config/app';
-	const hot_res = require('@/mock/json/hot_res.json')
-	import {
-		getNavigation
-	} from '@/api/public.js'
-	import {
-		colorChange
-	} from '../../api/api';
-	export default {
-		components: {
-			pageFooter,
-			recommend,
-			productWindow,
-			// #ifdef MP
-			authorize
-			// #endif
-		},
-		mixins: [colors],
-		data() {
-			return {
-				isactiveTab: 'todayRank',
-				moneyObj: {
-					lossTotalAmount: "0",
-					receiveItemAmount: "0",
-					receiveItemCount: 0,
-					redEnvelopeItemCount: 0,
-					remainItemCount: 0,
-					totalReceivedRedEnvelopeAmount: "0",
-					totalRedEnvelopeAmount: "0",
-					totalRemainItemAmount: "0"
-				},
-				imgHost: HTTP_REQUEST_URL,
-				is_diy: uni.getStorageSync('is_diy'),
-				canShow: false,
-				cartCount: 0,
-				goodsHidden: true,
-				footerswitch: true,
-				hostProduct: [],
-				cartList: {
-					valid: [],
-					invalid: []
-				},
-				isAllSelect: false, //全选
-				selectValue: [], //选中的数据
-				selectCountPrice: 0.00,
-				isAuto: false, //没有授权的不会自动授权
-				isShowAuth: false, //是否隐藏授权
-				hotScroll: false,
-				hotPage: 1,
-				hotLimit: 10,
-				loading: false,
-				loadend: false,
-				loadTitle: this.$t(`我也是有底线的`), //提示语
-				page: 1,
-				limit: 20,
-				loadingInvalid: false,
-				loadendInvalid: false,
-				loadTitleInvalid: this.$t(`加载更多`), //提示语
-				pageInvalid: 1,
-				limitInvalid: 20,
-				attr: {
-					cartAttr: false,
-					productAttr: [],
-					productSelect: {}
-				},
-				rankList: [],
-				productValue: [], //系统属性
-				storeInfo: {},
-				attrValue: '', //已选属性
-				attrTxt: this.$t(`请选择`), //属性页面提示
-				cartId: 0,
-				product_id: 0,
-				sysHeight: sysHeight,
-				newData: {},
-				activeRouter: '',
-				is_diy_set: false
-			};
-		},
-		computed: mapGetters(['isLogin']),
-		onLoad(options) {
-			let that = this;
-			if (that.isLogin == false) {
-				toLogin();
-			}
-			let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
-			let curRoute = routes[routes.length - 1].route //获取当前页面路由
-			this.activeRouter = '/' + curRoute
-		},
-		onShow() {
-			this.canShow = false
-			if (this.isLogin == true) {
-				this.hotPage = 1;
-				this.hostProduct = [],
-					this.hotScroll = false,
-					this.getHostProduct();
-				this.loadend = false;
-				this.page = 1;
-				this.cartList.valid = [];
-				this.getCartList();
-				this.loadendInvalid = false;
-				this.pageInvalid = 1;
-				this.cartList.invalid = [];
-				this.getInvalidList();
-				this.getCartNum();
-				this.goodsHidden = true;
-				this.footerswitch = true;
-				this.hostProduct = [];
-				this.hotScroll = false;
-				this.hotPage = 1;
-				this.hotLimit = 10;
-				this.cartList = {
-						valid: [],
-						invalid: []
-					},
-					this.isAllSelect = false; //全选
-				this.selectValue = []; //选中的数据
-				this.selectCountPrice = 0.00;
-				this.cartCount = 0;
-				this.isShowAuth = false;
-			};
-		},
-		created() {
-			this.leaderboard()
-			this.todayStatistics()
-		},
-		methods: {
-			goReceived(){
-				uni.navigateTo({
-					url: '/pages/order_addcart/wallet_received/index'
-				})
-			},
-			goMissed(){
-				uni.navigateTo({
-					url: '/pages/order_addcart/wallet_missed/index'
-				})
-			},
-			// 授权关闭
-			authColse: function(e) {
-				this.isShowAuth = e;
-			},
-			// 修改购物车
-			reGoCat: function() {
-				let that = this,
-					productSelect = that.productValue[this.attrValue];
-				//如果有属性,没有选择,提示用户选择
-				if (
-					that.attr.productAttr.length &&
-					productSelect === undefined
-				)
-					return that.$util.Tips({
-						title: that.$t(`产品库存不足,请选择其它`)
-					});
+// #ifdef APP-PLUS
+let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
+// #endif
+// #ifndef APP-PLUS
+let sysHeight = 0
+// #endif
+import {
+  leaderboard,
+  todayStatistics
+} from '@/api/home.js';
+import {
+  getProductHot,
+  collectAll,
+  getProductDetail
+} from '@/api/store.js';
+import {
+  toLogin
+} from '@/libs/login.js';
+import {
+  mapGetters
+} from "vuex";
+import recommend from '@/components/recommend';
+import productWindow from '@/components/productWindow';
+// #ifdef MP
+import authorize from '@/components/Authorize';
+// #endif
+import pageFooter from '@/components/pageFooter/index.vue'
+import colors from "@/mixins/color";
+import {
+  HTTP_REQUEST_URL
+} from '@/config/app';
+const hot_res = require('@/mock/json/hot_res.json')
+import {
+  getNavigation
+} from '@/api/public.js'
+import {
+  colorChange
+} from '../../api/api';
+export default {
+  components: {
+    pageFooter,
+    recommend,
+    productWindow,
+    // #ifdef MP
+    authorize
+    // #endif
+  },
+  mixins: [colors],
+  data () {
+    return {
+      isactiveTab: 'todayRank',
+      moneyObj: {
+        lossTotalAmount: "0",
+        receiveItemAmount: "0",
+        receiveItemCount: 0,
+        redEnvelopeItemCount: 0,
+        remainItemCount: 0,
+        totalReceivedRedEnvelopeAmount: "0",
+        totalRedEnvelopeAmount: "0",
+        totalRemainItemAmount: "0"
+      },
+      imgHost: HTTP_REQUEST_URL,
+      is_diy: uni.getStorageSync('is_diy'),
+      canShow: false,
+      cartCount: 0,
+      goodsHidden: true,
+      footerswitch: true,
+      hostProduct: [],
+      cartList: {
+        valid: [],
+        invalid: []
+      },
+      isAllSelect: false, //全选
+      selectValue: [], //选中的数据
+      selectCountPrice: 0.00,
+      isAuto: false, //没有授权的不会自动授权
+      isShowAuth: false, //是否隐藏授权
+      hotScroll: false,
+      hotPage: 1,
+      hotLimit: 10,
+      loading: false,
+      loadend: false,
+      loadTitle: this.$t(`我也是有底线的`), //提示语
+      page: 1,
+      limit: 20,
+      loadingInvalid: false,
+      loadendInvalid: false,
+      loadTitleInvalid: this.$t(`加载更多`), //提示语
+      pageInvalid: 1,
+      limitInvalid: 20,
+      attr: {
+        cartAttr: false,
+        productAttr: [],
+        productSelect: {}
+      },
+      rankList: [],
+      productValue: [], //系统属性
+      storeInfo: {},
+      attrValue: '', //已选属性
+      attrTxt: this.$t(`请选择`), //属性页面提示
+      cartId: 0,
+      product_id: 0,
+      sysHeight: sysHeight,
+      newData: {},
+      activeRouter: '',
+      is_diy_set: false
+    };
+  },
+  computed: mapGetters(['isLogin']),
+  onPullDownRefresh () {
+    console.log('下拉刷新');
+  },
+  onLoad (options) {
+    let that = this;
+    if (that.isLogin == false) {
+      toLogin();
+    }
+    let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
+    let curRoute = routes[routes.length - 1].route //获取当前页面路由
+    this.activeRouter = '/' + curRoute
+  },
+  onShow () {
+    this.canShow = false
+    if (this.isLogin == true) {
+      this.hotPage = 1;
+      this.hostProduct = [],
+        this.hotScroll = false,
+        this.getHostProduct();
+      this.loadend = false;
+      this.page = 1;
+      this.cartList.valid = [];
+      this.getCartList();
+      this.loadendInvalid = false;
+      this.pageInvalid = 1;
+      this.cartList.invalid = [];
+      this.getInvalidList();
+      this.getCartNum();
+      this.goodsHidden = true;
+      this.footerswitch = true;
+      this.hostProduct = [];
+      this.hotScroll = false;
+      this.hotPage = 1;
+      this.hotLimit = 10;
+      this.cartList = {
+        valid: [],
+        invalid: []
+      },
+        this.isAllSelect = false; //全选
+      this.selectValue = []; //选中的数据
+      this.selectCountPrice = 0.00;
+      this.cartCount = 0;
+      this.isShowAuth = false;
+    };
+  },
+  created () {
+		uni.navigateTo({
+        url: '/pages/order_addcart/wallet_accelerate/index'
+      })
+    this.leaderboard()
+    this.todayStatistics()
+  },
+  methods: {
+    goReceived () {
+      uni.navigateTo({
+        url: '/pages/order_addcart/wallet_received/index'
+      })
+    },
+    goMissed () {
+      uni.navigateTo({
+        url: '/pages/order_addcart/wallet_missed/index'
+      })
+    },
+    // 授权关闭
+    authColse: function (e) {
+      this.isShowAuth = e;
+    },
+    // 修改购物车
+    reGoCat: function () {
+      let that = this,
+        productSelect = that.productValue[this.attrValue];
+      //如果有属性,没有选择,提示用户选择
+      if (
+        that.attr.productAttr.length &&
+        productSelect === undefined
+      )
+        return that.$util.Tips({
+          title: that.$t(`产品库存不足,请选择其它`)
+        });
 
-				let q = {
-					id: that.cartId,
-					product_id: that.product_id,
-					num: that.attr.productSelect.cart_num,
-					unique: that.attr.productSelect !== undefined ?
-						that.attr.productSelect.unique : ""
-				};
-				getResetCart(q)
-					.then(function(res) {
-						that.attr.cartAttr = false;
-						that.$util.Tips({
-							title: that.$t(`添加购物车成功`),
-							success: () => {
-								that.loadend = false;
-								that.page = 1;
-								that.cartList.valid = [];
-								that.getCartList();
-								that.getCartNum();
-							}
-						});
-					})
-					.catch(res => {
-						return that.$util.Tips({
-							title: res.msg
-						});
-					});
-			},
-			onMyEvent: function() {
-				this.$set(this.attr, 'cartAttr', false);
-			},
-			reElection: function(item) {
-				this.getGoodsDetails(item)
-			},
+      let q = {
+        id: that.cartId,
+        product_id: that.product_id,
+        num: that.attr.productSelect.cart_num,
+        unique: that.attr.productSelect !== undefined ?
+          that.attr.productSelect.unique : ""
+      };
+      getResetCart(q)
+        .then(function (res) {
+          that.attr.cartAttr = false;
+          that.$util.Tips({
+            title: that.$t(`添加购物车成功`),
+            success: () => {
+              that.loadend = false;
+              that.page = 1;
+              that.cartList.valid = [];
+              that.getCartList();
+              that.getCartNum();
+            }
+          });
+        })
+        .catch(res => {
+          return that.$util.Tips({
+            title: res.msg
+          });
+        });
+    },
+    onMyEvent: function () {
+      this.$set(this.attr, 'cartAttr', false);
+    },
+    reElection: function (item) {
+      this.getGoodsDetails(item)
+    },
 
-			leaderboard() {
-				let that = this
-				uni.showLoading({
-					title: this.$t(`加载中`),
-					mask: true
-				});
-				let postData = {
-					flag: this.isactiveTab === 'todayRank' ? 1 : 0
-				}
-				leaderboard(postData).then(res => {
-					if (res.data.length > 0) {
-						that.$set(that, "rankList", res.data)
-					} else {
-						that.$set(that, "rankList", [])
-					}
-					uni.hideLoading();
-				})
-			},
-			todayStatistics() {
-				uni.showLoading({
-					title: this.$t(`加载中`),
-					mask: true
-				});
-				let postData = {
-					flag: this.isactiveTab === 'todayRank' ? 1 : 0
-				}
-				todayStatistics().then(res => {
-					if (res.data.length > 0) {
-						this.moneyObj = res.data
-					}
-					uni.hideLoading();
-				})
-			},
-			/**
-			 * 属性变动赋值
-			 * 
-			 */
-			ChangeAttr: function(res) {
-				let productSelect = this.productValue[res];
-				if (productSelect && productSelect.stock > 0) {
-					this.$set(this.attr.productSelect, "image", productSelect.image);
-					this.$set(this.attr.productSelect, "price", productSelect.price);
-					this.$set(this.attr.productSelect, "stock", productSelect.stock);
-					this.$set(this.attr.productSelect, "unique", productSelect.unique);
-					this.$set(this.attr.productSelect, "cart_num", 1);
-					this.$set(this, "attrValue", res);
-					this.$set(this, "attrTxt", this.$t(`已选择`));
-				} else {
-					this.$set(this.attr.productSelect, "image", this.storeInfo.image);
-					this.$set(this.attr.productSelect, "price", this.storeInfo.price);
-					this.$set(this.attr.productSelect, "stock", 0);
-					this.$set(this.attr.productSelect, "unique", "");
-					this.$set(this.attr.productSelect, "cart_num", 0);
-					this.$set(this, "attrValue", "");
-					this.$set(this, "attrTxt", this.$t(`请选择`));
-				}
-			},
-			/**
-			 * 默认选中属性
-			 * 
-			 */
-			DefaultSelect: function() {
-				let productAttr = this.attr.productAttr;
-				let value = [];
-				for (var key in this.productValue) {
-					if (this.productValue[key].stock > 0) {
-						value = this.attr.productAttr.length ? key.split(",") : [];
-						break;
-					}
-				}
-				for (let i = 0; i < productAttr.length; i++) {
-					this.$set(productAttr[i], "index", value[i]);
-				}
-				//sort();排序函数:数字-英文-汉字;
-				let productSelect = this.productValue[value.sort().join(",")];
-				if (productSelect && productAttr.length) {
-					this.$set(
-						this.attr.productSelect,
-						"store_name",
-						this.storeInfo.store_name
-					);
-					this.$set(this.attr.productSelect, "image", productSelect.image);
-					this.$set(this.attr.productSelect, "price", productSelect.price);
-					this.$set(this.attr.productSelect, "stock", productSelect.stock);
-					this.$set(this.attr.productSelect, "unique", productSelect.unique);
-					this.$set(this.attr.productSelect, "cart_num", 1);
-					this.$set(this, "attrValue", value.sort().join(","));
-					this.$set(this, "attrTxt", this.$t(`已选择`));
-				} else if (!productSelect && productAttr.length) {
-					this.$set(
-						this.attr.productSelect,
-						"store_name",
-						this.storeInfo.store_name
-					);
-					this.$set(this.attr.productSelect, "image", this.storeInfo.image);
-					this.$set(this.attr.productSelect, "price", this.storeInfo.price);
-					this.$set(this.attr.productSelect, "stock", 0);
-					this.$set(this.attr.productSelect, "unique", "");
-					this.$set(this.attr.productSelect, "cart_num", 0);
-					this.$set(this, "attrValue", "");
-					this.$set(this, "attrTxt", this.$t(`请选择`));
-				} else if (!productSelect && !productAttr.length) {
-					this.$set(
-						this.attr.productSelect,
-						"store_name",
-						this.storeInfo.store_name
-					);
-					this.$set(this.attr.productSelect, "image", this.storeInfo.image);
-					this.$set(this.attr.productSelect, "price", this.storeInfo.price);
-					this.$set(this.attr.productSelect, "stock", this.storeInfo.stock);
-					this.$set(
-						this.attr.productSelect,
-						"unique",
-						this.storeInfo.unique || ""
-					);
-					this.$set(this.attr.productSelect, "cart_num", 1);
-					this.$set(this, "attrValue", "");
-					this.$set(this, "attrTxt", this.$t(`请选择`));
-				}
-			},
-			attrVal(val) {
-				this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val
-					.indexn]);
-			},
-			/**
-			 * 购物车数量加和数量减
-			 * 
-			 */
-			ChangeCartNum: function(changeValue) {
-				//changeValue:是否 加|减
-				//获取当前变动属性
-				let productSelect = this.productValue[this.attrValue];
-				//如果没有属性,赋值给商品默认库存
-				if (productSelect === undefined && !this.attr.productAttr.length)
-					productSelect = this.attr.productSelect;
-				//无属性值即库存为0;不存在加减;
-				if (productSelect === undefined) return;
-				let stock = productSelect.stock || 0;
-				let num = this.attr.productSelect;
-				if (changeValue) {
-					num.cart_num++;
-					if (num.cart_num > stock) {
-						this.$set(this.attr.productSelect, "cart_num", stock ? stock : 1);
-						this.$set(this, "cart_num", stock ? stock : 1);
-					}
-				} else {
-					num.cart_num--;
-					if (num.cart_num < 1) {
-						this.$set(this.attr.productSelect, "cart_num", 1);
-						this.$set(this, "cart_num", 1);
-					}
-				}
-			},
-			/**
-			 * 购物车手动填写
-			 * 
-			 */
-			iptCartNum: function(e) {
-				this.$set(this.attr.productSelect, 'cart_num', e);
-			},
-			subDel: function(event) {
-				let that = this,
-					selectValue = that.selectValue;
-				if (selectValue.length > 0)
-					cartDel(selectValue).then(res => {
-						that.loadend = false;
-						that.page = 1;
-						that.cartList.valid = [];
-						that.getCartList();
-						that.getCartNum();
-					});
-				else
-					return that.$util.Tips({
-						title: that.$t(`请选择产品`)
-					});
-			},
-			getSelectValueProductId: function() {
-				let that = this;
-				let validList = that.cartList.valid;
-				let selectValue = that.selectValue;
-				let productId = [];
-				if (selectValue.length > 0) {
-					for (let index in validList) {
-						if (that.inArray(validList[index].id, selectValue)) {
-							productId.push(validList[index].product_id);
-						}
-					}
-				};
-				return productId;
-			},
-			subCollect: function(event) {
-				let that = this,
-					selectValue = that.selectValue;
-				if (selectValue.length > 0) {
-					let selectValueProductId = that.getSelectValueProductId();
-					collectAll(that.getSelectValueProductId().join(',')).then(res => {
-						return that.$util.Tips({
-							title: res.msg,
-							icon: 'success'
-						});
-					}).catch(err => {
-						return that.$util.Tips({
-							title: err
-						});
-					});
-				} else {
-					return that.$util.Tips({
-						title: that.$t(`请选择产品`)
-					});
-				}
-			},
-			subOrder(event) {
-				console.log(event)
-				let that = this,
-					selectValue = that.selectValue;
-				if (selectValue.length > 0) {
-					uni.navigateTo({
-						url: '/pages/goods/order_confirm/index?cartId=' + selectValue.join(',')
-					});
-				} else {
-					return that.$util.Tips({
-						title: that.$t(`请选择产品`)
-					});
-				}
-			},
-			checkboxAllChange: function(event) {
-				let value = event.detail.value;
-				if (value.length > 0) {
-					this.setAllSelectValue(1)
-				} else {
-					this.setAllSelectValue(0)
-				}
-			},
-			setAllSelectValue: function(status) {
-				let that = this;
-				let selectValue = [];
-				let valid = that.cartList.valid;
-				if (valid.length > 0) {
-					let newValid = valid.map(item => {
-						if (status) {
-							if (that.footerswitch) {
-								if (item.attrStatus) {
-									item.checked = true;
-									selectValue.push(item.id);
-								} else {
-									item.checked = false;
-								}
-							} else {
-								item.checked = true;
-								selectValue.push(item.id);
-							}
-							that.isAllSelect = true;
-						} else {
-							item.checked = false;
-							that.isAllSelect = false;
-						}
-						return item;
-					});
-					that.$set(that.cartList, 'valid', newValid);
-					that.selectValue = selectValue;
-					that.switchSelect();
-				}
-			},
-			checkboxChange: function(event) {
-				let that = this;
-				let value = event.detail.value;
-				let valid = that.cartList.valid;
-				let arr1 = [];
-				let arr2 = [];
-				let arr3 = [];
-				let newValid = valid.map(item => {
-					if (that.inArray(item.id, value)) {
-						if (that.footerswitch) {
-							if (item.attrStatus) {
-								item.checked = true;
-								arr1.push(item);
-							} else {
-								item.checked = false;
-							}
-						} else {
-							item.checked = true;
-							arr1.push(item);
-						}
-					} else {
-						item.checked = false;
-						arr2.push(item);
-					}
-					return item;
-				});
-				if (that.footerswitch) {
-					arr3 = arr2.filter(item => !item.attrStatus);
-				}
-				// for (let index in valid) {
-				// 	if (that.inArray(valid[index].id, value)){
-				// 		if(valid[index].attrStatus){
-				// 			valid[index].checked = true;
-				// 		}else{
-				// 			valid[index].checked = false;
-				// 		}
-				// 	} else {
-				// 		valid[index].checked = false;
-				// 	} 
-				// }
-				that.$set(that.cartList, 'valid', newValid);
-				// let newArr = that.cartList.valid.filter(item => item.attrStatus);
-				that.isAllSelect = newValid.length === arr1.length + arr3.length;
-				that.selectValue = value;
-				that.switchSelect();
-			},
-			inArray: function(search, array) {
-				for (let i in array) {
-					if (array[i] == search) {
-						return true;
-					}
-				}
-				return false;
-			},
-			switchSelect: function() {
-				let that = this;
-				let validList = that.cartList.valid;
-				let selectValue = that.selectValue;
-				let selectCountPrice = 0.00;
-				if (selectValue.length < 1) {
-					that.selectCountPrice = selectCountPrice;
-				} else {
-					for (let index in validList) {
-						if (that.inArray(validList[index].id, selectValue)) {
-							selectCountPrice = that.$util.$h.Add(selectCountPrice, that.$util.$h.Mul(validList[index]
-								.cart_num, validList[
-									index].truePrice))
-						}
-					}
-					that.selectCountPrice = selectCountPrice;
-				}
-			},
-			/**
-			 * 购物车手动填写
-			 * 
-			 */
-			iptCartNum: function(index) {
-				let item = this.cartList.valid[index];
-				if (item.cart_num) {
-					this.setCartNum(item.id, item.cart_num);
-				}
-				this.switchSelect();
-			},
-			blurInput: function(index) {
-				let item = this.cartList.valid[index];
-				console.log(item)
-				if (!item.cart_num) {
-					item.cart_num = 1;
-					this.$set(this.cartList, 'valid', this.cartList.valid)
-				}
-			},
-			subCart: function(index) {
-				let that = this;
-				let status = false;
-				let item = that.cartList.valid[index];
-				item.cart_num = Number(item.cart_num) - 1;
-				if (item.cart_num < 1) status = true;
-				if (item.cart_num <= 1) {
-					item.cart_num = 1;
-					item.numSub = true;
-				} else {
-					item.numSub = false;
-					item.numAdd = false;
-				}
-				if (false == status) {
-					that.setCartNum(item.id, item.cart_num, function(data) {
-						that.cartList.valid[index] = item;
-						that.getCartNum();
-						that.switchSelect();
-					});
-				}
-			},
-			addCart: function(index) {
-				let that = this;
-				let item = that.cartList.valid[index];
-				item.cart_num = Number(item.cart_num) + 1;
-				let productInfo = item.productInfo;
-				if (productInfo.hasOwnProperty('attrInfo') && item.cart_num >= item.productInfo.attrInfo.stock) {
-					item.cart_num = item.productInfo.attrInfo.stock;
-					item.numAdd = true;
-					item.numSub = false;
-				} else {
-					item.numAdd = false;
-					item.numSub = false;
-				}
-				that.setCartNum(item.id, item.cart_num, function(data) {
-					that.cartList.valid[index] = item;
-					that.getCartNum();
-					that.switchSelect();
-				});
-			},
-			setCartNum(cartId, cartNum, successCallback) {
-				let that = this;
-				changeCartNum(cartId, cartNum).then(res => {
-					console.log(res)
-					successCallback && successCallback(res.data);
-				}).catch(err => {
-					console.log(err)
-					return that.$util.Tips({
-						title: err
-					});
-				})
-			},
-			getCartNum: function() {
-				let that = this;
-				// getCartCounts().then(res => {
-				that.cartCount = 0;
-				this.$store.commit('indexData/setCartNum', that.cartCount > 99 ? '..' : that.cartCount)
-				if (that.cartCount > 0) {
-					wx.setTabBarBadge({
-						index: 2,
-						text: that.cartCount + ''
-					})
-				} else {
-					wx.hideTabBarRedDot({
-						index: 2
-					})
-				}
+    leaderboard () {
+      let that = this
+      uni.showLoading({
+        title: this.$t(`加载中`),
+        mask: true
+      });
+      let postData = {
+        flag: this.isactiveTab === 'todayRank' ? 1 : 0
+      }
+      leaderboard(postData).then(res => {
+        if (res.data.length > 0) {
+          that.$set(that, "rankList", res.data)
+        } else {
+          that.$set(that, "rankList", [])
+        }
+        uni.hideLoading();
+      })
+    },
+    todayStatistics () {
+      uni.showLoading({
+        title: this.$t(`加载中`),
+        mask: true
+      });
+      let postData = {
+        flag: this.isactiveTab === 'todayRank' ? 1 : 0
+      }
+      todayStatistics().then(res => {
+        this.moneyObj = res.data
+        uni.hideLoading();
+      })
+    },
+    /**
+     * 属性变动赋值
+     * 
+     */
+    ChangeAttr: function (res) {
+      let productSelect = this.productValue[res];
+      if (productSelect && productSelect.stock > 0) {
+        this.$set(this.attr.productSelect, "image", productSelect.image);
+        this.$set(this.attr.productSelect, "price", productSelect.price);
+        this.$set(this.attr.productSelect, "stock", productSelect.stock);
+        this.$set(this.attr.productSelect, "unique", productSelect.unique);
+        this.$set(this.attr.productSelect, "cart_num", 1);
+        this.$set(this, "attrValue", res);
+        this.$set(this, "attrTxt", this.$t(`已选择`));
+      } else {
+        this.$set(this.attr.productSelect, "image", this.storeInfo.image);
+        this.$set(this.attr.productSelect, "price", this.storeInfo.price);
+        this.$set(this.attr.productSelect, "stock", 0);
+        this.$set(this.attr.productSelect, "unique", "");
+        this.$set(this.attr.productSelect, "cart_num", 0);
+        this.$set(this, "attrValue", "");
+        this.$set(this, "attrTxt", this.$t(`请选择`));
+      }
+    },
+    /**
+     * 默认选中属性
+     * 
+     */
+    DefaultSelect: function () {
+      let productAttr = this.attr.productAttr;
+      let value = [];
+      for (var key in this.productValue) {
+        if (this.productValue[key].stock > 0) {
+          value = this.attr.productAttr.length ? key.split(",") : [];
+          break;
+        }
+      }
+      for (let i = 0; i < productAttr.length; i++) {
+        this.$set(productAttr[i], "index", value[i]);
+      }
+      //sort();排序函数:数字-英文-汉字;
+      let productSelect = this.productValue[value.sort().join(",")];
+      if (productSelect && productAttr.length) {
+        this.$set(
+          this.attr.productSelect,
+          "store_name",
+          this.storeInfo.store_name
+        );
+        this.$set(this.attr.productSelect, "image", productSelect.image);
+        this.$set(this.attr.productSelect, "price", productSelect.price);
+        this.$set(this.attr.productSelect, "stock", productSelect.stock);
+        this.$set(this.attr.productSelect, "unique", productSelect.unique);
+        this.$set(this.attr.productSelect, "cart_num", 1);
+        this.$set(this, "attrValue", value.sort().join(","));
+        this.$set(this, "attrTxt", this.$t(`已选择`));
+      } else if (!productSelect && productAttr.length) {
+        this.$set(
+          this.attr.productSelect,
+          "store_name",
+          this.storeInfo.store_name
+        );
+        this.$set(this.attr.productSelect, "image", this.storeInfo.image);
+        this.$set(this.attr.productSelect, "price", this.storeInfo.price);
+        this.$set(this.attr.productSelect, "stock", 0);
+        this.$set(this.attr.productSelect, "unique", "");
+        this.$set(this.attr.productSelect, "cart_num", 0);
+        this.$set(this, "attrValue", "");
+        this.$set(this, "attrTxt", this.$t(`请选择`));
+      } else if (!productSelect && !productAttr.length) {
+        this.$set(
+          this.attr.productSelect,
+          "store_name",
+          this.storeInfo.store_name
+        );
+        this.$set(this.attr.productSelect, "image", this.storeInfo.image);
+        this.$set(this.attr.productSelect, "price", this.storeInfo.price);
+        this.$set(this.attr.productSelect, "stock", this.storeInfo.stock);
+        this.$set(
+          this.attr.productSelect,
+          "unique",
+          this.storeInfo.unique || ""
+        );
+        this.$set(this.attr.productSelect, "cart_num", 1);
+        this.$set(this, "attrValue", "");
+        this.$set(this, "attrTxt", this.$t(`请选择`));
+      }
+    },
+    attrVal (val) {
+      this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val
+        .indexn]);
+    },
+    /**
+     * 购物车数量加和数量减
+     * 
+     */
+    ChangeCartNum: function (changeValue) {
+      //changeValue:是否 加|减
+      //获取当前变动属性
+      let productSelect = this.productValue[this.attrValue];
+      //如果没有属性,赋值给商品默认库存
+      if (productSelect === undefined && !this.attr.productAttr.length)
+        productSelect = this.attr.productSelect;
+      //无属性值即库存为0;不存在加减;
+      if (productSelect === undefined) return;
+      let stock = productSelect.stock || 0;
+      let num = this.attr.productSelect;
+      if (changeValue) {
+        num.cart_num++;
+        if (num.cart_num > stock) {
+          this.$set(this.attr.productSelect, "cart_num", stock ? stock : 1);
+          this.$set(this, "cart_num", stock ? stock : 1);
+        }
+      } else {
+        num.cart_num--;
+        if (num.cart_num < 1) {
+          this.$set(this.attr.productSelect, "cart_num", 1);
+          this.$set(this, "cart_num", 1);
+        }
+      }
+    },
+    /**
+     * 购物车手动填写
+     * 
+     */
+    iptCartNum: function (e) {
+      this.$set(this.attr.productSelect, 'cart_num', e);
+    },
+    subDel: function (event) {
+      let that = this,
+        selectValue = that.selectValue;
+      if (selectValue.length > 0)
+        cartDel(selectValue).then(res => {
+          that.loadend = false;
+          that.page = 1;
+          that.cartList.valid = [];
+          that.getCartList();
+          that.getCartNum();
+        });
+      else
+        return that.$util.Tips({
+          title: that.$t(`请选择产品`)
+        });
+    },
+    getSelectValueProductId: function () {
+      let that = this;
+      let validList = that.cartList.valid;
+      let selectValue = that.selectValue;
+      let productId = [];
+      if (selectValue.length > 0) {
+        for (let index in validList) {
+          if (that.inArray(validList[index].id, selectValue)) {
+            productId.push(validList[index].product_id);
+          }
+        }
+      };
+      return productId;
+    },
+    subCollect: function (event) {
+      let that = this,
+        selectValue = that.selectValue;
+      if (selectValue.length > 0) {
+        let selectValueProductId = that.getSelectValueProductId();
+        collectAll(that.getSelectValueProductId().join(',')).then(res => {
+          return that.$util.Tips({
+            title: res.msg,
+            icon: 'success'
+          });
+        }).catch(err => {
+          return that.$util.Tips({
+            title: err
+          });
+        });
+      } else {
+        return that.$util.Tips({
+          title: that.$t(`请选择产品`)
+        });
+      }
+    },
+    subOrder (event) {
+      console.log(event)
+      let that = this,
+        selectValue = that.selectValue;
+      if (selectValue.length > 0) {
+        uni.navigateTo({
+          url: '/pages/goods/order_confirm/index?cartId=' + selectValue.join(',')
+        });
+      } else {
+        return that.$util.Tips({
+          title: that.$t(`请选择产品`)
+        });
+      }
+    },
+    checkboxAllChange: function (event) {
+      let value = event.detail.value;
+      if (value.length > 0) {
+        this.setAllSelectValue(1)
+      } else {
+        this.setAllSelectValue(0)
+      }
+    },
+    setAllSelectValue: function (status) {
+      let that = this;
+      let selectValue = [];
+      let valid = that.cartList.valid;
+      if (valid.length > 0) {
+        let newValid = valid.map(item => {
+          if (status) {
+            if (that.footerswitch) {
+              if (item.attrStatus) {
+                item.checked = true;
+                selectValue.push(item.id);
+              } else {
+                item.checked = false;
+              }
+            } else {
+              item.checked = true;
+              selectValue.push(item.id);
+            }
+            that.isAllSelect = true;
+          } else {
+            item.checked = false;
+            that.isAllSelect = false;
+          }
+          return item;
+        });
+        that.$set(that.cartList, 'valid', newValid);
+        that.selectValue = selectValue;
+        that.switchSelect();
+      }
+    },
+    checkboxChange: function (event) {
+      let that = this;
+      let value = event.detail.value;
+      let valid = that.cartList.valid;
+      let arr1 = [];
+      let arr2 = [];
+      let arr3 = [];
+      let newValid = valid.map(item => {
+        if (that.inArray(item.id, value)) {
+          if (that.footerswitch) {
+            if (item.attrStatus) {
+              item.checked = true;
+              arr1.push(item);
+            } else {
+              item.checked = false;
+            }
+          } else {
+            item.checked = true;
+            arr1.push(item);
+          }
+        } else {
+          item.checked = false;
+          arr2.push(item);
+        }
+        return item;
+      });
+      if (that.footerswitch) {
+        arr3 = arr2.filter(item => !item.attrStatus);
+      }
+      // for (let index in valid) {
+      // 	if (that.inArray(valid[index].id, value)){
+      // 		if(valid[index].attrStatus){
+      // 			valid[index].checked = true;
+      // 		}else{
+      // 			valid[index].checked = false;
+      // 		}
+      // 	} else {
+      // 		valid[index].checked = false;
+      // 	} 
+      // }
+      that.$set(that.cartList, 'valid', newValid);
+      // let newArr = that.cartList.valid.filter(item => item.attrStatus);
+      that.isAllSelect = newValid.length === arr1.length + arr3.length;
+      that.selectValue = value;
+      that.switchSelect();
+    },
+    inArray: function (search, array) {
+      for (let i in array) {
+        if (array[i] == search) {
+          return true;
+        }
+      }
+      return false;
+    },
+    switchSelect: function () {
+      let that = this;
+      let validList = that.cartList.valid;
+      let selectValue = that.selectValue;
+      let selectCountPrice = 0.00;
+      if (selectValue.length < 1) {
+        that.selectCountPrice = selectCountPrice;
+      } else {
+        for (let index in validList) {
+          if (that.inArray(validList[index].id, selectValue)) {
+            selectCountPrice = that.$util.$h.Add(selectCountPrice, that.$util.$h.Mul(validList[index]
+              .cart_num, validList[
+                index].truePrice))
+          }
+        }
+        that.selectCountPrice = selectCountPrice;
+      }
+    },
+    /**
+     * 购物车手动填写
+     * 
+     */
+    iptCartNum: function (index) {
+      let item = this.cartList.valid[index];
+      if (item.cart_num) {
+        this.setCartNum(item.id, item.cart_num);
+      }
+      this.switchSelect();
+    },
+    blurInput: function (index) {
+      let item = this.cartList.valid[index];
+      console.log(item)
+      if (!item.cart_num) {
+        item.cart_num = 1;
+        this.$set(this.cartList, 'valid', this.cartList.valid)
+      }
+    },
+    subCart: function (index) {
+      let that = this;
+      let status = false;
+      let item = that.cartList.valid[index];
+      item.cart_num = Number(item.cart_num) - 1;
+      if (item.cart_num < 1) status = true;
+      if (item.cart_num <= 1) {
+        item.cart_num = 1;
+        item.numSub = true;
+      } else {
+        item.numSub = false;
+        item.numAdd = false;
+      }
+      if (false == status) {
+        that.setCartNum(item.id, item.cart_num, function (data) {
+          that.cartList.valid[index] = item;
+          that.getCartNum();
+          that.switchSelect();
+        });
+      }
+    },
+    addCart: function (index) {
+      let that = this;
+      let item = that.cartList.valid[index];
+      item.cart_num = Number(item.cart_num) + 1;
+      let productInfo = item.productInfo;
+      if (productInfo.hasOwnProperty('attrInfo') && item.cart_num >= item.productInfo.attrInfo.stock) {
+        item.cart_num = item.productInfo.attrInfo.stock;
+        item.numAdd = true;
+        item.numSub = false;
+      } else {
+        item.numAdd = false;
+        item.numSub = false;
+      }
+      that.setCartNum(item.id, item.cart_num, function (data) {
+        that.cartList.valid[index] = item;
+        that.getCartNum();
+        that.switchSelect();
+      });
+    },
+    setCartNum (cartId, cartNum, successCallback) {
+      let that = this;
+      changeCartNum(cartId, cartNum).then(res => {
+        console.log(res)
+        successCallback && successCallback(res.data);
+      }).catch(err => {
+        console.log(err)
+        return that.$util.Tips({
+          title: err
+        });
+      })
+    },
+    getCartNum: function () {
+      let that = this;
+      // getCartCounts().then(res => {
+      that.cartCount = 0;
+      this.$store.commit('indexData/setCartNum', that.cartCount > 99 ? '..' : that.cartCount)
+      if (that.cartCount > 0) {
+        wx.setTabBarBadge({
+          index: 2,
+          text: that.cartCount + ''
+        })
+      } else {
+        wx.hideTabBarRedDot({
+          index: 2
+        })
+      }
 
-				// });
-			},
-			getCartData(data) {
-				let resData = {
-					"valid": [],
-					"invalid": [],
-					"deduction": {
-						"seckill_id": 0,
-						"bargain_id": 0,
-						"combination_id": 0,
-						"discount_id": 0
-					}
-				}
-				this.loading = false;
-				this.canShow = true
-				return resData;
-				// return new Promise((resolve, reject) => {
-				// 	getCartList(data).then((res) => {
-				// 		resolve(res.data);
-				// 	}).catch((err) => {
-				// 		this.loading = false;
-				// 		this.canShow = true
-				// 		this.$util.Tips({
-				// 			title: err
-				// 		});
-				// 	})
-				// });
-			},
-			async getCartList() {
-				uni.showLoading({
-					title: this.$t(`加载中`),
-					mask: true
-				});
-				let that = this;
-				let data = {
-					page: that.page,
-					limit: that.limit,
-					status: 1
-				}
-				let countResData = {
-					"count": 0,
-					"ids": [
-						9671,
-						9670,
-						9669
-					],
-					"sum_price": "955.00"
-				}
-				// getCartCounts().then(async c => {
-				that.cartCount = countResData.count;
-				let n = Math.ceil(countResData.ids.length / that.limit)
-				for (let i = 0; i < n; i++) {
-					// let cartList = await this.getCartData(data)
-					let cartListData = {
-						"valid": [{
-								"id": 9671,
-								"uid": 34391,
-								"type": "0",
-								"product_id": 97,
-								"product_attr_unique": "fd6d98f3",
-								"cart_num": 1,
-								"add_time": 1666709939,
-								"is_pay": 0,
-								"is_del": 0,
-								"is_new": 0,
-								"combination_id": 0,
-								"seckill_id": 0,
-								"bargain_id": 0,
-								"advance_id": 0,
-								"status": 1,
-								"productInfo": {
-									"id": 97,
-									"mer_id": 0,
-									"image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_0d407b8541efd8c8f87e5ac581d1421c.png",
-									"recommend_image": "",
-									"slider_image": [
-										"https://demo26.crmeb.net/uploads/attach/2021/11/13/2d97c9bd7abcdb65049c97bbe9ba61d1.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/13/a48cce02122f4046193bdda67d970b55.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/13/5c4754f2b647b9e240e08f48c9889ebf.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/13/e8f6b1235f10f83d8a43bd91def20332.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/13/634a51ad34590eab005063742d086b87.jpg"
-									],
-									"store_name": "仟佰家 干花花束真花手工落地高枝装饰摆件招财莲蓬插花居客厅摆设 干花组合6025【不含花瓶】 干花包",
-									"store_info": "仟佰家 干花花束真花手工落地高枝装饰摆件招财莲蓬插花居客厅摆设 干花组合6025【不含花瓶】 干花包",
-									"keyword": "",
-									"bar_code": "",
-									"cate_id": "22,24",
-									"price": "306.00",
-									"vip_price": "0.00",
-									"ot_price": "299.00",
-									"postage": "0.00",
-									"unit_name": "件",
-									"sort": 100,
-									"sales": 2,
-									"stock": 12384,
-									"is_show": 1,
-									"is_hot": 0,
-									"is_benefit": 0,
-									"is_best": 0,
-									"is_new": 1,
-									"is_virtual": 0,
-									"virtual_type": 0,
-									"add_time": 1636791973,
-									"is_postage": 0,
-									"is_del": 0,
-									"mer_use": 0,
-									"give_integral": "0.00",
-									"cost": "258.00",
-									"is_seckill": 0,
-									"is_bargain": null,
-									"is_good": 0,
-									"is_sub": 0,
-									"is_vip": 0,
-									"ficti": 0,
-									"browse": 0,
-									"code_path": "",
-									"soure_link": "",
-									"temp_id": 57,
-									"spec_type": 1,
-									"activity": "0,1,2,3",
-									"spu": "5310153503736",
-									"label_id": "0",
-									"video_link": "",
-									"command_word": "",
-									"recommend_list": "",
-									"vip_product": 0,
-									"presale": 0,
-									"presale_start_time": 0,
-									"presale_end_time": 0,
-									"presale_day": 0,
-									"logistics": "1,2",
-									"freight": 2,
-									"custom_form": "",
-									"is_limit": 0,
-									"limit_type": 0,
-									"limit_num": 0,
-									"express_delivery": true,
-									"store_mention": true,
-									"attrInfo": {
-										"id": 967,
-										"product_id": 97,
-										"suk": "干花组合6025【不含花瓶】,干花包",
-										"stock": 562,
-										"sales": 1,
-										"price": "306.00",
-										"image": "https://demo26.crmeb.net/uploads/attach/2021/11/13/small_634a51ad34590eab005063742d086b87.jpg",
-										"bar_code": "",
-										"ot_price": "299.00",
-										"volume": "0.00",
-										"weight": "0.00",
-										"brokerage": "0.00",
-										"brokerage_two": "0.00",
-										"type": 0,
-										"unique": "fd6d98f3",
-										"cost": "258.00",
-										"quota": 0,
-										"quota_show": 0,
-										"vip_price": "0.00",
-										"is_virtual": 0,
-										"coupon_id": 0,
-										"disk_info": ""
-									}
-								},
-								"attrStatus": true,
-								"vip_truePrice": 0,
-								"costPrice": "258.00",
-								"trueStock": 562,
-								"truePrice": 306,
-								"sum_price": "306.00",
-								"price_type": "level",
-								"is_valid": 1
-							},
-							{
-								"id": 9670,
-								"uid": 34391,
-								"type": "0",
-								"product_id": 102,
-								"product_attr_unique": "02cce37e",
-								"cart_num": 1,
-								"add_time": 1666709927,
-								"is_pay": 0,
-								"is_del": 0,
-								"is_new": 0,
-								"combination_id": 0,
-								"seckill_id": 0,
-								"bargain_id": 0,
-								"advance_id": 0,
-								"status": 1,
-								"productInfo": {
-									"id": 102,
-									"mer_id": 0,
-									"image": "https://demo26.crmeb.net/uploads/attach/2021/11/15/small_a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
-									"recommend_image": "",
-									"slider_image": [
-										"https://demo26.crmeb.net/uploads/attach/2021/11/15/a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/15/7f46e98ece1920e1a4082dfc72bcd72a.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/15/bfb275263d02ab081b8670a752f2823f.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/15/e499a4dc489cda7b8d472cb3a3b348b7.jpg",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/15/06fa150a47163e973bb4806a380afaab.jpg"
-									],
-									"store_name": "索尼(SONY)WH-CH510 无线立体声耳机 学生网课 白色",
-									"store_info": "索尼(SONY)WH-CH510 无线立体声耳机 学生网课 白色",
-									"keyword": "耳机",
-									"bar_code": "",
-									"cate_id": "18,27,25",
-									"price": "299.00",
-									"vip_price": "0.00",
-									"ot_price": "349.00",
-									"postage": "0.00",
-									"unit_name": "件",
-									"sort": 0,
-									"sales": 3,
-									"stock": 297,
-									"is_show": 1,
-									"is_hot": 0,
-									"is_benefit": 0,
-									"is_best": 0,
-									"is_new": 0,
-									"is_virtual": 0,
-									"virtual_type": 0,
-									"add_time": 1636958921,
-									"is_postage": 0,
-									"is_del": 0,
-									"mer_use": 0,
-									"give_integral": "0.00",
-									"cost": "259.00",
-									"is_seckill": 0,
-									"is_bargain": null,
-									"is_good": 0,
-									"is_sub": 0,
-									"is_vip": 0,
-									"ficti": 0,
-									"browse": 0,
-									"code_path": "",
-									"soure_link": "",
-									"temp_id": 57,
-									"spec_type": 1,
-									"activity": "0,1,2,3",
-									"spu": "5757529716664",
-									"label_id": "0",
-									"video_link": "",
-									"command_word": "",
-									"recommend_list": "",
-									"vip_product": 0,
-									"presale": 0,
-									"presale_start_time": 0,
-									"presale_end_time": 0,
-									"presale_day": 0,
-									"logistics": "1,2",
-									"freight": 2,
-									"custom_form": "",
-									"is_limit": 0,
-									"limit_type": 0,
-									"limit_num": 0,
-									"express_delivery": true,
-									"store_mention": true,
-									"attrInfo": {
-										"id": 9,
-										"product_id": 102,
-										"suk": "黑色,CH510",
-										"stock": 98,
-										"sales": 2,
-										"price": "299.00",
-										"image": "https://demo26.crmeb.net/uploads/attach/2021/11/15/small_a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
-										"bar_code": "",
-										"ot_price": "349.00",
-										"volume": "0.00",
-										"weight": "0.00",
-										"brokerage": "0.00",
-										"brokerage_two": "0.00",
-										"type": 0,
-										"unique": "02cce37e",
-										"cost": "259.00",
-										"quota": 0,
-										"quota_show": 0,
-										"vip_price": "0.00",
-										"is_virtual": 0,
-										"coupon_id": 0,
-										"disk_info": ""
-									}
-								},
-								"attrStatus": true,
-								"vip_truePrice": 0,
-								"costPrice": "259.00",
-								"trueStock": 98,
-								"truePrice": 299,
-								"sum_price": "299.00",
-								"price_type": "level",
-								"is_valid": 1
-							},
-							{
-								"id": 9669,
-								"uid": 34391,
-								"type": "0",
-								"product_id": 89,
-								"product_attr_unique": "89807c67",
-								"cart_num": 1,
-								"add_time": 1666709911,
-								"is_pay": 0,
-								"is_del": 0,
-								"is_new": 0,
-								"combination_id": 0,
-								"seckill_id": 0,
-								"bargain_id": 0,
-								"advance_id": 0,
-								"status": 1,
-								"productInfo": {
-									"id": 89,
-									"mer_id": 0,
-									"image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_2fbe723632427b0768df24c4f23c6cad.png",
-									"recommend_image": "",
-									"slider_image": [
-										"https://demo26.crmeb.net/uploads/attach/2021/11/20211113/2fbe723632427b0768df24c4f23c6cad.png",
-										"https://demo26.crmeb.net/uploads/attach/2021/11/20211113/64d188477292aa4ae2df8da7e63aca79.png"
-									],
-									"store_name": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
-									"store_info": "",
-									"keyword": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
-									"bar_code": "",
-									"cate_id": "35",
-									"price": "350.00",
-									"vip_price": "0.00",
-									"ot_price": "300.00",
-									"postage": "0.00",
-									"unit_name": "件",
-									"sort": 553,
-									"sales": 19,
-									"stock": 185,
-									"is_show": 1,
-									"is_hot": 1,
-									"is_benefit": 0,
-									"is_best": 0,
-									"is_new": 0,
-									"is_virtual": 0,
-									"virtual_type": 0,
-									"add_time": 1636777038,
-									"is_postage": 0,
-									"is_del": 0,
-									"mer_use": 0,
-									"give_integral": "0.00",
-									"cost": "300.00",
-									"is_seckill": 0,
-									"is_bargain": null,
-									"is_good": 1,
-									"is_sub": 0,
-									"is_vip": 0,
-									"ficti": 0,
-									"browse": 0,
-									"code_path": "",
-									"soure_link": "",
-									"temp_id": 0,
-									"spec_type": 1,
-									"activity": "0,1,2,3",
-									"spu": "1015710267816",
-									"label_id": "",
-									"video_link": "",
-									"command_word": "",
-									"recommend_list": "",
-									"vip_product": 0,
-									"presale": 0,
-									"presale_start_time": 0,
-									"presale_end_time": 0,
-									"presale_day": 0,
-									"logistics": "1,2",
-									"freight": 2,
-									"custom_form": "[]",
-									"is_limit": 0,
-									"limit_type": 0,
-									"limit_num": 0,
-									"express_delivery": true,
-									"store_mention": true,
-									"attrInfo": {
-										"id": 1017,
-										"product_id": 89,
-										"suk": "梵高自画像饭盒",
-										"stock": 88,
-										"sales": 8,
-										"price": "350.00",
-										"image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_2fbe723632427b0768df24c4f23c6cad.png",
-										"bar_code": "",
-										"ot_price": "300.00",
-										"volume": "0.00",
-										"weight": "0.00",
-										"brokerage": "0.00",
-										"brokerage_two": "0.00",
-										"type": 0,
-										"unique": "89807c67",
-										"cost": "300.00",
-										"quota": 0,
-										"quota_show": 0,
-										"vip_price": "0.00",
-										"is_virtual": 0,
-										"coupon_id": 0,
-										"disk_info": ""
-									}
-								},
-								"attrStatus": true,
-								"vip_truePrice": 0,
-								"costPrice": "300.00",
-								"trueStock": 88,
-								"truePrice": 350,
-								"sum_price": "350.00",
-								"price_type": "level",
-								"is_valid": 1
-							}
-						],
-						"invalid": [],
-						"deduction": {
-							"seckill_id": 0,
-							"bargain_id": 0,
-							"combination_id": 0,
-							"discount_id": 0
-						}
-					}
-					let cartList = cartListData
-					let valid = cartList.valid
-					let validList = that.$util.SplitArray(valid, that.cartList.valid);
+      // });
+    },
+    getCartData (data) {
+      let resData = {
+        "valid": [],
+        "invalid": [],
+        "deduction": {
+          "seckill_id": 0,
+          "bargain_id": 0,
+          "combination_id": 0,
+          "discount_id": 0
+        }
+      }
+      this.loading = false;
+      this.canShow = true
+      return resData;
+      // return new Promise((resolve, reject) => {
+      // 	getCartList(data).then((res) => {
+      // 		resolve(res.data);
+      // 	}).catch((err) => {
+      // 		this.loading = false;
+      // 		this.canShow = true
+      // 		this.$util.Tips({
+      // 			title: err
+      // 		});
+      // 	})
+      // });
+    },
+    async getCartList () {
+      uni.showLoading({
+        title: this.$t(`加载中`),
+        mask: true
+      });
+      let that = this;
+      let data = {
+        page: that.page,
+        limit: that.limit,
+        status: 1
+      }
+      let countResData = {
+        "count": 0,
+        "ids": [
+          9671,
+          9670,
+          9669
+        ],
+        "sum_price": "955.00"
+      }
+      // getCartCounts().then(async c => {
+      that.cartCount = countResData.count;
+      let n = Math.ceil(countResData.ids.length / that.limit)
+      for (let i = 0; i < n; i++) {
+        // let cartList = await this.getCartData(data)
+        let cartListData = {
+          "valid": [{
+            "id": 9671,
+            "uid": 34391,
+            "type": "0",
+            "product_id": 97,
+            "product_attr_unique": "fd6d98f3",
+            "cart_num": 1,
+            "add_time": 1666709939,
+            "is_pay": 0,
+            "is_del": 0,
+            "is_new": 0,
+            "combination_id": 0,
+            "seckill_id": 0,
+            "bargain_id": 0,
+            "advance_id": 0,
+            "status": 1,
+            "productInfo": {
+              "id": 97,
+              "mer_id": 0,
+              "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_0d407b8541efd8c8f87e5ac581d1421c.png",
+              "recommend_image": "",
+              "slider_image": [
+                "https://demo26.crmeb.net/uploads/attach/2021/11/13/2d97c9bd7abcdb65049c97bbe9ba61d1.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/13/a48cce02122f4046193bdda67d970b55.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/13/5c4754f2b647b9e240e08f48c9889ebf.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/13/e8f6b1235f10f83d8a43bd91def20332.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/13/634a51ad34590eab005063742d086b87.jpg"
+              ],
+              "store_name": "仟佰家 干花花束真花手工落地高枝装饰摆件招财莲蓬插花居客厅摆设 干花组合6025【不含花瓶】 干花包",
+              "store_info": "仟佰家 干花花束真花手工落地高枝装饰摆件招财莲蓬插花居客厅摆设 干花组合6025【不含花瓶】 干花包",
+              "keyword": "",
+              "bar_code": "",
+              "cate_id": "22,24",
+              "price": "306.00",
+              "vip_price": "0.00",
+              "ot_price": "299.00",
+              "postage": "0.00",
+              "unit_name": "件",
+              "sort": 100,
+              "sales": 2,
+              "stock": 12384,
+              "is_show": 1,
+              "is_hot": 0,
+              "is_benefit": 0,
+              "is_best": 0,
+              "is_new": 1,
+              "is_virtual": 0,
+              "virtual_type": 0,
+              "add_time": 1636791973,
+              "is_postage": 0,
+              "is_del": 0,
+              "mer_use": 0,
+              "give_integral": "0.00",
+              "cost": "258.00",
+              "is_seckill": 0,
+              "is_bargain": null,
+              "is_good": 0,
+              "is_sub": 0,
+              "is_vip": 0,
+              "ficti": 0,
+              "browse": 0,
+              "code_path": "",
+              "soure_link": "",
+              "temp_id": 57,
+              "spec_type": 1,
+              "activity": "0,1,2,3",
+              "spu": "5310153503736",
+              "label_id": "0",
+              "video_link": "",
+              "command_word": "",
+              "recommend_list": "",
+              "vip_product": 0,
+              "presale": 0,
+              "presale_start_time": 0,
+              "presale_end_time": 0,
+              "presale_day": 0,
+              "logistics": "1,2",
+              "freight": 2,
+              "custom_form": "",
+              "is_limit": 0,
+              "limit_type": 0,
+              "limit_num": 0,
+              "express_delivery": true,
+              "store_mention": true,
+              "attrInfo": {
+                "id": 967,
+                "product_id": 97,
+                "suk": "干花组合6025【不含花瓶】,干花包",
+                "stock": 562,
+                "sales": 1,
+                "price": "306.00",
+                "image": "https://demo26.crmeb.net/uploads/attach/2021/11/13/small_634a51ad34590eab005063742d086b87.jpg",
+                "bar_code": "",
+                "ot_price": "299.00",
+                "volume": "0.00",
+                "weight": "0.00",
+                "brokerage": "0.00",
+                "brokerage_two": "0.00",
+                "type": 0,
+                "unique": "fd6d98f3",
+                "cost": "258.00",
+                "quota": 0,
+                "quota_show": 0,
+                "vip_price": "0.00",
+                "is_virtual": 0,
+                "coupon_id": 0,
+                "disk_info": ""
+              }
+            },
+            "attrStatus": true,
+            "vip_truePrice": 0,
+            "costPrice": "258.00",
+            "trueStock": 562,
+            "truePrice": 306,
+            "sum_price": "306.00",
+            "price_type": "level",
+            "is_valid": 1
+          },
+          {
+            "id": 9670,
+            "uid": 34391,
+            "type": "0",
+            "product_id": 102,
+            "product_attr_unique": "02cce37e",
+            "cart_num": 1,
+            "add_time": 1666709927,
+            "is_pay": 0,
+            "is_del": 0,
+            "is_new": 0,
+            "combination_id": 0,
+            "seckill_id": 0,
+            "bargain_id": 0,
+            "advance_id": 0,
+            "status": 1,
+            "productInfo": {
+              "id": 102,
+              "mer_id": 0,
+              "image": "https://demo26.crmeb.net/uploads/attach/2021/11/15/small_a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
+              "recommend_image": "",
+              "slider_image": [
+                "https://demo26.crmeb.net/uploads/attach/2021/11/15/a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/15/7f46e98ece1920e1a4082dfc72bcd72a.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/15/bfb275263d02ab081b8670a752f2823f.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/15/e499a4dc489cda7b8d472cb3a3b348b7.jpg",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/15/06fa150a47163e973bb4806a380afaab.jpg"
+              ],
+              "store_name": "索尼(SONY)WH-CH510 无线立体声耳机 学生网课 白色",
+              "store_info": "索尼(SONY)WH-CH510 无线立体声耳机 学生网课 白色",
+              "keyword": "耳机",
+              "bar_code": "",
+              "cate_id": "18,27,25",
+              "price": "299.00",
+              "vip_price": "0.00",
+              "ot_price": "349.00",
+              "postage": "0.00",
+              "unit_name": "件",
+              "sort": 0,
+              "sales": 3,
+              "stock": 297,
+              "is_show": 1,
+              "is_hot": 0,
+              "is_benefit": 0,
+              "is_best": 0,
+              "is_new": 0,
+              "is_virtual": 0,
+              "virtual_type": 0,
+              "add_time": 1636958921,
+              "is_postage": 0,
+              "is_del": 0,
+              "mer_use": 0,
+              "give_integral": "0.00",
+              "cost": "259.00",
+              "is_seckill": 0,
+              "is_bargain": null,
+              "is_good": 0,
+              "is_sub": 0,
+              "is_vip": 0,
+              "ficti": 0,
+              "browse": 0,
+              "code_path": "",
+              "soure_link": "",
+              "temp_id": 57,
+              "spec_type": 1,
+              "activity": "0,1,2,3",
+              "spu": "5757529716664",
+              "label_id": "0",
+              "video_link": "",
+              "command_word": "",
+              "recommend_list": "",
+              "vip_product": 0,
+              "presale": 0,
+              "presale_start_time": 0,
+              "presale_end_time": 0,
+              "presale_day": 0,
+              "logistics": "1,2",
+              "freight": 2,
+              "custom_form": "",
+              "is_limit": 0,
+              "limit_type": 0,
+              "limit_num": 0,
+              "express_delivery": true,
+              "store_mention": true,
+              "attrInfo": {
+                "id": 9,
+                "product_id": 102,
+                "suk": "黑色,CH510",
+                "stock": 98,
+                "sales": 2,
+                "price": "299.00",
+                "image": "https://demo26.crmeb.net/uploads/attach/2021/11/15/small_a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
+                "bar_code": "",
+                "ot_price": "349.00",
+                "volume": "0.00",
+                "weight": "0.00",
+                "brokerage": "0.00",
+                "brokerage_two": "0.00",
+                "type": 0,
+                "unique": "02cce37e",
+                "cost": "259.00",
+                "quota": 0,
+                "quota_show": 0,
+                "vip_price": "0.00",
+                "is_virtual": 0,
+                "coupon_id": 0,
+                "disk_info": ""
+              }
+            },
+            "attrStatus": true,
+            "vip_truePrice": 0,
+            "costPrice": "259.00",
+            "trueStock": 98,
+            "truePrice": 299,
+            "sum_price": "299.00",
+            "price_type": "level",
+            "is_valid": 1
+          },
+          {
+            "id": 9669,
+            "uid": 34391,
+            "type": "0",
+            "product_id": 89,
+            "product_attr_unique": "89807c67",
+            "cart_num": 1,
+            "add_time": 1666709911,
+            "is_pay": 0,
+            "is_del": 0,
+            "is_new": 0,
+            "combination_id": 0,
+            "seckill_id": 0,
+            "bargain_id": 0,
+            "advance_id": 0,
+            "status": 1,
+            "productInfo": {
+              "id": 89,
+              "mer_id": 0,
+              "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_2fbe723632427b0768df24c4f23c6cad.png",
+              "recommend_image": "",
+              "slider_image": [
+                "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/2fbe723632427b0768df24c4f23c6cad.png",
+                "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/64d188477292aa4ae2df8da7e63aca79.png"
+              ],
+              "store_name": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
+              "store_info": "",
+              "keyword": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
+              "bar_code": "",
+              "cate_id": "35",
+              "price": "350.00",
+              "vip_price": "0.00",
+              "ot_price": "300.00",
+              "postage": "0.00",
+              "unit_name": "件",
+              "sort": 553,
+              "sales": 19,
+              "stock": 185,
+              "is_show": 1,
+              "is_hot": 1,
+              "is_benefit": 0,
+              "is_best": 0,
+              "is_new": 0,
+              "is_virtual": 0,
+              "virtual_type": 0,
+              "add_time": 1636777038,
+              "is_postage": 0,
+              "is_del": 0,
+              "mer_use": 0,
+              "give_integral": "0.00",
+              "cost": "300.00",
+              "is_seckill": 0,
+              "is_bargain": null,
+              "is_good": 1,
+              "is_sub": 0,
+              "is_vip": 0,
+              "ficti": 0,
+              "browse": 0,
+              "code_path": "",
+              "soure_link": "",
+              "temp_id": 0,
+              "spec_type": 1,
+              "activity": "0,1,2,3",
+              "spu": "1015710267816",
+              "label_id": "",
+              "video_link": "",
+              "command_word": "",
+              "recommend_list": "",
+              "vip_product": 0,
+              "presale": 0,
+              "presale_start_time": 0,
+              "presale_end_time": 0,
+              "presale_day": 0,
+              "logistics": "1,2",
+              "freight": 2,
+              "custom_form": "[]",
+              "is_limit": 0,
+              "limit_type": 0,
+              "limit_num": 0,
+              "express_delivery": true,
+              "store_mention": true,
+              "attrInfo": {
+                "id": 1017,
+                "product_id": 89,
+                "suk": "梵高自画像饭盒",
+                "stock": 88,
+                "sales": 8,
+                "price": "350.00",
+                "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_2fbe723632427b0768df24c4f23c6cad.png",
+                "bar_code": "",
+                "ot_price": "300.00",
+                "volume": "0.00",
+                "weight": "0.00",
+                "brokerage": "0.00",
+                "brokerage_two": "0.00",
+                "type": 0,
+                "unique": "89807c67",
+                "cost": "300.00",
+                "quota": 0,
+                "quota_show": 0,
+                "vip_price": "0.00",
+                "is_virtual": 0,
+                "coupon_id": 0,
+                "disk_info": ""
+              }
+            },
+            "attrStatus": true,
+            "vip_truePrice": 0,
+            "costPrice": "300.00",
+            "trueStock": 88,
+            "truePrice": 350,
+            "sum_price": "350.00",
+            "price_type": "level",
+            "is_valid": 1
+          }
+          ],
+          "invalid": [],
+          "deduction": {
+            "seckill_id": 0,
+            "bargain_id": 0,
+            "combination_id": 0,
+            "discount_id": 0
+          }
+        }
+        let cartList = cartListData
+        let valid = cartList.valid
+        let validList = that.$util.SplitArray(valid, that.cartList.valid);
 
-					let numSub = [{
-						numSub: true
-					}, {
-						numSub: false
-					}];
-					let numAdd = [{
-							numAdd: true
-						}, {
-							numAdd: false
-						}],
-						selectValue = [];
-					if (validList.length > 0) {
-						for (let index in validList) {
-							if (validList[index].cart_num == 1) {
-								validList[index].numSub = true;
-							} else {
-								validList[index].numSub = false;
-							}
-							let productInfo = validList[index].productInfo;
-							if (productInfo.hasOwnProperty('attrInfo') && validList[index].cart_num ==
-								validList[index].productInfo.attrInfo
-								.stock) {
-								validList[index].numAdd = true;
-							} else if (validList[index].cart_num == validList[index].productInfo
-								.stock) {
-								validList[index].numAdd = true;
-							} else {
-								validList[index].numAdd = false;
-							}
-							if (validList[index].attrStatus) {
-								validList[index].checked = true;
-								selectValue.push(validList[index].id);
-							} else {
-								validList[index].checked = false;
-							}
-						}
-					}
-					that.$set(that.cartList, 'valid', validList);
-					data.page = that.page + 1;
-					// that.goodsHidden = cartList.valid.length <= 0 ? false : true;
-					that.selectValue = selectValue;
-					let newArr = validList.filter(item => item.attrStatus);
-					that.isAllSelect = newArr.length == selectValue.length && newArr.length;
-					that.switchSelect();
-				}
-				that.loading = false;
-				this.canShow = true
-				uni.hideLoading();
-				// });
-			},
-			getInvalidList: function() {
-				let that = this;
-				if (this.loadendInvalid) return false;
-				if (this.loadingInvalid) return false;
-				let data = {
-					page: that.pageInvalid,
-					limit: that.limitInvalid,
-					status: 0
-				}
-				let resData = {
-					"valid": [],
-					"invalid": [],
-					"deduction": {
-						"seckill_id": 0,
-						"bargain_id": 0,
-						"combination_id": 0,
-						"discount_id": 0
-					}
-				}
-				// getCartList(data).then(res => {
-				let cartList = resData,
-					invalid = cartList.invalid,
-					loadendInvalid = invalid.length < that.limitInvalid;
-				let invalidList = that.$util.SplitArray(invalid, that.cartList.invalid);
-				that.$set(that.cartList, 'invalid', invalidList);
-				that.loadendInvalid = loadendInvalid;
-				that.loadTitleInvalid = loadendInvalid ? that.$t(`我也是有底线的`) : that.$t(`加载更多`);
-				that.pageInvalid = that.pageInvalid + 1;
-				that.loadingInvalid = false;
-				// }).catch(res => {
-				// 	that.loadingInvalid = false;
-				// 	that.loadTitleInvalid = that.$t(`加载更多`);
-				// })
+        let numSub = [{
+          numSub: true
+        }, {
+          numSub: false
+        }];
+        let numAdd = [{
+          numAdd: true
+        }, {
+          numAdd: false
+        }],
+          selectValue = [];
+        if (validList.length > 0) {
+          for (let index in validList) {
+            if (validList[index].cart_num == 1) {
+              validList[index].numSub = true;
+            } else {
+              validList[index].numSub = false;
+            }
+            let productInfo = validList[index].productInfo;
+            if (productInfo.hasOwnProperty('attrInfo') && validList[index].cart_num ==
+              validList[index].productInfo.attrInfo
+                .stock) {
+              validList[index].numAdd = true;
+            } else if (validList[index].cart_num == validList[index].productInfo
+              .stock) {
+              validList[index].numAdd = true;
+            } else {
+              validList[index].numAdd = false;
+            }
+            if (validList[index].attrStatus) {
+              validList[index].checked = true;
+              selectValue.push(validList[index].id);
+            } else {
+              validList[index].checked = false;
+            }
+          }
+        }
+        that.$set(that.cartList, 'valid', validList);
+        data.page = that.page + 1;
+        // that.goodsHidden = cartList.valid.length <= 0 ? false : true;
+        that.selectValue = selectValue;
+        let newArr = validList.filter(item => item.attrStatus);
+        that.isAllSelect = newArr.length == selectValue.length && newArr.length;
+        that.switchSelect();
+      }
+      that.loading = false;
+      this.canShow = true
+      uni.hideLoading();
+      // });
+    },
+    getInvalidList: function () {
+      let that = this;
+      if (this.loadendInvalid) return false;
+      if (this.loadingInvalid) return false;
+      let data = {
+        page: that.pageInvalid,
+        limit: that.limitInvalid,
+        status: 0
+      }
+      let resData = {
+        "valid": [],
+        "invalid": [],
+        "deduction": {
+          "seckill_id": 0,
+          "bargain_id": 0,
+          "combination_id": 0,
+          "discount_id": 0
+        }
+      }
+      // getCartList(data).then(res => {
+      let cartList = resData,
+        invalid = cartList.invalid,
+        loadendInvalid = invalid.length < that.limitInvalid;
+      let invalidList = that.$util.SplitArray(invalid, that.cartList.invalid);
+      that.$set(that.cartList, 'invalid', invalidList);
+      that.loadendInvalid = loadendInvalid;
+      that.loadTitleInvalid = loadendInvalid ? that.$t(`我也是有底线的`) : that.$t(`加载更多`);
+      that.pageInvalid = that.pageInvalid + 1;
+      that.loadingInvalid = false;
+      // }).catch(res => {
+      // 	that.loadingInvalid = false;
+      // 	that.loadTitleInvalid = that.$t(`加载更多`);
+      // })
 
-			},
-			getHostProduct: function() {
-				let that = this;
-				if (that.hotScroll) return
-				that.hotPage++
-				that.hotScroll = hot_res.length < that.hotLimit
-				that.hostProduct = that.hostProduct.concat(hot_res)
-				// getProductHot(
-				// 	that.hotPage,
-				// 	that.hotLimit,
-				// ).then(res => {
-				// 	that.hotPage++
-				// 	that.hotScroll = res.data.length < that.hotLimit
-				// 	that.hostProduct = that.hostProduct.concat(res.data)
-				// });
-			},
-			goodsOpen: function() {
-				let that = this;
-				that.goodsHidden = !that.goodsHidden;
-			},
-			goRouter(item) {
-				var pages = getCurrentPages();
-				var page = (pages[pages.length - 1]).$page.fullPath;
-				if (item.link == page) return
-				uni.switchTab({
-					url: item.link,
-					fail(err) {
-						uni.redirectTo({
-							url: item.link
-						})
-					}
-				})
-			},
-			manage: function() {
-				let that = this;
-				that.footerswitch = !that.footerswitch;
-				let arr1 = [];
-				let arr2 = [];
-				let newValid = that.cartList.valid.map(item => {
-					if (that.footerswitch) {
-						if (item.attrStatus) {
-							if (item.checked) {
-								arr1.push(item.id);
-							}
-						} else {
-							item.checked = false;
-							arr2.push(item);
-						}
-					} else {
-						if (item.checked) {
-							arr1.push(item.id);
-						}
-					}
-					return item;
-				});
-				that.cartList.valid = newValid;
-				if (that.footerswitch) {
-					that.isAllSelect = newValid.length === arr1.length + arr2.length;
-				} else {
-					that.isAllSelect = newValid.length === arr1.length;
-				}
-				that.selectValue = arr1;
-				that.switchSelect();
-			},
-			unsetCart: function() {
-				let that = this,
-					ids = [];
-				for (let i = 0, len = that.cartList.invalid.length; i < len; i++) {
-					ids.push(that.cartList.invalid[i].id);
-				}
-				cartDel(ids).then(res => {
-					that.$util.Tips({
-						title: that.$t(`清除成功`)
-					});
-					that.$set(that.cartList, 'invalid', []);
-					that.getCartNum();
-				}).catch(res => {
+    },
+    getHostProduct: function () {
+      let that = this;
+      if (that.hotScroll) return
+      that.hotPage++
+      that.hotScroll = hot_res.length < that.hotLimit
+      that.hostProduct = that.hostProduct.concat(hot_res)
+      // getProductHot(
+      // 	that.hotPage,
+      // 	that.hotLimit,
+      // ).then(res => {
+      // 	that.hotPage++
+      // 	that.hotScroll = res.data.length < that.hotLimit
+      // 	that.hostProduct = that.hostProduct.concat(res.data)
+      // });
+    },
+    goodsOpen: function () {
+      let that = this;
+      that.goodsHidden = !that.goodsHidden;
+    },
+    goRouter (item) {
+      var pages = getCurrentPages();
+      var page = (pages[pages.length - 1]).$page.fullPath;
+      if (item.link == page) return
+      uni.switchTab({
+        url: item.link,
+        fail (err) {
+          uni.redirectTo({
+            url: item.link
+          })
+        }
+      })
+    },
+    manage: function () {
+      let that = this;
+      that.footerswitch = !that.footerswitch;
+      let arr1 = [];
+      let arr2 = [];
+      let newValid = that.cartList.valid.map(item => {
+        if (that.footerswitch) {
+          if (item.attrStatus) {
+            if (item.checked) {
+              arr1.push(item.id);
+            }
+          } else {
+            item.checked = false;
+            arr2.push(item);
+          }
+        } else {
+          if (item.checked) {
+            arr1.push(item.id);
+          }
+        }
+        return item;
+      });
+      that.cartList.valid = newValid;
+      if (that.footerswitch) {
+        that.isAllSelect = newValid.length === arr1.length + arr2.length;
+      } else {
+        that.isAllSelect = newValid.length === arr1.length;
+      }
+      that.selectValue = arr1;
+      that.switchSelect();
+    },
+    unsetCart: function () {
+      let that = this,
+        ids = [];
+      for (let i = 0, len = that.cartList.invalid.length; i < len; i++) {
+        ids.push(that.cartList.invalid[i].id);
+      }
+      cartDel(ids).then(res => {
+        that.$util.Tips({
+          title: that.$t(`清除成功`)
+        });
+        that.$set(that.cartList, 'invalid', []);
+        that.getCartNum();
+      }).catch(res => {
 
-				});
-			}
-		},
-		onReachBottom() {
-			let that = this;
-			if (that.loadend) {
-				that.getInvalidList();
-			}
-			if (that.cartList.valid.length == 0 && that.cartList.invalid.length == 0) {
-				that.getHostProduct();
-			}
-		}
-	}
+      });
+    }
+  },
+  onReachBottom () {
+    let that = this;
+    if (that.loadend) {
+      that.getInvalidList();
+    }
+    if (that.cartList.valid.length == 0 && that.cartList.invalid.length == 0) {
+      that.getHostProduct();
+    }
+  }
+}
 </script>
 
 <style scoped lang="scss">
-	.order_addcart {
-		padding: 20rpx;
-	}
-
-	.rank-list {
-
-		background: white;
-		margin-top: 20rpx;
-		padding-top: 20rpx;
-		padding-bottom: 10rpx;
-		height: 600rpx;
-		overflow: auto;
-
-		.rank-list-item {
-			margin: 20rpx;
-			margin-bottom: 40rpx;
-			width: calc(100% - 40rpx);
-			height: 50rpx;
-			display: flex;
-
-			image {
-				width: 50rpx;
-				height: 50rpx;
-				margin-right: 20rpx;
-				margin-left: 10rpx;
-			}
-
-			.nuber {
-				font-size: 18rpx;
-				margin-right: 20rpx;
-				line-height: 0rpx;
-			}
-
-			.mosaic {
-				font-size: 18rpx;
-				margin-right: 20rpx;
-				color: #999999;
-				line-height: 0rpx;
-			}
-
-			.litem-info {
-				text-align: right;
-				flex-grow: 1;
-				font-size: 24rpx;
-				line-height: 50rpx;
-				margin-right: 20rpx;
-				color: #666666;
-			}
+.order_addcart {
+  padding: 20rpx;
+}
 
-			.balance {
-				line-height: 50rpx;
-				color: #EB4C63;
+.rank-list {
+  background: white;
+  margin-top: 20rpx;
+  padding-top: 20rpx;
+  padding-bottom: 10rpx;
+  height: 600rpx;
+  overflow: auto;
 
-			}
-		}
-	}
+  .rank-list-item {
+    margin: 20rpx;
+    margin-bottom: 40rpx;
+    width: calc(100% - 40rpx);
+    height: 50rpx;
+    display: flex;
 
-	.loop {
-		background: url('http://wine.gzzzyd.com/wx/order_addcart/hongbaochi.png') no-repeat;
-		width: 100%;
-		height: 250rpx;
-		background-size: 100% 100%;
-		position: relative;
+    image {
+      width: 50rpx;
+      height: 50rpx;
+      margin-right: 20rpx;
+      margin-left: 10rpx;
+    }
 
-		.loop-title {
-			padding: 20rpx;
-			padding-left: 35rpx;
-			font-size: 32rpx;
-		}
+    .nuber {
+      font-size: 18rpx;
+      margin-right: 20rpx;
+      line-height: 0rpx;
+    }
 
-		.loop-count {
-			text-align: center;
-			line-height: 97rpx;
-			font-size: 48rpx;
-			color: #EB4C63;
-			width: 420rpx;
-			height: 97rpx;
-			background: #FFFFFF;
-			border-radius: 23px;
-			border: 1px solid #EB4C63;
-			position: absolute;
-			left: 50%;
-			top: 47%;
-			transform: translateX(-50%);
-		}
+    .mosaic {
+      font-size: 18rpx;
+      margin-right: 20rpx;
+      color: #999999;
+      line-height: 0rpx;
+    }
 
-		// image {
-		// 	width: 100%;
-		// }
+    .litem-info {
+      text-align: right;
+      flex-grow: 1;
+      font-size: 24rpx;
+      line-height: 50rpx;
+      margin-right: 20rpx;
+      color: #666666;
+    }
 
-	}
+    .balance {
+      line-height: 50rpx;
+      color: #eb4c63;
+    }
+  }
+}
 
-	.tab-area {
-		margin-top: 20rpx;
-		display: flex;
-		flex-wrap: nowrap;
-		justify-content: space-between;
-		line-height: 90rpx;
-		text-align: center;
+.loop {
+  background: url("http://wine.gzzzyd.com/wx/order_addcart/hongbaochi.png")
+    no-repeat;
+  width: 100%;
+  height: 250rpx;
+  background-size: 100% 100%;
+  position: relative;
 
-		.base-tab {
-			width: 48%;
-			height: 90rpx;
-		}
+  .loop-title {
+    padding: 20rpx;
+    padding-left: 35rpx;
+    font-size: 32rpx;
+  }
 
-		.tab-area-active1 {
-			background: url('http://wine.gzzzyd.com/wx/order_addcart/tab1.png') no-repeat;
-			background-size: 340rpx 120rpx;
+  .loop-count {
+    text-align: center;
+    line-height: 97rpx;
+    font-size: 48rpx;
+    color: #eb4c63;
+    width: 420rpx;
+    height: 97rpx;
+    background: #ffffff;
+    border-radius: 23px;
+    border: 1px solid #eb4c63;
+    position: absolute;
+    left: 50%;
+    top: 47%;
+    transform: translateX(-50%);
+  }
 
-		}
+  // image {
+  // 	width: 100%;
+  // }
+}
 
-		.tab-area-active2 {
-			background: url('http://wine.gzzzyd.com/wx/order_addcart/tab2.png') no-repeat;
-			background-size: 340rpx 120rpx;
+.tab-area {
+  margin-top: 20rpx;
+  display: flex;
+  flex-wrap: nowrap;
+  justify-content: space-between;
+  line-height: 90rpx;
+  text-align: center;
 
-		}
-	}
+  .base-tab {
+    width: 48%;
+    height: 90rpx;
+  }
 
-	.order_addcart-header-area {
+  .tab-area-active1 {
+    background: url("http://wine.gzzzyd.com/wx/order_addcart/tab1.png")
+      no-repeat;
+    background-size: 340rpx 120rpx;
+  }
 
-		display: flex;
+  .tab-area-active2 {
+    background: url("http://wine.gzzzyd.com/wx/order_addcart/tab2.png")
+      no-repeat;
+    background-size: 340rpx 120rpx;
+  }
+}
 
-		.received {
-			width: 405rpx;
-			height: 175rpx;
-			padding: 20rpx;
-			margin-bottom: 20rpx;
-			margin-right: 20rpx;
-			background-color: #fff;
-			border-radius: 20rpx;
-			overflow: hidden;
-			position: relative;
-			display: flex;
+.order_addcart-header-area {
+  display: flex;
 
-			.pictrue {
-				display: flex;
-				align-items: center;
+  .received {
+    width: 405rpx;
+    height: 175rpx;
+    padding: 20rpx;
+    margin-bottom: 20rpx;
+    margin-right: 20rpx;
+    background-color: #fff;
+    border-radius: 20rpx;
+    overflow: hidden;
+    position: relative;
+    display: flex;
 
-				image {
-					width: 98rpx;
-					height: 98rpx;
-				}
+    .pictrue {
+      display: flex;
+      align-items: center;
 
-				margin-right: 20rpx;
-			}
+      image {
+        width: 98rpx;
+        height: 98rpx;
+      }
 
-			.text-info {
-				display: flex;
-				flex-direction: column;
-				justify-content: center;
+      margin-right: 20rpx;
+    }
 
-				color: #6EB03A;
+    .text-info {
+      display: flex;
+      flex-direction: column;
+      justify-content: center;
 
-				.received-count {
-					font-size: 38rpx;
-					margin-bottom: 10rpx;
-					letter-spacing: 2px;
-				}
+      color: #6eb03a;
 
-				.received-info {
-					font-size: 28rpx;
-				}
-			}
-		}
+      .received-count {
+        font-size: 38rpx;
+        margin-bottom: 10rpx;
+        letter-spacing: 2px;
+      }
 
+      .received-info {
+        font-size: 28rpx;
+      }
+    }
+  }
 
-		.loss {
-			flex-grow: 1;
-			height: 175rpx;
-			padding: 20rpx;
-			margin-bottom: 20rpx;
-			background-color: #fff;
-			border-radius: 20rpx;
-			overflow: hidden;
-			position: relative;
-			display: flex;
+  .loss {
+    flex-grow: 1;
+    height: 175rpx;
+    padding: 20rpx;
+    margin-bottom: 20rpx;
+    background-color: #fff;
+    border-radius: 20rpx;
+    overflow: hidden;
+    position: relative;
+    display: flex;
 
-			.text-info {
-				width: 100%;
-				display: flex;
-				flex-direction: column;
-				justify-content: center;
-				text-align: center;
-				color: #D08D5B;
+    .text-info {
+      width: 100%;
+      display: flex;
+      flex-direction: column;
+      justify-content: center;
+      text-align: center;
+      color: #d08d5b;
 
-				.received-count {
-					font-size: 38rpx;
-					margin-bottom: 10rpx;
-					letter-spacing: 2px;
-				}
+      .received-count {
+        font-size: 38rpx;
+        margin-bottom: 10rpx;
+        letter-spacing: 2px;
+      }
 
-				.received-info {
-					font-size: 28rpx;
-				}
-			}
-		}
-	}
+      .received-info {
+        font-size: 28rpx;
+      }
+    }
+  }
+}
 </style>

+ 265 - 0
pages/order_addcart/wallet_accelerate/index.vue

@@ -0,0 +1,265 @@
+<!-- #ifdef H5 -->
+<template >
+  <view class="wallet_accelerate" :style="colorStyle">
+    <view class="received_header">
+      <view class="img-area">
+        <text>获取更多红色积分</text>
+      </view>
+      <view class="text-area-1">
+        <text> 当前红色积分: </text>
+
+        <text style="color: #ec912d; font-size: 36rpx"> 0.0 </text>
+      </view>
+      <view class="text-area-2">
+        <text> 可兑换: </text>
+
+        <text style="color: #eb4c63; font-size: 36rpx"> 0.0元 </text>
+      </view>
+      <view class="btn-area">
+        <button>去下单</button>
+      </view>
+    </view>
+    <view class="received_body">
+      <view class="img-area">
+        <text>邀请好友注册</text>
+      </view>
+      <view class="btn-area">
+        <button>去邀请</button>
+      </view>
+      <view class="text-area-1">
+        <text> 规则说明: </text>
+      </view>
+      <view class="text-area-2">
+        1、完善个人资料 (+100信誉分)
+        <br>
+        2、邀请好友注册完善资料(+5信誉分)
+        <br>
+        3、每完成一次进货(+20信誉分)
+        <br>
+        4、减少进货场次(-30信誉分)
+        <br>
+        5、500信誉分以上完成一次进货+2信誉分,邀请好友注册完善资料+1信誉分
+        <br>
+        <br>
+        6、100信誉分—199信誉分(每场限抢一单)
+        <br>
+        7、200信誉分—299信誉分(每场限抢二单)
+        <br>
+        8、300信誉分—399信誉分(每场限抢三单)
+        <br>
+        9、400信誉分—499信誉分(每场限抢四单)
+        <br>
+        10、500信誉分以上用户(每场限抢五单)
+      </view>
+    </view>
+    <view class="received_body">
+      <view class="img-area">
+        <text>团队好友下单累计满15人</text>
+      </view>
+      <view class="btn-area">
+        <button>去邀请</button>
+      </view>
+      <view class="text-area-1">
+        <text> 规则说明: </text>
+      </view>
+      <view class="text-area-2">
+        1、完善个人资料 (+100信誉分)
+        <br>
+        2、邀请好友注册完善资料(+5信誉分)
+        <br>
+        3、每完成一次进货(+20信誉分)
+        <br>
+        4、减少进货场次(-30信誉分)
+        <br>
+        5、500信誉分以上完成一次进货+2信誉分,邀请好友注册完善资料+1信誉分
+        <br>
+        <br>
+        6、100信誉分—199信誉分(每场限抢一单)
+        <br>
+        7、200信誉分—299信誉分(每场限抢二单)
+        <br>
+        8、300信誉分—399信誉分(每场限抢三单)
+        <br>
+        9、400信誉分—499信誉分(每场限抢四单)
+        <br>
+        10、500信誉分以上用户(每场限抢五单)
+      </view>
+    </view>
+  </view>
+</template>
+
+<script>	import {
+  logListByUserId,
+  todayStatistics
+} from '@/api/home.js';
+export default {
+  components: {
+
+  },
+  data () {
+    return {
+      historyList: [],
+      moneyObj: {
+        lossTotalAmount: "0",
+        receiveItemAmount: "0",
+        receiveItemCount: 0,
+        redEnvelopeItemCount: 0,
+        remainItemCount: 0,
+        totalReceivedRedEnvelopeAmount: "0",
+        totalRedEnvelopeAmount: "0",
+        totalRemainItemAmount: "0"
+      },
+    };
+  },
+  onPullDownRefresh () {
+    this.logListByUserId()
+    this.todayStatistics()
+  },
+  onLoad (options) {
+
+  },
+  created () {
+    this.logListByUserId()
+    this.todayStatistics()
+  },
+  methods: {
+    todayStatistics () {
+      todayStatistics().then(res => {
+        this.moneyObj = res.data
+      })
+    },
+    logListByUserId () {
+      let that = this
+      logListByUserId().then(res => {
+        if (res.data.length > 0) {
+          that.$set(that, "historyList", res.data)
+        } else {
+          that.$set(that, "historyList", [])
+        }
+        uni.stopPullDownRefresh();
+      })
+    },
+  }
+}
+</script>
+
+<style scoped lang="scss">
+.wallet_accelerate {
+  .received_header {
+    height: 380rpx;
+    position: relative;
+    background: white;
+    border-radius: 15px;
+    margin: 10px;
+    .img-area {
+      text-align: center;
+      color: white;
+      position: relative;
+      top: 0;
+      left: 50%;
+      transform: translateX(-50%);
+      background: url("./矩形.png") no-repeat;
+      width: 60%;
+      height: 80rpx;
+      line-height: 80rpx;
+      font-size: 32rpx;
+      background-size: 100% 100%;
+    }
+    .text-area-1 {
+      width: 100%;
+      height: 80rpx;
+      position: relative;
+      line-height: 80rpx;
+      font-size: 32rpx;
+      letter-spacing: 1px;
+      padding-top: 20rpx;
+      padding-left: 40rpx;
+    }
+    .text-area-2 {
+      box-sizing: border-box;
+      width: 100%;
+      height: 50rpx;
+      position: relative;
+      line-height: 50rpx;
+      font-size: 32rpx;
+      letter-spacing: 1px;
+      padding-top: 20rpx;
+      padding-left: 40rpx;
+    }
+    .btn-area {
+      position: relative;
+      height: 170rpx;
+      button {
+        left: 50%;
+        top: 60%;
+        transform: translate(-50%, -60%);
+        position: absolute;
+        width: 35%;
+        height: 70rpx;
+        line-height: 70rpx;
+        border-radius: 50rpx;
+        font-size: 32rpx;
+        border: 1px solid black;
+      }
+    }
+  }
+  .received_body {
+    position: relative;
+    background: white;
+    border-radius: 15px;
+    margin: 10px;
+    .img-area {
+      text-align: center;
+      color: white;
+      position: relative;
+      top: 0;
+      left: 50%;
+      transform: translateX(-50%);
+      background: url("./矩形.png") no-repeat;
+      width: 60%;
+      height: 80rpx;
+      line-height: 80rpx;
+      font-size: 32rpx;
+      background-size: 100% 100%;
+    }
+    .text-area-1 {
+      width: 100%;
+      height: 80rpx;
+      position: relative;
+      top: -10rpx;
+      line-height: 80rpx;
+      font-size: 32rpx;
+      letter-spacing: 1px;
+      padding-left: 40rpx;
+    }
+    .text-area-2 {
+      box-sizing: border-box;
+      width: 100%;
+      position: relative;
+      line-height: 40rpx;
+      font-size: 32rpx;
+      padding-top: 20rpx;
+      padding-left: 40rpx;
+      color: #999999;
+      padding-bottom: 10px;
+    }
+    .btn-area {
+      position: relative;
+      height: 130rpx;
+      button {
+        left: 50%;
+        bottom: 0;
+        transform: translateX(-50%);
+        position: absolute;
+        width: 35%;
+        height: 70rpx;
+        line-height: 70rpx;
+        border-radius: 50rpx;
+        font-size: 32rpx;
+        border: 1px solid black;
+      }
+    }
+  }
+}
+</style>
+<!-- #endif -->

BIN
pages/order_addcart/wallet_accelerate/矩形.png


+ 159 - 5
pages/order_addcart/wallet_missed/index.vue

@@ -1,13 +1,167 @@
 <!-- #ifdef H5 -->
-<template>
-	<view>红包</view>
+<template >
+  <view class="wallet_missed" :style="colorStyle">
+    <view class="tota_income">
+      <text class="t-t"> {{ moneyObj.lossTotalAmount }}</text>
+      <text class="t-b"> 已错失总金额</text>
+    </view>
+
+    <view class="tota_history">
+      <view class="h-item" v-for="(src, i) in historyList" :key="src.id">
+        <view class="h-l">
+          <text>{{ src.dateTime }}</text>
+        </view>
+        <view class="h-r">
+          <text class="imp">{{ src.count }}元</text>
+        </view>
+      </view>
+    </view>
+    <view class="op-area">
+			
+		<button type="warn"  @click="goToAccelerate" class="bnt">去加速</button>
+    </view>
+  </view>
 </template>
 
-<script>
-	
+<script>	import {
+  exclusivePage,
+  todayStatistics
+} from '@/api/home.js';
+export default {
+  components: {
+
+  },
+  data () {
+    return {
+      historyList: [],
+      moneyObj: {
+        lossTotalAmount: "0",
+        receiveItemAmount: "0",
+        receiveItemCount: 0,
+        redEnvelopeItemCount: 0,
+        remainItemCount: 0,
+        totalReceivedRedEnvelopeAmount: "0",
+        totalRedEnvelopeAmount: "0",
+        totalRemainItemAmount: "0"
+      },
+    };
+  },
+  onPullDownRefresh () {
+    this.exclusivePage()
+    this.todayStatistics()
+  },
+  onLoad (options) {
+
+  },
+  created () {
+    this.exclusivePage()
+    this.todayStatistics()
+  },
+  methods: {
+		goToAccelerate(){
+      uni.navigateTo({
+        url: '/pages/order_addcart/wallet_accelerate/index'
+      })
+		},
+    todayStatistics () {
+      todayStatistics().then(res => {
+        this.moneyObj = res.data
+      })
+    },
+    exclusivePage () {
+      let that = this
+      exclusivePage().then(res => {
+        if (res.data.length > 0) {
+          that.$set(that, "historyList", res.data)
+        } else {
+          that.$set(that, "historyList", [])
+        }
+        uni.stopPullDownRefresh();
+      })
+    },
+  }
+}
 </script>
 
 <style scoped lang="scss">
-	
+.wallet_missed {
+  .tota_income {
+    height: 250rpx;
+    background: white;
+    border-bottom: 3px solid rgb(250, 250, 250);
+    box-sizing: border-box;
+    padding-top: 20px;
+    padding-bottom: 20px;
+    .t-t {
+      display: block;
+      text-align: center;
+      width: 100%;
+      font-size: 30px;
+      color: #ec912d;
+    }
+    .t-b {
+      display: block;
+      text-align: center;
+      font-size: 15px;
+      font-family: PingFangSC-Regular, PingFang SC;
+      font-weight: 400;
+      color: #ec912d;
+    }
+  }
+
+  .tota_history {
+		overflow: auto;
+		height: 740rpx;
+    .h-item {
+      display: flex;
+      padding: 10px;
+      height: 100rpx;
+      background: white;
+      border-bottom: 3px solid rgb(250, 250, 250);
+      .h-l {
+        display: flex;
+        flex-direction: column;
+        text-align: left;
+        flex: 1;
+        line-height: 50rpx;
+        &:nth-child(0) {
+          font-size: 15px;
+          font-family: PingFangSC-Medium, PingFang SC;
+          font-weight: 500;
+          color: #333333;
+        }
+      }
+      .h-r {
+        display: flex;
+        text-align: right;
+        flex: 1;
+        font-size: 12px;
+        font-family: PingFangSC-Regular, PingFang SC;
+        font-weight: 400;
+        color: #666666;
+        line-height: 50rpx;
+        justify-content: flex-end;
+        padding-right: 30px;
+        .imp {
+          font-family: DINAlternate-Bold, DINAlternate;
+          color: #eb4c63;
+        }
+      }
+    }
+  }
+  .op-area {
+    .bnt {
+      background: rgb(235, 75, 99);
+      font-size: 32rpx;
+      color: #fff;
+      width: 690rpx;
+      height: 90rpx;
+      text-align: center;
+      border-radius: 50rpx;
+      line-height: 90rpx;
+      margin: 64rpx auto;
+    }
+  }
+}
 </style>
 <!-- #endif -->

+ 146 - 5
pages/order_addcart/wallet_received/index.vue

@@ -1,13 +1,154 @@
 <!-- #ifdef H5 -->
-<template>
-	<view>红包</view>
+<template >
+  <view class="wallet_received" :style="colorStyle">
+    <view class="tota_income">
+      <text class="t-t"> {{ moneyObj.receiveItemAmount }}</text>
+      <text class="t-b"> 总收益</text>
+    </view>
+
+    <view class="tota_history">
+      <view class="h-item" v-for="(src, i) in historyList" :key="src.id">
+        <view class="h-l">
+          <text>{{ src.createTime }}</text>
+          <text>{{ ["随机红包", "专属红包","收益红包"][src.type] }}</text>
+        </view>
+        <view class="h-r">
+          <text class="exr">领取了</text>
+          <text class="imp">{{ src.grabAmount }}元</text>
+        </view>
+      </view>
+    </view>
+  </view>
 </template>
 
-<script>
-	
+<script>	import {
+  logListByUserId,
+  todayStatistics
+} from '@/api/home.js';
+export default {
+  components: {
+
+  },
+  data () {
+    return {
+      historyList: [],
+      moneyObj: {
+        lossTotalAmount: "0",
+        receiveItemAmount: "0",
+        receiveItemCount: 0,
+        redEnvelopeItemCount: 0,
+        remainItemCount: 0,
+        totalReceivedRedEnvelopeAmount: "0",
+        totalRedEnvelopeAmount: "0",
+        totalRemainItemAmount: "0"
+      },
+    };
+  },
+  onPullDownRefresh () {
+		this.logListByUserId()
+    this.todayStatistics()
+  },
+  onLoad (options) {
+
+  },
+  created () {
+    this.logListByUserId()
+    this.todayStatistics()
+  },
+  methods: {
+    todayStatistics () {
+      todayStatistics().then(res => {
+        this.moneyObj = res.data
+      })
+    },
+    logListByUserId () {
+      let that = this
+      logListByUserId().then(res => {
+        if (res.data.length > 0) {
+          that.$set(that, "historyList", res.data)
+        } else {
+          that.$set(that, "historyList", [])
+        }
+				uni.stopPullDownRefresh();
+      })
+    },
+  }
+}
 </script>
 
 <style scoped lang="scss">
-	
+.wallet_received {
+  .tota_income {
+    height: 250rpx;
+    background: rgb(250, 250, 250);
+    box-sizing: border-box;
+    padding-top: 20px;
+    padding-bottom: 20px;
+    .t-t {
+      display: block;
+      text-align: center;
+      width: 100%;
+      font-size: 30px;
+    }
+    .t-b {
+      display: block;
+      text-align: center;
+      font-size: 15px;
+      font-family: PingFangSC-Regular, PingFang SC;
+      font-weight: 400;
+    }
+  }
+
+  .tota_history {
+    .h-item {
+      display: flex;
+      padding: 10px;
+      height: 150rpx;
+      background: white;
+      border-bottom: 3px solid rgb(250, 250, 250);
+      .h-l {
+        display: flex;
+        flex-direction: column;
+        text-align: left;
+        flex: 1;
+        &:nth-child(0) {
+          height: 21px;
+          font-size: 15px;
+          font-family: PingFangSC-Medium, PingFang SC;
+          font-weight: 500;
+          color: #333333;
+          line-height: 21px;
+        }
+        &:nth-child(1) {
+          height: 20px;
+          font-size: 14px;
+          font-family: PingFangSC-Regular, PingFang SC;
+          font-weight: 400;
+          color: #666666;
+          line-height: 20px;
+        }
+      }
+      .h-r {
+				display: flex;
+        text-align: right;
+        flex: 1;
+        font-size: 12px;
+        font-family: PingFangSC-Regular, PingFang SC;
+        font-weight: 400;
+        color: #666666;
+        line-height: 100rpx;
+
+				.exr{
+					flex-grow: 1;
+				}
+        .imp {
+          font-size: 16px;
+          font-family: DINAlternate-Bold, DINAlternate;
+          color: #eb4c63;
+        }
+      }
+    }
+  }
+}
 </style>
 <!-- #endif -->