12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Created by PhpStorm.
- * User: xiaofeng
- * Date: 2018/4/26
- * Time: 上午11:11
- */
- use mobile\assets\AppAsset;
- use yii\widgets\LinkPager;
- $this->title = '联系我们';
- ?>
- <style>
- body{
- background: #fff;
- }
- .puic_wid{
- width: 92%;
- margin: 0 auto;
- line-height: 30px;
- }
- </style>
- <?php $this->beginContent('@app/views/public/nav.php'); ?>
- <?php $this->endContent(); ?>
- <!-- <div class="y_puicnav_top puic_wid">
- <a href="/">首页</a> > <a href="javascript:;">联系我们</a>
- </div> -->
- <div style="height:30px;"></div>
- <div class="puic_wid">
- <?= $model['contact'] ?>
- </div>
|