DESKTOP-SVI9JE1\muzen 1 год назад
Родитель
Сommit
d9743d5854
2 измененных файлов с 49 добавлено и 0 удалено
  1. 25 0
      src/pages.json
  2. 24 0
      src/pages/warning/index.vue

+ 25 - 0
src/pages.json

@@ -187,6 +187,7 @@
 			// 流量充值
 			"path": "pages/pay/index",
 			"style": {
+				"navigationBarTitleText": "流量充值",
 				"navigationStyle": "custom"
 			}
 		},
@@ -194,9 +195,33 @@
 			// 开通记录
 			"path": "pages/pay/detail",
 			"style": {
+				"navigationBarTitleText": "开通记录",
 				"navigationStyle": "custom",
 				"onReachBottomDistance": 50
 			}
+		},
+		{
+			// 通用提示
+			"path": "pages/warning/index",
+			"style": {
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			// 售后服务
+			"path": "pages/service/index",
+			"style": {
+				"navigationBarTitleText": "售后服务",
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			// 维修服务
+			"path": "pages/service/repair",
+			"style": {
+				"navigationBarTitleText": "维修服务",
+				"navigationStyle": "custom"
+			}
 		}
 	]
 }

+ 24 - 0
src/pages/warning/index.vue

@@ -0,0 +1,24 @@
+<template>
+  <view class='app-container' flex center>
+    {{ msg }}
+  </view>
+</template>
+
+<script>
+export default {
+  data() {
+    return  {
+      msg: ''
+    }
+  },
+  onLoad(e) {
+    this.msg = e.msg
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.app-container{
+  height: 100%;
+}
+</style>