41 lines
1.3 KiB
PHP
Executable File
41 lines
1.3 KiB
PHP
Executable File
<?php
|
|
# @Author: fm453
|
|
# @Date: 2021-12-31T04:43:18+08:00
|
|
# @Last modified by: fm453
|
|
# @Last modified time: 2022-03-11T09:55:56+08:00
|
|
|
|
/* @var $this yii\web\View */
|
|
use yii\helpers\Html;
|
|
use yii\bootstrap\ActiveForm;
|
|
use yii\helpers\Url;
|
|
use yii\widgets\LinkPager;
|
|
use backend\components\Helper;
|
|
|
|
$this->title = '汽车托运入口界面';
|
|
$smsstat = Helper::getSmsStat();
|
|
$attachStat = Helper::getAttachStat();
|
|
?>
|
|
|
|
<div class="wrapper wrapper-content">
|
|
<div class="row">
|
|
<?php foreach($navs as $nav){?>
|
|
<?php $entries = $nav['entries'];?>
|
|
<div class="col-sm-5">
|
|
<div class="ibox float-e-margins">
|
|
<div class="ibox-content">
|
|
<?php foreach($entries as $item){?>
|
|
<a class="btn btn-<?= trim(Html::encode($item['class']))?>" href="<?= trim(Html::encode($item['url']))?>" data-toggle="tooltip" data-placement="top" data-title="<?= trim(Html::encode($item['title']))?>" trigger="hover|focus"><i class="<?= trim(Html::encode($item['icon'])) ?>" ></i> <?= trim(Html::encode($item['name'])) ?></a>
|
|
<?php }?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php }?>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
fm_load()->fm_func('userAgent');
|
|
if(!fmFunc_UA_isMobile()){
|
|
Html::jsFile('@web/js/welcome.min.js?v=1.0.0');
|
|
}
|
|
?>
|