Blame view

app-wx/modules/order/views/layouts/main.php 1.1 KB
973b4e0b   曹明   1.添加订单服务评价页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

use app\wx\assets\AppAsset;
use yii\helpers\Html;

AppAsset::register($this);

$site = $this->params['site'];

$this->title = \yii::$app->name;
$assets = $this->getAssetManager();
$asset = $assets->getBundle('app\wx\assets\AppAsset');
?>
<?php $this->beginPage() ?>
<!DOCTYPE HTML>

<html lang="<?= \yii::$app->language ?>">
<head>
<meta charset="<?= \yii::$app->charset ?>">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<?= Html::csrfMetaTags() ?>
<title><?= Html::encode($this->title) ?></title>
<script>
    <?=$this->render("@app/views/widgets/js-site", ['site' => $site])?>
</script>
<?php $this->head() ?>
<style>

</style>
</head>
<body>
<?php $this->beginBody() ?>
<?=$content?>
<?php $this->endBody() ?>
</body>
</html>
<?php $this->endPage() ?>