空白格 3 years ago
parent
commit
e66976b56f

+ 21 - 0
pages.json

@@ -37,6 +37,27 @@
 				"enablePullDownRefresh": false
 			}
 
+		}, {
+			"path": "pages/operationOverview/operationOverviewModel/operationOverviewModel",
+			"style": {
+				"navigationBarTitleText": "运营概况",
+				"enablePullDownRefresh": false
+			}
+
+		}, {
+			"path": "pages/operationOverview/statisticalReport/statisticalReport",
+			"style": {
+				"navigationBarTitleText": "统计报表",
+				"enablePullDownRefresh": false
+			}
+
+		}, {
+			"path": "pages/operationOverview/operationalAnalysis/operationalAnalysis",
+			"style": {
+				"navigationBarTitleText": "运营分析",
+				"enablePullDownRefresh": false
+			}
+
 		}
 	],
 	"globalStyle": {

+ 11 - 3
pages/operationOverview/operationOverview.vue

@@ -1,7 +1,7 @@
 <template>
 	<view class="records">
 		<view class="records-list">
-			<view class="records-list-item" v-for="(item, index) in list" :key="index">{{ item }}</view>
+			<view class="records-list-item" v-for="(item, index) in list" :key="index" @click="jumpPage(item.url)">{{ item.name }}</view>
 		</view>
 	</view>
 </template>
@@ -10,11 +10,19 @@
 	export default {
 		data() {
 			return {
-				list: ['运营概况', '统计报表', '运营分析']
+				list: [
+					{ name: '运营概况', url: 'pages/operationOverview/operationOverviewModel/operationOverviewModel' },
+					{ name: '统计报表', url: 'pages/operationOverview/statisticalReport/statisticalReport' },
+					{ name: '运营分析', url: 'pages/operationOverview/operationalAnalysis/operationalAnalysis' }
+				]
 			}
 		},
 		methods: {
-			
+			jumpPage(url) {
+				uni.$u.route({
+					url
+				})
+			}
 		}
 	}
 </script>

+ 22 - 0
pages/operationOverview/operationOverviewModel/operationOverviewModel.vue

@@ -0,0 +1,22 @@
+<template>
+	<view>
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+
+<style>
+
+</style>

+ 22 - 0
pages/operationOverview/operationalAnalysis/operationalAnalysis.vue

@@ -0,0 +1,22 @@
+<template>
+	<view>
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+
+<style>
+
+</style>

+ 22 - 0
pages/operationOverview/statisticalReport/statisticalReport.vue

@@ -0,0 +1,22 @@
+<template>
+	<view>
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+
+<style>
+
+</style>