You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
|
|
<style>
|
|
.desktop-header {
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
width: 100%;
|
|
height: 60px;
|
|
background: inherit;
|
|
background-color: rgba(3, 179, 178, 1);
|
|
text-align: center;
|
|
}
|
|
.desktop-header .top-menu-item {
|
|
color: #ffffff;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
border-bottom: 3px solid rgba(3, 179, 178, 1);
|
|
display: inline-block;
|
|
line-height: 30px;
|
|
cursor: pointer;
|
|
margin: 15px 40px 0;
|
|
}
|
|
.desktop-header .top-menu-item.active {
|
|
border-bottom: 3px solid #ffffff;
|
|
}
|
|
</style>
|
|
<div class="desktop-header J_msodHeaderMenu">
|
|
<div class="top-menu-item J_changeTab" data-tab="purchase">采购下单</div>
|
|
|
|
<?php if (in_array('chat', $enableViews)) {?>
|
|
<div class="top-menu-item J_changeTab" data-tab="chat">客服平台</div>
|
|
<?php }?>
|
|
<?php if (in_array('mms', $enableViews)) {?>
|
|
<div class="top-menu-item J_changeTab" data-tab="mms">管理后台</div>
|
|
<?php }?>
|
|
</div>
|
|
<?php foreach ($enableViews as $view) {
|
|
echo ZcHtml::hiddenInput('', $view, ['class' => 'J_initView']);
|
|
}?>
|