| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- /* @var $this \yii\web\View */
- /* @var $content string */
- use yii\helpers\Html;
- //YiiAsset::register($this);
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="<?= Yii::$app->language ?>">
- <head>
- <meta charset="<?= Yii::$app->charset ?>">
- <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta content=always name=referrer>
- <title><?= Html::encode($this->title) ?></title>
- <meta name="keywords" content=""/>
- <meta name="description" content=""/>
- <!-- <link rel="stylesheet" href="//at.alicdn.com/t/font_547814_mut4w5pjnnhlg14i.css">-->
- <link rel="shortcut icon" href="<?=STATIC_URL ?>/static/fxm/images/favicon.ico" type="image/x-icon" />
- <link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/css/font/iconfont.css">
- <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>
- <?= isset($this->blocks['header_script']) ? trim($this->blocks['header_script']) : '' ?>
- </head>
- <body class="header-fixed">
- <div class="header animated">
- <?= $this->render('/common/_header.php') ?>
- </div>
- <?php $this->beginBody() ?>
- <?= $content ?>
- <?php $this->endBody() ?>
- <div class="footer">
- <?= $this->render('/common/_footer.php') ?>
- </div>
- <!-- 浮动按钮 -->
- <div class="sideNav">
- <?= $this->render('/common/_sidebar.php') ?>
- </div>
- <!-- 苹果下载弹框开始 -->
- <div class="mobile-download" id="mobile-download" style="display: none;">
- <div class="iPhone_">
- <div>
- <img id="download_ewm_iosend" src="<?= STATIC_URL ?>/static/fxm/images/appledownload.jpg" style="width:180px !important;margin-right:20px;margin-top:10px;">
- <!-- <img id="download_ewm_iosend1" src="<?= STATIC_URL ?>/static/fxm/images/appledownload1.jpg" style="width:200px !important;margin-right:20px;"> -->
- </div>
- <div style="width: 100px;font-size: 20px;box-sizing: inherit;">苹果的主要下载码</div>
- <img class="closeButton" id="closeButton" src="<?= STATIC_URL ?>/static/fxm/images/closeButton.png">
- </div>
- </div>
- <!-- 苹果下载弹框结束 -->
- <!-- 安卓下载弹框开始 -->
- <div class="mobile1-download" id="mobile1-download" style="display: none;">
- <div class="iPhone_">
- <div>
- <img id="download_ewm_android" src="<?= STATIC_URL ?>/static/fxm/images/download.jpg" style="width:180px !important;margin-right:20px;margin-top:10px;">
- <img id="download_ewm_android3" src="<?= STATIC_URL ?>/static/fxm/images/download3.jpg" style="width:200px !important;margin-right:20px;">
- <img id="download_ewm_android1" src="<?= STATIC_URL ?>/static/fxm/images/download1.jpg" style="width:180px !important;margin-right:20px;margin-top:10px;">
- <img id="download_ewm_android2" src="<?= STATIC_URL ?>/static/fxm/images/download2.jpg" style="width:200px !important;margin-right:20px;">
- </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">
- </div>
- </div>
- <!-- 安卓下载弹框结束 -->
- <link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/plugin/owlcarousel2/owl.carousel.min.css">
- <link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/plugin/owlcarousel2/owl.theme.default.css">
- <script src="<?= STATIC_URL ?>/static/fxm/plugin/scrollreveal.min.js"></script>
- <script src="<?= STATIC_URL ?>/static/fxm/plugin/owlcarousel2/owl.carousel.min.js"></script>
- <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>
- <?= isset($this->blocks['footer_script']) ? trim($this->blocks['footer_script']) : '' ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|