This commit is contained in:
邹景立 2017-02-27 16:39:12 +08:00
parent fa2b8c7533
commit 1c8d8d98a8
4 changed files with 18 additions and 17 deletions

View File

@ -11,8 +11,8 @@
<table class="table table-hover">
<thead>
<tr>
<th class='text-left' style='padding-left:30px'>节点代码</th>
<th class='text-left'>节点名称</th>
<th class='text-left'>节点代码</th>
<th class='text-left'><input data-none-auto="" data-check-target='.auth-check-box' type='checkbox'/> 权限控制</th>
<th class='text-left'><input data-none-auto="" data-check-target='.menu-check-box' type='checkbox'/> 可设为菜单</th>
</tr>
@ -20,11 +20,12 @@
<tbody>
{foreach $nodes as $key=>$vo}
<tr>
<td class='text-left' style='padding-left:30px'>
{$vo.spl}{$vo.node}
<td class="text-left nowrap" style="width:250px">
{$vo.spl} &nbsp;
<input class='layui-input layui-input-inline' style='height:28px;line-height:28px;width:auto' name='title.{$vo.node}' value="{$vo.title}"/>
</td>
<td><input class='layui-input layui-input-inline' style='height:28px;line-height:28px;width:auto' name='title.{$vo.node}' value="{$vo.title}"/></td>
<td class='text-left'>
<td class='text-left' style="width:250px">{$vo.spl}{$vo.node}</td>
<td class='text-left' style="width:100px">
<label>
{if substr_count($vo['node'],'/')==2}
{notempty name='vo.is_auth'}

2
vendor/autoload.php vendored
View File

@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit13ddae34e1afde38f2bf18201da11ec0::getLoader();
return ComposerAutoloaderInit0f78f3de35894d9e5240028ad0745ffe::getLoader();

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit13ddae34e1afde38f2bf18201da11ec0
class ComposerAutoloaderInit0f78f3de35894d9e5240028ad0745ffe
{
private static $loader;
@ -19,15 +19,15 @@ class ComposerAutoloaderInit13ddae34e1afde38f2bf18201da11ec0
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit13ddae34e1afde38f2bf18201da11ec0', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit0f78f3de35894d9e5240028ad0745ffe', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit13ddae34e1afde38f2bf18201da11ec0', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit0f78f3de35894d9e5240028ad0745ffe', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit13ddae34e1afde38f2bf18201da11ec0::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit0f78f3de35894d9e5240028ad0745ffe::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
@ -48,19 +48,19 @@ class ComposerAutoloaderInit13ddae34e1afde38f2bf18201da11ec0
$loader->register(true);
if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit13ddae34e1afde38f2bf18201da11ec0::$files;
$includeFiles = Composer\Autoload\ComposerStaticInit0f78f3de35894d9e5240028ad0745ffe::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire13ddae34e1afde38f2bf18201da11ec0($fileIdentifier, $file);
composerRequire0f78f3de35894d9e5240028ad0745ffe($fileIdentifier, $file);
}
return $loader;
}
}
function composerRequire13ddae34e1afde38f2bf18201da11ec0($fileIdentifier, $file)
function composerRequire0f78f3de35894d9e5240028ad0745ffe($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;

View File

@ -4,7 +4,7 @@
namespace Composer\Autoload;
class ComposerStaticInit13ddae34e1afde38f2bf18201da11ec0
class ComposerStaticInit0f78f3de35894d9e5240028ad0745ffe
{
public static $files = array (
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
@ -273,9 +273,9 @@ class ComposerStaticInit13ddae34e1afde38f2bf18201da11ec0
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit13ddae34e1afde38f2bf18201da11ec0::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit13ddae34e1afde38f2bf18201da11ec0::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit13ddae34e1afde38f2bf18201da11ec0::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit0f78f3de35894d9e5240028ad0745ffe::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit0f78f3de35894d9e5240028ad0745ffe::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit0f78f3de35894d9e5240028ad0745ffe::$classMap;
}, null, ClassLoader::class);
}