Ver Fonte

初始化红包跳转界面

yuxingxing há 2 anos atrás
pai
commit
4de548756a

+ 26 - 0
pages.json

@@ -33,6 +33,32 @@
 				}
 			}
 		},
+		{
+			"path": "pages/order_addcart/wallet_received/index",
+			"style": {
+				"navigationBarTitleText": "已领取红包",
+				"app-plus": {
+					// #ifdef APP-PLUS
+					"titleNView": {
+						"type": "default"
+					}
+					// #endif
+				}
+			}
+		},
+		{
+			"path": "pages/order_addcart/wallet_missed/index",
+			"style": {
+				"navigationBarTitleText": "已错失红包",
+				"app-plus": {
+					// #ifdef APP-PLUS
+					"titleNView": {
+						"type": "default"
+					}
+					// #endif
+				}
+			}
+		},
 		{
 			"path": "pages/user/index",
 			"style": {

+ 13 - 4
pages/order_addcart/order_addcart.vue

@@ -1,11 +1,11 @@
 <template>
 	<view class="order_addcart" :style="colorStyle">
 		<view class="order_addcart-header-area">
-			<view class="received" @click="goDetail(item)">
+			<view class="received">
 				<view class="pictrue">
 					<image src='http://wine.gzzzyd.com/wx/order_addcart/qiandai.png'></image>
 				</view>
-				<view class="text-info">
+				<view class="text-info" @click="goReceived()">
 					<view class="received-count">
 						{{moneyObj.receiveItemAmount}}
 					</view>
@@ -14,7 +14,7 @@
 					</view>
 				</view>
 			</view>
-			<view class="loss" @click="goDetail(item)">
+			<view class="loss" @click="goMissed()">
 				<view class="text-info">
 					<view class="received-count">
 						{{moneyObj.lossTotalAmount}}
@@ -219,7 +219,16 @@
 			this.todayStatistics()
 		},
 		methods: {
-
+			goReceived(){
+				uni.switchTab({
+					url: '/pages/order_addcart/wallet_received/index'
+				})
+			},
+			goMissed(){
+				uni.switchTab({
+					url: '/pages/order_addcart/wallet_missed/index'
+				})
+			},
 			// 授权关闭
 			authColse: function(e) {
 				this.isShowAuth = e;

+ 13 - 0
pages/order_addcart/wallet_missed/index.vue

@@ -0,0 +1,13 @@
+<!-- #ifdef H5 -->
+<template>
+	
+</template>
+
+<script>
+	
+</script>
+
+<style scoped lang="scss">
+	
+</style>
+<!-- #endif -->

+ 13 - 0
pages/order_addcart/wallet_received/index.vue

@@ -0,0 +1,13 @@
+<!-- #ifdef H5 -->
+<template>
+	
+</template>
+
+<script>
+	
+</script>
+
+<style scoped lang="scss">
+	
+</style>
+<!-- #endif -->