Browse Source

展开我的订单页面设计

LinWuTai 2 months ago
parent
commit
f7e46c557b
3 changed files with 41 additions and 1 deletions
  1. 11 0
      pages.json
  2. 23 0
      pages/order/order.vue
  3. 7 1
      pages/personalCenter/personalCenter.vue

+ 11 - 0
pages.json

@@ -164,6 +164,17 @@
 					"titleNView": false
 				}
 			}
+		},
+		{
+			"path" : "pages/order/order",
+			"style" : 
+			{
+				"navigationBarTitleText" : "我的订单",
+				"enablePullDownRefresh": false,
+				"app-plus": {
+					"titleNView": false
+				}
+			}
 		}
 	],
 	"globalStyle": {

+ 23 - 0
pages/order/order.vue

@@ -0,0 +1,23 @@
+<template>
+	<view class="container">
+		我的订单
+	</view>
+</template>
+
+<script setup>
+	import { ref } from 'vue'
+	import { onLoad } from '@dcloudio/uni-app'
+	
+	onLoad(() => {
+		console.log('onLoad')
+	})
+</script>
+
+<style lang="scss" scoped>
+	.container {
+		height: 100vh;
+		width: 100vw;
+		background-color: $uni-bg-color;
+		padding: 0 20rpx;
+	}
+</style>

+ 7 - 1
pages/personalCenter/personalCenter.vue

@@ -72,7 +72,7 @@
 					<view class="iconfont icon-chevron-right"></view>
 				</view>
 			</view>
-			<view class="menu-item-box">
+			<view class="menu-item-box" @click="onWoDeDingDan()">
 				<view class="icon-box">
 					<view class="iconfont icon-dingdan"></view>
 				</view>
@@ -208,6 +208,12 @@
 		}
 	}
 	
+	// 点击-我的订单
+	function onWoDeDingDan() {
+		uni.navigateTo({
+			url: '/pages/order/order'
+		})
+	}
 	// 点击-常见问题
 	function onChangJianWenTi() {
 		console.log('点击-常见问题');