12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2017/3/16
- * Time: 15:58
- */
- use yii\widgets\Breadcrumbs;
- \company\assets\IframeAsset::register($this);
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title></title>
- <?php $this->head() ?>
- </head>
- <body class="gray-bg">
- <?php $this->beginBody() ?>
- <?php if(Yii::$app->getSession()->hasFlash('success')): ?>
- <script>
- // Zepto.alert('<?//=Yii::$app->session->getFlash('success');?>//');
- swal("", "<?=Yii::$app->session->getFlash('success');?>", "success");
- </script>
- <?php endif;?>
- <?php if(Yii::$app->getSession()->hasFlash('error')): ?>
- <script>
- swal("警告", "<?=Yii::$app->session->getFlash('error');?>", "error");
- </script>
- <?php endif;?>
- <div class="wrapper wrapper-content animated fadeInRight">
- <div class="row">
- <div style="background-color:#f3f3f4;margin: 10px">
- <?= Breadcrumbs::widget([
- 'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
- ]) ?>
- </div>
- <?=$content;?>
- </div>
- </div>
- <?php $this->endBody();?>
- </body>
- </html>
- <?php $this->endPage() ?>
|