瀏覽代碼

展开我的收藏页面设计

LinWuTai 2 月之前
父節點
當前提交
72f35e8479
共有 2 個文件被更改,包括 34 次插入0 次删除
  1. 11 0
      pages.json
  2. 23 0
      pages/collect/collect.vue

+ 11 - 0
pages.json

@@ -252,6 +252,17 @@
 					"titleNView": false
 				}
 			}
+		},
+		{
+			"path" : "pages/collect/collect",
+			"style" : 
+			{
+				"navigationBarTitleText" : "我的收藏",
+				"enablePullDownRefresh": false,
+				"app-plus": {
+					"titleNView": false
+				}
+			}
 		}
 	],
 	"globalStyle": {

+ 23 - 0
pages/collect/collect.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>