Merge branch 'super_signature'

pull/1/head
xiaoyu 4 years ago
commit bbdb6bb1d4
  1. 7
      fir_client/src/components/FirDownload.vue
  2. 8
      fir_download/src/components/FirDownload.vue

@ -76,7 +76,7 @@
<div v-else>
<div class="actions type-ios">
<div><p>正在安装请按 Home 键在桌面查看</p>
<p>
<p v-if="!this.currentappinfo.issupersign">
<button @click="gomobileaction">
<el-link icon="el-icon-loadings" type="primary"
:underline="false">
@ -239,6 +239,11 @@
if (this.agent !== '') {
let download_url = res.data.download_url;
this.downloadurl = "itms-services://?action=download-manifest&url=" + encodeURIComponent(download_url);
// eslint-disable-next-line no-unused-vars
this.timmer = setTimeout(data => {
this.gomobile = false;
}, 5000);
}
} else {
if (this.agent !== '') {

@ -75,8 +75,8 @@
<div v-else>
<div class="actions type-ios">
<div><p>正在安装请按 Home 键在桌面查看</p>
<p>
<button @click="gomobileaction">
<p v-if="!this.currentappinfo.issupersign">
<button @click="gomobileaction">
<a icon="el-icon-loadings" type="primary"
:underline="false">
立即信任
@ -234,6 +234,10 @@
if (this.agent !== '') {
let download_url = res.data.download_url;
this.downloadurl = "itms-services://?action=download-manifest&url=" + encodeURIComponent(download_url);
// eslint-disable-next-line no-unused-vars
this.timmer = setTimeout(data => {
this.gomobile = false;
}, 5000);
}
} else {
if (this.agent !== '') {

Loading…
Cancel
Save