You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
691 B
19 lines
691 B
|
|
<?php include $pach . 'public/top.php';?>
|
|
<ul class="nav nav-tabs">
|
|
{if condition="checkPath('auth/role')"}
|
|
<li><a href="<?php echo Url('auth/role')?>">角色管理</a></li>
|
|
{/if}
|
|
{if condition="checkPath('auth/roleAdd')"}
|
|
<li><a href="<?php echo Url('auth/roleAdd')?>">增加角色</a></li>
|
|
{/if}
|
|
<li class="active"><a href="">角色修改</a></li>
|
|
</ul>
|
|
<div class="site-signup">
|
|
<div class="row">
|
|
<form class="form-horizontal" action="<?php echo Url('auth/roleEdit',['id'=>$info['id']])?>" method="post" >
|
|
<?php include $pach.'form/form_role.php';?>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include $pach . 'public/foot.php';?>
|