toolbar-template.php
994 Bytes
<?php
use yii\helpers\Url;
$baseUrl = Url::base(true);
?>
<style>
.mytoolbar {background:#fff;}
.mytoolbar .toolbar-inner{background:#fff;}
.mytoolbar span.tabbar-label{font-size: 1rem;}
.mytoolbar a.active{color:#FF8728}
.mytoolbar, .mytoolbar a{color:#7C7A7A}
</style>
<div class="toolbar tabbar mytoolbar">
<div class="toolbar-inner">
<a href="javascript:window.location.replace('<?=$baseUrl?>/user/#about')" class="tab-link <?php if('about' == $active){echo "active";}?>"> <span class="tabbar-label">关于我们</span></a>
<a href="javascript:window.location.replace('<?=$baseUrl?>/user/#regulation')" class="tab-link <?php if('regulation' == $active){echo "active";}?>"><span class="tabbar-label">维修流程标准</span></a>
<a href="javascript:window.location.href = '<?=$baseUrl?>/order/#index'" class="tab-link <?php if('order' == $active){echo "active";}?>"> <span class="tabbar-label">维修管理</span></a>
</div>
</div>