main.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /* @var $this \yii\web\View */
  3. /* @var $content string */
  4. use yii\helpers\Html;
  5. //YiiAsset::register($this);
  6. ?>
  7. <?php $this->beginPage() ?>
  8. <!DOCTYPE html>
  9. <html lang="<?= Yii::$app->language ?>">
  10. <head>
  11. <meta charset="<?= Yii::$app->charset ?>">
  12. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  14. <meta content=always name=referrer>
  15. <title><?= Html::encode($this->title) ?></title>
  16. <meta name="keywords" content=""/>
  17. <meta name="description" content=""/>
  18. <!-- <link rel="stylesheet" href="//at.alicdn.com/t/font_547814_mut4w5pjnnhlg14i.css">-->
  19. <link rel="shortcut icon" href="<?=STATIC_URL ?>/static/fxm/images/favicon.ico" type="image/x-icon" />
  20. <link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/css/font/iconfont.css">
  21. <link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/css/layout.css">
  22. <script src="<?= STATIC_URL ?>/static/fxm/js/jquery-1.10.2.min.js"></script>
  23. <script src="<?= STATIC_URL ?>/static/fxm/js/public.js"></script>
  24. <?= isset($this->blocks['header_script']) ? trim($this->blocks['header_script']) : '' ?>
  25. </head>
  26. <body class="header-fixed">
  27. <div class="header animated">
  28. <?= $this->render('/common/_header.php') ?>
  29. </div>
  30. <?php $this->beginBody() ?>
  31. <?= $content ?>
  32. <?php $this->endBody() ?>
  33. <div class="footer">
  34. <?= $this->render('/common/_footer.php') ?>
  35. </div>
  36. <!-- 浮动按钮 -->
  37. <div class="sideNav">
  38. <?= $this->render('/common/_sidebar.php') ?>
  39. </div>
  40. <!-- 苹果下载弹框开始 -->
  41. <div class="mobile-download" id="mobile-download" style="display: none;">
  42. <div class="iPhone_">
  43. <div>
  44. <img id="download_ewm_iosend" src="<?= STATIC_URL ?>/static/fxm/images/appledownload.jpg" style="width:180px !important;margin-right:20px;margin-top:10px;">
  45. <!-- <img id="download_ewm_iosend1" src="<?= STATIC_URL ?>/static/fxm/images/appledownload1.jpg" style="width:200px !important;margin-right:20px;"> -->
  46. </div>
  47. <div style="width: 100px;font-size: 20px;box-sizing: inherit;">苹果的主要下载码</div>
  48. <img class="closeButton" id="closeButton" src="<?= STATIC_URL ?>/static/fxm/images/closeButton.png">
  49. </div>
  50. </div>
  51. <!-- 苹果下载弹框结束 -->
  52. <!-- 安卓下载弹框开始 -->
  53. <div class="mobile1-download" id="mobile1-download" style="display: none;">
  54. <div class="iPhone_">
  55. <div>
  56. <img id="download_ewm_android" src="<?= STATIC_URL ?>/static/fxm/images/download.jpg" style="width:180px !important;margin-right:20px;margin-top:10px;">
  57. <img id="download_ewm_android3" src="<?= STATIC_URL ?>/static/fxm/images/download3.jpg" style="width:200px !important;margin-right:20px;">
  58. <img id="download_ewm_android1" src="<?= STATIC_URL ?>/static/fxm/images/download1.jpg" style="width:180px !important;margin-right:20px;margin-top:10px;">
  59. <img id="download_ewm_android2" src="<?= STATIC_URL ?>/static/fxm/images/download2.jpg" style="width:200px !important;margin-right:20px;">
  60. </div>
  61. <div style="width: 100px;font-size: 20px;box-sizing: inherit;">第一个为主要下载码,其他三个为辅助下载码</div>
  62. <img class="closeButton1" id="closeButton1" src="<?= STATIC_URL ?>/static/fxm/images/closeButton.png">
  63. </div>
  64. </div>
  65. <!-- 安卓下载弹框结束 -->
  66. <link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/plugin/owlcarousel2/owl.carousel.min.css">
  67. <link rel="stylesheet" href="<?= STATIC_URL ?>/static/fxm/plugin/owlcarousel2/owl.theme.default.css">
  68. <script src="<?= STATIC_URL ?>/static/fxm/plugin/scrollreveal.min.js"></script>
  69. <script src="<?= STATIC_URL ?>/static/fxm/plugin/owlcarousel2/owl.carousel.min.js"></script>
  70. <script src="<?= STATIC_URL ?>/static/fxm/plugin/validate/jquery.validate.min.js"></script>
  71. <script src="<?= STATIC_URL ?>/static/fxm/plugin/validate/additional-methods.js"></script>
  72. <script src="<?= STATIC_URL ?>/static/fxm/js/main.js"></script>
  73. <?= isset($this->blocks['footer_script']) ? trim($this->blocks['footer_script']) : '' ?>
  74. </body>
  75. </html>
  76. <?php $this->endPage() ?>