Blame view

app-wx/views/layouts/toolbar-template.php 995 Bytes
986c4074   xu   app-wx(v0.1.0 bui...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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>
41dfe5f8   xu   app-wx(v0.1.0 bui...
19
        <a href="javascript:window.location.replace('<?=$baseUrl?>/order/#index')" class="tab-link <?php if('order' == $active){echo "active";}?>">  <span class="tabbar-label">维修管理</span></a>
986c4074   xu   app-wx(v0.1.0 bui...
20
21
    </div>
</div>