Browse Source

新增后台运行保护协议

DESKTOP-2S67K1S\31396 2 years atrás
parent
commit
f500318436
2 changed files with 20 additions and 0 deletions
  1. 7 0
      src/pages.json
  2. 13 0
      src/pages/backgrounder/index.vue

+ 7 - 0
src/pages.json

@@ -152,6 +152,13 @@
 			"style": {
 				"navigationStyle": "custom"
 			}
+		},
+		{
+			// 后台运行保护协议
+			"path": "pages/backgrounder/index",
+			"style": {
+				"navigationStyle": "custom"
+			}
 		}
 	]
 }

+ 13 - 0
src/pages/backgrounder/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <div class="app-container"></div>
+</template>
+
+<script>
+export default {
+  created() {
+    window.location.href = "https://ohplay.radio1964.net/guide"
+  }
+}
+</script>
+
+<style lang="scss" scoped></style>