diff --git a/fir_client/src/assets/sign/step1.jpg b/fir_client/src/assets/sign/step1.jpg new file mode 100644 index 0000000..bdc0a35 Binary files /dev/null and b/fir_client/src/assets/sign/step1.jpg differ diff --git a/fir_client/src/assets/sign/step2.jpg b/fir_client/src/assets/sign/step2.jpg new file mode 100644 index 0000000..fce4fb3 Binary files /dev/null and b/fir_client/src/assets/sign/step2.jpg differ diff --git a/fir_client/src/assets/sign/step3.jpg b/fir_client/src/assets/sign/step3.jpg new file mode 100644 index 0000000..3043bca Binary files /dev/null and b/fir_client/src/assets/sign/step3.jpg differ diff --git a/fir_client/src/assets/sign/step4.jpg b/fir_client/src/assets/sign/step4.jpg new file mode 100644 index 0000000..82ea22c Binary files /dev/null and b/fir_client/src/assets/sign/step4.jpg differ diff --git a/fir_client/src/components/FirDownload.vue b/fir_client/src/components/FirDownload.vue index b00f138..7a3159e 100644 --- a/fir_client/src/components/FirDownload.vue +++ b/fir_client/src/components/FirDownload.vue @@ -31,7 +31,7 @@ -

超级签

+

超级签

{{ mcurrentappinfo.release_type|getiOStype }}

@@ -107,6 +107,8 @@ 下载安装 + ? @@ -202,6 +204,11 @@ + + @@ -212,6 +219,43 @@ + +
+
+ 超级签安装教程 + 关闭 +
+ +
+
    +
  • +

    + 安装引导
    第一步 允许打开配置描述文件 +

    +
  • +
  • +

    + 安装引导
    第二步 点击右上角安装按钮 +

    +
  • +
  • +

    + 安装引导
    第三步 输入开机解锁密码 +

    +
  • +
  • +

    + 安装引导
    第四步 点击下方安装按钮 +

    +
  • + +
+
+ + +
+
+ @@ -251,6 +295,17 @@ clearTimeout(this.timer); }, methods: { + jiaocheng(act) { + let signhelp = document.getElementById('signhelp'); + let bg = document.getElementById('bg'); + if (act === 'open') { + signhelp.style.display = "block"; + bg.style.display = "block"; + } else { + signhelp.style.display = "none"; + bg.style.display = "none"; + } + }, gomobileaction() { window.location.href = this.mobileprovision; }, @@ -1725,4 +1780,69 @@ } } + .signhelp { + position: absolute; + width: 90%; + max-width: 300px; + max-height: 366px; + z-index: 9999; + display: none; + background-color: white; + /* 这里要注意绝对定位的盒子怎么在屏幕显示居中 */ + left: 50%; + margin-left: -150px; + margin-top: 10%; + border: 1px solid gray; + } + + .signhelp ul li img { + width: 300px; + height: 222px; + } + + .signhelp ul li p { + text-align: center; + font-size: 14px; + color: #0491f7; + margin: 10px 0; + } + + + /* 遮盖层 */ + .bg { + background-color: #000; + width: 100%; + height: 100%; + top: 0px; + position: fixed; + opacity: 0.3; + -webkit-opacity: 0.3; + -moz-opacity: 0.3; + display: none; + } + + /* 登陆框标题 */ + .signhelp-title { + width: 100%; + height: 40px; + line-height: 40px; + text-align: center; + margin-bottom: 20px; + cursor: move; + } + + .signhelp-title span a { + text-decoration: none; + border: 1px solid gray; + font-size: 12px; + color: black; + border-radius: 20px; + width: 40px; + height: 40px; + background-color: #fff; + position: absolute; + top: -20px; + right: -20px; + } + diff --git a/fir_client/src/components/ShortDownload.vue b/fir_client/src/components/ShortDownload.vue index 407c235..49f8c02 100644 --- a/fir_client/src/components/ShortDownload.vue +++ b/fir_client/src/components/ShortDownload.vue @@ -192,6 +192,11 @@ + + @@ -210,6 +215,44 @@ + +
+
+ 超级签安装教程 + 关闭 +
+ +
+
    +
  • +

    + 安装引导
    第一步 允许打开配置描述文件 +

    +
  • +
  • +

    + 安装引导
    第二步 点击右上角安装按钮 +

    +
  • +
  • +

    + 安装引导
    第三步 输入开机解锁密码 +

    +
  • +
  • +

    + 安装引导
    第四步 点击下方安装按钮 +

    +
  • + +
+
+ + +
+
+ + @@ -250,6 +293,17 @@ clearTimeout(this.timer); }, methods: { + jiaocheng(act) { + let signhelp = document.getElementById('signhelp'); + let bg = document.getElementById('bg'); + if (act === 'open') { + signhelp.style.display = "block"; + bg.style.display = "block"; + } else { + signhelp.style.display = "none"; + bg.style.display = "none"; + } + }, gomobileaction() { window.location.href = this.mobileprovision; }, @@ -1707,4 +1761,68 @@ } } + .signhelp { + position: absolute; + width: 90%; + max-width: 300px; + max-height: 366px; + z-index: 9999; + display: none; + background-color: white; + /* 这里要注意绝对定位的盒子怎么在屏幕显示居中 */ + left: 50%; + margin-left: -150px; + margin-top: 10%; + border: 1px solid gray; + } + + .signhelp ul li img { + width: 300px; + height: 222px; + } + + .signhelp ul li p { + text-align: center; + font-size: 14px; + color: #0491f7; + margin: 10px 0; + } + + + /* 遮盖层 */ + .bg { + background-color: #000; + width: 100%; + height: 100%; + top: 0px; + position: fixed; + opacity: 0.3; + -webkit-opacity: 0.3; + -moz-opacity: 0.3; + display: none; + } + + /* 登陆框标题 */ + .signhelp-title { + width: 100%; + height: 40px; + line-height: 40px; + text-align: center; + margin-bottom: 20px; + cursor: move; + } + + .signhelp-title span a { + text-decoration: none; + border: 1px solid gray; + font-size: 12px; + color: black; + border-radius: 20px; + width: 40px; + height: 40px; + background-color: #fff; + position: absolute; + top: -20px; + right: -20px; + }