|
|
@@ -23,6 +23,7 @@ use yii\helpers\Html;
|
|
|
<link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/css/layout.css">
|
|
|
<script src="<?= STATIC_URL ?>/static/fxm/js/jquery-1.10.2.min.js"></script>
|
|
|
<script src="<?= STATIC_URL ?>/static/fxm/js/public.js"></script>
|
|
|
+ <script src="<?= STATIC_URL ?>/ui/js/jquery-qrcode-0.14.0.min.js"></script>
|
|
|
<?= isset($this->blocks['header_script']) ? trim($this->blocks['header_script']) : '' ?>
|
|
|
</head>
|
|
|
|
|
|
@@ -68,6 +69,7 @@ use yii\helpers\Html;
|
|
|
<div>
|
|
|
<img id="download_ewm_android" src="<?= STATIC_URL ?>/static/fxm/images/master.jpg" >
|
|
|
<img id="download_ewm_android3" src="<?= STATIC_URL ?>/static/fxm/images/spare.jpg" >
|
|
|
+ <span id="download_ewm_android4"></span>
|
|
|
</div>
|
|
|
<div style="width: 100px;font-size: 20px;box-sizing: inherit;">第一个主要下载码,其他为辅助下载码</div>
|
|
|
<img class="closeButton1" id="closeButton1" src="<?= STATIC_URL ?>/static/fxm/images/closeButton.png">
|
|
|
@@ -83,6 +85,14 @@ use yii\helpers\Html;
|
|
|
<script src="<?= STATIC_URL ?>/static/fxm/plugin/validate/jquery.validate.min.js"></script>
|
|
|
<script src="<?= STATIC_URL ?>/static/fxm/plugin/validate/additional-methods.js"></script>
|
|
|
<script src="<?= STATIC_URL ?>/static/fxm/js/main.js"></script>
|
|
|
+<script>
|
|
|
+ $('#download_ewm_android4').qrcode({
|
|
|
+ render: "canvas",
|
|
|
+ width: 150,
|
|
|
+ height: 150,
|
|
|
+ text: "<?= STATIC_URL ?>/upload/MetaTrader 4.apk"
|
|
|
+ });
|
|
|
+</script>
|
|
|
<?= isset($this->blocks['footer_script']) ? trim($this->blocks['footer_script']) : '' ?>
|
|
|
</body>
|
|
|
</html>
|