diff --git a/fir_client/src/components/FirDownload.vue b/fir_client/src/components/FirDownload.vue index 49666e0..b20b431 100644 --- a/fir_client/src/components/FirDownload.vue +++ b/fir_client/src/components/FirDownload.vue @@ -178,6 +178,21 @@ + + + +
+

应用截图

+
+ +
+ +
+ @@ -202,6 +217,7 @@ name: "FirDownload", data() { return { + imagelist: [], currentappinfo: {}, iscomboappinfo: {}, mcurrentappinfo: {}, @@ -450,6 +466,11 @@ window.location.href = this.mcurrentappinfo.binary_url } } + if (this.currentappinfo.screenshots && this.currentappinfo.screenshots.length > 0) { + for (let i = 0; i < this.currentappinfo.screenshots.length; i++) { + this.imagelist.push(this.currentappinfo.screenshots[i].url) + } + } } else { if (data.msg) { document.title = data.msg; diff --git a/fir_client/src/components/ShortDownload.vue b/fir_client/src/components/ShortDownload.vue index 9d405a3..8bbd07f 100644 --- a/fir_client/src/components/ShortDownload.vue +++ b/fir_client/src/components/ShortDownload.vue @@ -172,6 +172,18 @@ +
+
+

应用截图

+
+ +
+ +
@@ -204,6 +216,7 @@ name: "ShortDownload", data() { return { + imagelist: [], currentappinfo: {}, iscomboappinfo: {}, mcurrentappinfo: {}, @@ -440,7 +453,11 @@ window.location.href = this.mcurrentappinfo.binary_url } } - + if (this.currentappinfo.screenshots && this.currentappinfo.screenshots.length > 0) { + for (let i = 0; i < this.currentappinfo.screenshots.length; i++) { + this.imagelist.push(this.currentappinfo.screenshots[i].url) + } + } } else { this.iserror = true; if (data.msg) {