diff --git a/fir_client/public/config.js b/fir_client/public/config.js index 9995ddf..2629166 100644 --- a/fir_client/public/config.js +++ b/fir_client/public/config.js @@ -1,3 +1,15 @@ window.g = { baseUrl: 'https://fly.harmonygames.cn', + footer:{ + copyright:'Copyright © 2017-2020 第九系艾文 版权所有.', + ipcBeiAn:{ + url:'https://beian.miit.gov.cn', + text:'豫ICP备15004336号', + }, + gongAnBeiAn:{ + url:'http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=41142202000049', + text:'豫公网安备 41142202000049号', + }, + } + }; \ No newline at end of file diff --git a/fir_client/src/assets/beianlogo.png b/fir_client/src/assets/beianlogo.png new file mode 100644 index 0000000..9f76394 Binary files /dev/null and b/fir_client/src/assets/beianlogo.png differ diff --git a/fir_client/src/components/FirDownload.vue b/fir_client/src/components/FirDownload.vue index d0e26fe..defad5d 100644 --- a/fir_client/src/components/FirDownload.vue +++ b/fir_client/src/components/FirDownload.vue @@ -17,7 +17,7 @@ - +
@@ -48,6 +48,11 @@

扫描二维码下载
或用手机浏览器输入这个网址:{{ full_url }}

+
+

+ 应用描述:{{ currentappinfo.description }} +

+

{{ mcurrentappinfo.app_version }}(Build {{ mcurrentappinfo.build_version }})- {{ mcurrentappinfo.binary_size }}

@@ -78,7 +83,7 @@ @@ -166,6 +171,10 @@

更新日志

{{ mcurrentappinfo.changelog }}
+
+

应用描述

+ {{ currentappinfo.description }} +
@@ -327,9 +336,9 @@ } getShortAppinfo(data => { if (data.code === 1000) { - if (!this.auto_redircet_url(data.domain_name)) { - return; - } + // if (!this.auto_redircet_url(data.domain_name)) { + // return; + // } this.udid = data.udid; if (!data.data.master_release.release_id) { this.$message({ diff --git a/fir_client/src/components/FirFooter.vue b/fir_client/src/components/FirFooter.vue index 54bc1ed..8bc700c 100644 --- a/fir_client/src/components/FirFooter.vue +++ b/fir_client/src/components/FirFooter.vue @@ -4,21 +4,28 @@
- Copyright © 2017-2020 第九系艾文  版权所有. + {{ footer.copyright }}
- - - 豫公网安备 41142202000049号 + + + + {{ footer.gongAnBeiAn.text }} +
-
- 豫ICP备15004336号 +
+ {{ footer.ipcBeiAn.text }} +
@@ -34,13 +41,21 @@ name: "FirFooter", data() { return { - + footer: { + copyright: '', + ipcBeiAn: { + url: '', + text: '', + }, + gongAnBeiAn: { + url: '', + text: '', + }, + } } - }, methods: { - - }, created() { - }, watch: { - + }, methods: {}, created() { + }, mounted() { + this.footer = window.g.footer; } } @@ -59,5 +74,4 @@ } - diff --git a/fir_client/src/components/ShortDownload.vue b/fir_client/src/components/ShortDownload.vue index e5c34ff..9769176 100644 --- a/fir_client/src/components/ShortDownload.vue +++ b/fir_client/src/components/ShortDownload.vue @@ -17,7 +17,7 @@
-
+
@@ -48,6 +48,11 @@

扫描二维码下载
或用手机浏览器输入这个网址:{{ full_url }}

+
+

+ 应用描述:{{ currentappinfo.description }} +

+

{{ mcurrentappinfo.app_version }}(Build {{ mcurrentappinfo.build_version }})- {{ mcurrentappinfo.binary_size }}

@@ -78,7 +83,7 @@ @@ -160,6 +165,10 @@

更新日志

{{ mcurrentappinfo.changelog }}
+
+

应用描述

+ {{ currentappinfo.description }} +
diff --git a/fir_client/src/main.js b/fir_client/src/main.js index 15ac995..0fff95c 100644 --- a/fir_client/src/main.js +++ b/fir_client/src/main.js @@ -93,7 +93,8 @@ import { Timeline, TimelineItem, Card, - Notification + Notification, + Footer } from "element-ui"; Vue.use(Progress); @@ -141,6 +142,7 @@ Vue.use(Loading); Vue.use(Tag); Vue.use(Tooltip); Vue.use(Switch); +Vue.use(Footer); Vue.prototype.$message = Message; Vue.prototype.$notify = Notification; Vue.prototype.$loading = Loading.service;