123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /* @var $this \yii\web\View */
- /* @var $content string */
- use yii\helpers\Html;
- use frontend\assets\AppAsset;
- AppAsset::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, initial-scale=1,maximum-scale=1, user-scalable=no">
- <?= Html::csrfMetaTags() ?>
- <title><?= Html::encode(Yii::$app->params['sitetitle']) ?></title>
- <?php $this->head() ?>
- </head>
- <body>
- <script>
- // wx.config({
- // debug: true,
- // appId: '<?php //echo Yii::$app->params['wechat']['appID'] ?>//', // 必填,公众号的唯一标识
- // timestamp:<?php //echo $timestamp?>//, // 必填,生成签名的
- // nonceStr: '<?php //echo $noncestr; ?>//', // 必填,生成签名的
- // signature: '<?php //echo $wechat->getsignature($noncestr,$timestamp,Yii::$app->request->hostInfo.Yii::$app->request->getUrl());?>//',
- // jsApiList: ['onMenuShareTimeline','onMenuShareAppMessage','hideOptionMenu','chooseImage','previewImage','uploadImage','downloadImage','showMenuItems','startRecord', 'stopRecord', 'onVoiceRecordEnd', 'playVoice', 'pauseVoice', 'stopVoice', 'onVoicePlayEnd', 'uploadVoice']
- // });
- // wx.ready(function() {
- // wx.showMenuItems({
- // menuList: ["menuItem:favorite"] // 要显示的菜单项,所有menu项见附录3
- // });
- // wx.hideOptionMenu();
- // });
- </script>
- <?php $this->beginBody() ?>
- <?= $content ?>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|