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