Ver Fonte

消息,开通会员。系统管理页

hjr há 1 mês atrás
pai
commit
8716e9126f

+ 43 - 0
pages.json

@@ -92,6 +92,49 @@
 			"style": {
 				"navigationBarTitleText": "实名认证"
 			}
+		},
+		{
+			"path": "pages/myMessage/index",
+			"style": {
+				"navigationBarTitleText": "我的消息"
+			}
+		},
+		{
+			"path": "pages/myMessage/chat",
+			"style": {
+				"navigationBarTitleText": "聊天"
+				// "navigationStyle": "custom",
+			}
+		},
+		{
+			"path": "pages/activateVIP/index",
+			"style": {
+				"navigationBarTitleText": "开通会员"
+			}
+		},
+		{
+			"path": "pages/setting/index",
+			"style": {
+				"navigationBarTitleText": "系统设置"
+			}
+		},
+		{
+			"path": "pages/setting/accountSecurity",
+			"style": {
+				"navigationBarTitleText": "账户安全"
+			}
+		},
+		{
+			"path": "pages/setting/changePassword",
+			"style": {
+				"navigationBarTitleText": "修改密码"
+			}
+		},
+		{
+			"path": "pages/setting/retrievePassword",
+			"style": {
+				"navigationBarTitleText": "找回密码"
+			}
 		}
 	],
 	"globalStyle": {

+ 25 - 0
pages/activateVIP/index.vue

@@ -0,0 +1,25 @@
+<template>
+	<view class="content">
+		开通会员
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	
+</style>

+ 25 - 0
pages/myMessage/chat.vue

@@ -0,0 +1,25 @@
+<template>
+	<view class="content">
+		消息页面
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	
+</style>

+ 49 - 0
pages/myMessage/index.vue

@@ -0,0 +1,49 @@
+<template>
+	<view class="content">
+		我的消息
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style>
+	.content {
+		display: flex;
+		flex-direction: column;
+		align-items: center;
+		justify-content: center;
+	}
+
+	.logo {
+		height: 200rpx;
+		width: 200rpx;
+		margin-top: 200rpx;
+		margin-left: auto;
+		margin-right: auto;
+		margin-bottom: 50rpx;
+	}
+
+	.text-area {
+		display: flex;
+		justify-content: center;
+	}
+
+	.title {
+		font-size: 36rpx;
+		color: #8f8f94;
+	}
+</style>

+ 25 - 0
pages/setting/accountSecurity.vue

@@ -0,0 +1,25 @@
+<template>
+	<view class="content">
+		账户安全
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	
+</style>

+ 25 - 0
pages/setting/changePassword.vue

@@ -0,0 +1,25 @@
+<template>
+	<view class="content">
+		修改密码
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	
+</style>

+ 25 - 0
pages/setting/index.vue

@@ -0,0 +1,25 @@
+<template>
+	<view class="content">
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	
+</style>

+ 25 - 0
pages/setting/retrievePassword.vue

@@ -0,0 +1,25 @@
+<template>
+	<view class="content">
+		找回密码
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		onLoad() {
+
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	
+</style>