前端组件调整,剔除无用文件
This commit is contained in:
@@ -41,20 +41,20 @@ $(function(){
|
||||
var resetPwdFlag = "";
|
||||
|
||||
$.table.init({
|
||||
url: "/admin/client/index",
|
||||
createUrl: "/admin/client/add",
|
||||
updateUrl: "/admin/client/edit/id/{id}",
|
||||
removeUrl: "/admin/client/remove",
|
||||
url: "/admin/ad/index",
|
||||
createUrl: "/admin/ad/add",
|
||||
updateUrl: "/admin/ad/edit/id/{id}",
|
||||
removeUrl: "/admin/ad/del",
|
||||
sortName: "id",
|
||||
sortOrder: "desc",
|
||||
modalName: "客户端",
|
||||
modalName: "广告位",
|
||||
columns: [
|
||||
{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'title',
|
||||
title: '客户端名称'
|
||||
title: '广告位名称'
|
||||
},
|
||||
{
|
||||
field: 'appid',
|
||||
@@ -74,6 +74,7 @@ $(function(){
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.openTab(\'广告列表\', \'/admin/ad/lists?id=' + row.id + '\')"><i class="fa fa-edit"></i>广告列表</a> ');
|
||||
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
|
||||
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a> ');
|
||||
return actions.join('');
|
||||
|
||||
@@ -1,48 +1,87 @@
|
||||
{extend name="admin/base"/}
|
||||
{block name="style"}
|
||||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/css/libs/bootstrap-editable.css">
|
||||
{/block}
|
||||
{block name="body"}
|
||||
<div class="main-box no-header clearfix">
|
||||
<div class="box box-primary">
|
||||
<header class="box-header with-border">
|
||||
<h3 class="box-title">{$meta_title|default='新功能'}</h3>
|
||||
<div class="pull-right">
|
||||
<a class="btn btn-success" href="{:url('addad?id='.$id)}"><i class="fa fa-plus-circle fa-lg"></i> 新 增</a>
|
||||
<a class="btn btn-primary" href="{:url('index')}"><i class="fa fa-list fa-lg"></i> 广告位</a>
|
||||
</div>
|
||||
</header>
|
||||
<div class="box-body">
|
||||
<!-- 表格列表 -->
|
||||
<div class="table-responsive clearfix">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="30"><input class="checkbox check-all" type="checkbox"></th>
|
||||
<th width="60">ID</th>
|
||||
<th width="280">标题</th>
|
||||
<th width="280">创建时间</th>
|
||||
<th width="280">更新时间</th>
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{volist name="list" id="item"}
|
||||
<tr>
|
||||
<td><input class="ids row-selected" type="checkbox" name="id[]" value="{$item.id}"></td>
|
||||
<td>{$item['id']}</td>
|
||||
<td>{$item['title']}</td>
|
||||
<td>{$item['create_time']|date='Y-m-d H:i',###}</td>
|
||||
<td>{$item['update_time']|date='Y-m-d H:i',###}</td>
|
||||
<td>
|
||||
<a href="{:url('editad?id='.$item['id'])}">编辑</a>
|
||||
<a href="{:url('delad?id='.$item['id'])}" class="confirm ajax-get">删除</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/volist}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="btn-group-sm" id="toolbar" role="group">
|
||||
<a class="btn btn-success" onclick="$.operate.add()">
|
||||
<i class="fa fa-plus"></i> 新增
|
||||
</a>
|
||||
<a class="btn btn-primary single disabled" onclick="$.operate.edit()">
|
||||
<i class="fa fa-edit"></i> 修改
|
||||
</a>
|
||||
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()">
|
||||
<i class="fa fa-remove"></i> 删除
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="table-striped">
|
||||
<table id="bootstrap-table" data-mobile-responsive="true"></table>
|
||||
</div>
|
||||
<!-- /表格列表 -->
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
{block name="script"}
|
||||
<!-- bootstrap-table 表格插件 -->
|
||||
<script src="__static__/plugins/bootstrap-table/bootstrap-table.min.js"></script>
|
||||
<script src="__static__/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
|
||||
<script src="__static__/plugins/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js"></script>
|
||||
<script src="__static__/plugins/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.min.js"></script>
|
||||
<script src="__static__/plugins/bootstrap-table/extensions/columns/bootstrap-table-fixed-columns.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
var editFlag = "";
|
||||
var removeFlag = "";
|
||||
var resetPwdFlag = "";
|
||||
|
||||
$.table.init({
|
||||
url: "/admin/ad/lists",
|
||||
createUrl: "/admin/ad/addad",
|
||||
updateUrl: "/admin/ad/editad/id/{id}",
|
||||
removeUrl: "/admin/ad/delad",
|
||||
sortName: "id",
|
||||
sortOrder: "desc",
|
||||
modalName: "广告",
|
||||
columns: [
|
||||
{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'title',
|
||||
title: '广告位名称'
|
||||
},
|
||||
{
|
||||
field: 'appid',
|
||||
title: 'APPID'
|
||||
},
|
||||
{
|
||||
field: 'appsecret',
|
||||
title: 'APP秘钥'
|
||||
},
|
||||
{
|
||||
field: 'create_time',
|
||||
title: '创建时间',
|
||||
sortable: true
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
|
||||
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a> ');
|
||||
return actions.join('');
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
})
|
||||
|
||||
</script>
|
||||
{/block}
|
||||
@@ -6,7 +6,7 @@
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<!-- Bootstrap 3.3.7 -->
|
||||
<link rel="stylesheet" href="__static__/plugins/bootstrap/dist/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="__static__/plugins/bootstrap/css/bootstrap.min.css">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="__static__/plugins/font-awesome/css/font-awesome.min.css">
|
||||
<!-- Ionicons -->
|
||||
@@ -18,10 +18,10 @@
|
||||
folder instead of downloading all of them to reduce the load. -->
|
||||
<link rel="stylesheet" href="__css__/themes.css">
|
||||
<!-- jQuery 3 -->
|
||||
<script src="__static__/plugins/jquery/dist/jquery.min.js"></script>
|
||||
<script src="__static__/plugins/jquery/jquery.min.js"></script>
|
||||
<script src="__static__/plugins/blockUI/jquery.blockUI.js"></script>
|
||||
<!-- Bootstrap 3.3.7 -->
|
||||
<script src="__static__/plugins/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<script src="__static__/plugins/bootstrap/js/bootstrap.min.js"></script>
|
||||
<!-- Slimscroll -->
|
||||
<script src="__static__/plugins/jquery-slimscroll/jquery.slimscroll.min.js"></script>
|
||||
<script src="__static__/plugins/layer/layer.js"></script>
|
||||
@@ -56,6 +56,7 @@ folder instead of downloading all of them to reduce the load. -->
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<script src="__js__/page.js?v={:time()}{$sent_version}"></script>
|
||||
<!-- AdminLTE App -->
|
||||
<script src="__static__/common/js/core.js?v={:time()}{$sent_version}"></script>
|
||||
<script src="__js__/sentcms.js?v={:time()}{$sent_version}"></script>
|
||||
|
||||
@@ -9,28 +9,28 @@
|
||||
<div class="box-body">
|
||||
<form method="post" class="form form-horizontal" role="ajax">
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label">客户端名称</label>
|
||||
<div class="col-md-10">
|
||||
<label class="col-sm-2 control-label">客户端名称</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" style="width:400px;" name="title" value="{$info['title']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label">APPID</label>
|
||||
<div class="col-md-10">
|
||||
<label class="col-sm-2 control-label">APPID</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" style="width:400px;" name="appid" value="{$info['appid']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label">APPSECRET</label>
|
||||
<div class="col-md-10">
|
||||
<label class="col-sm-2 control-label">APPSECRET</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" style="width:400px;" name="appsecret" value="{$info['appsecret']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-2 col-md-10">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<input type="hidden" name="id" value="{$info['id']|default=''}">
|
||||
<button class="btn btn-success submit-btn ajax-post" type="submit" target-form="form-horizontal">确 定</button>
|
||||
<button class="btn btn-danger btn-return" onclick="javascript:history.back(-1);return false;">返 回</button>
|
||||
|
||||
@@ -44,7 +44,8 @@ $(function(){
|
||||
url: "/admin/client/index",
|
||||
createUrl: "/admin/client/add",
|
||||
updateUrl: "/admin/client/edit/id/{id}",
|
||||
removeUrl: "/admin/client/remove",
|
||||
removeUrl: "/admin/client/del",
|
||||
uniqueId: "id",
|
||||
sortName: "id",
|
||||
sortOrder: "desc",
|
||||
modalName: "客户端",
|
||||
@@ -69,6 +70,11 @@ $(function(){
|
||||
title: '创建时间',
|
||||
sortable: true
|
||||
},
|
||||
{
|
||||
field: 'update_time',
|
||||
title: '更新时间',
|
||||
sortable: true
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<!-- Bootstrap 3.3.7 -->
|
||||
<link rel="stylesheet" href="__static__/plugins/bootstrap/dist/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="__static__/plugins/bootstrap/css/bootstrap.min.css">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="__static__/plugins/font-awesome/css/font-awesome.min.css">
|
||||
<!-- Ionicons -->
|
||||
@@ -84,7 +84,7 @@ folder instead of downloading all of them to reduce the load. -->
|
||||
<!-- Menu Footer-->
|
||||
<li class="user-footer">
|
||||
<div class="pull-left">
|
||||
<a href="/admin/user/profile.html" class="btn btn-default btn-flat" data-action="url" data-type="tab">个人资料</a>
|
||||
<a href="/admin/index/clear.html" class="btn btn-default btn-flat" data-action="url" data-type="msg">更新缓存</a>
|
||||
</div>
|
||||
<div class="pull-right">
|
||||
<a href="/admin/index/logout.html" class="btn btn-default btn-flat" data-action="url" data-type="msg">退出</a>
|
||||
@@ -169,7 +169,7 @@ folder instead of downloading all of them to reduce the load. -->
|
||||
<span class="button" data-action="scroll" data-type="left"><i class="fa fa-backward"></i></span>
|
||||
<div class="tab-list">
|
||||
<div class="page-tabs-content">
|
||||
<a href="javascript:;" class="home active menuTab" data-id="/admin/system/dashboard"><span><i class="fa fa-home"></i> 系统首页</span></a>
|
||||
<a href="javascript:;" class="home active menuTab" data-id="/admin/index/dashboard"><span><i class="fa fa-home"></i> 系统首页</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown" data-tab-action="nav">
|
||||
@@ -187,7 +187,7 @@ folder instead of downloading all of them to reduce the load. -->
|
||||
</div>
|
||||
<div class="mainContent" id="content-main">
|
||||
<!-- Content Header (Page header) -->
|
||||
<iframe src="/admin/index/dashboard.html" class="sent_iframe" data-id="/admin/system/dashboard" frameborder="0" width="100%" name="main-body"></iframe>
|
||||
<iframe src="/admin/index/dashboard.html" class="sent_iframe" data-id="/admin/index/dashboard" frameborder="0" width="100%" name="main-body"></iframe>
|
||||
<!-- /.content -->
|
||||
</div>
|
||||
</div>
|
||||
@@ -211,9 +211,9 @@ folder instead of downloading all of them to reduce the load. -->
|
||||
<!-- ./wrapper -->
|
||||
|
||||
<!-- jQuery 3 -->
|
||||
<script src="__static__/plugins/jquery/dist/jquery.min.js"></script>
|
||||
<script src="__static__/plugins/jquery/jquery.min.js"></script>
|
||||
<!-- Bootstrap 3.3.7 -->
|
||||
<script src="__static__/plugins/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<script src="__static__/plugins/bootstrap/js/bootstrap.min.js"></script>
|
||||
<!-- Slimscroll -->
|
||||
<script src="__static__/plugins/jquery-slimscroll/jquery.slimscroll.min.js"></script>
|
||||
<script src="__static__/plugins/layer/layer.js"></script>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<!-- Bootstrap 3.3.5 -->
|
||||
<link rel="stylesheet" href="__static__/plugins/bootstrap/dist/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="__static__/plugins/bootstrap/css/bootstrap.min.css">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="__static__/plugins/font-awesome/css/font-awesome.min.css">
|
||||
<!-- Theme style -->
|
||||
@@ -56,9 +56,9 @@
|
||||
<!-- 底部版本信息 结束 -->
|
||||
|
||||
<!-- jQuery 2.1.4 -->
|
||||
<script src="__static__/plugins/jquery/dist/jquery.min.js"></script>
|
||||
<script src="__static__/plugins/jquery/jquery.min.js"></script>
|
||||
<!-- Bootstrap 3.3.5 -->
|
||||
<script src="__static__/plugins/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<script src="__static__/plugins/bootstrap/js/bootstrap.min.js"></script>
|
||||
<!-- iCheck -->
|
||||
<script src="__static__/plugins/layer/layer.js"></script>
|
||||
<script src="__static__/common/js/core.js"></script>
|
||||
|
||||
87
view/admin/link/add.html
Normal file
87
view/admin/link/add.html
Normal file
@@ -0,0 +1,87 @@
|
||||
{extend name="admin/base"/}
|
||||
{block name="body"}
|
||||
<div class="box box-primary">
|
||||
<header class="box-header with-border">
|
||||
<h3 class="box-title">{$meta_title|default='新功能'}</h3>
|
||||
<div class="pull-right">
|
||||
</div>
|
||||
</header>
|
||||
<div class="box-body">
|
||||
<form method="post" class="form form-horizontal" role="ajax">
|
||||
<input type="hidden" name="id" value="{$info['id']|default=''}">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">友链标题</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" style="width:400px;" name="title" value="{$info['title']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">URL</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" style="width:400px;" name="url" value="{$info['url']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">LOGO</label>
|
||||
<div class="col-sm-10">
|
||||
<div class="fileinput fileinput-new" data-provides="fileinput">
|
||||
<span class="btn btn-white btn-file"><span class="fileinput-new">选择文件</span><span class="fileinput-exists">更改</span><input type="file" name="..."></span>
|
||||
<span class="fileinput-filename"></span>
|
||||
<a href="#" class="close fileinput-exists" data-dismiss="fileinput" style="float: none">×</a>
|
||||
</div>
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">友链类型</label>
|
||||
<div class="col-sm-10">
|
||||
<select name="ftype" class="form-control" style="width:auto;">
|
||||
<option value="">请选择</option>
|
||||
<option value="0">友情链接</option>
|
||||
<option value="1">合作单位</option>
|
||||
</select>
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">排序</label>
|
||||
<div class="col-sm-2">
|
||||
<input type="text" class="form-control" name="sort" value="{$info['sort']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">点击量</label>
|
||||
<div class="col-sm-2">
|
||||
<input type="text" class="form-control" name="hits" value="{$info['hits']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">描述</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" name="descrip" value="{$info['descrip']|default=''}">
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">状态</label>
|
||||
<div class="col-sm-10">
|
||||
<select name="status" class="form-control" style="width:auto;">
|
||||
<option value="">请选择</option>
|
||||
</select>
|
||||
<span class="help-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" style="display: none;">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<button class="btn btn-success submit-btn ajax-post" type="submit" target-form="form-horizontal">确 定</button>
|
||||
<button class="btn btn-danger btn-return" onclick="javascript:history.back(-1);return false;">返 回</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
@@ -41,34 +41,44 @@ $(function(){
|
||||
var resetPwdFlag = "";
|
||||
|
||||
$.table.init({
|
||||
url: "/admin/client/index",
|
||||
createUrl: "/admin/client/add",
|
||||
updateUrl: "/admin/client/edit/id/{id}",
|
||||
removeUrl: "/admin/client/remove",
|
||||
url: "/admin/link/index",
|
||||
createUrl: "/admin/link/add",
|
||||
updateUrl: "/admin/link/edit/id/{id}",
|
||||
removeUrl: "/admin/link/del",
|
||||
uniqueId: "id",
|
||||
sortName: "id",
|
||||
sortOrder: "desc",
|
||||
modalName: "客户端",
|
||||
modalName: "友情链接",
|
||||
columns: [
|
||||
{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'title',
|
||||
title: '客户端名称'
|
||||
title: '链接标题'
|
||||
},
|
||||
{
|
||||
field: 'appid',
|
||||
title: 'APPID'
|
||||
field: 'url',
|
||||
title: 'URL'
|
||||
},
|
||||
{
|
||||
field: 'appsecret',
|
||||
title: 'APP秘钥'
|
||||
field: 'sort',
|
||||
title: '排序'
|
||||
},
|
||||
{
|
||||
field: 'hits',
|
||||
title: '访问量'
|
||||
},
|
||||
{
|
||||
field: 'create_time',
|
||||
title: '创建时间',
|
||||
sortable: true
|
||||
},
|
||||
{
|
||||
field: 'update_time',
|
||||
title: '更新时间',
|
||||
sortable: true
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
|
||||
@@ -1,4 +1,13 @@
|
||||
{extend name="admin/base"/}
|
||||
{block name="head"}
|
||||
|
||||
<link href="__static__/plugins/select2/select2.min.css" rel="stylesheet"/>
|
||||
<link href="__static__/plugins/select2/select2-bootstrap.css" rel="stylesheet"/>
|
||||
<script src="__static__/plugins/select2/select2.min.js"></script>
|
||||
|
||||
<link href="__static__/plugins/bootstrap-select/bootstrap-select.css" rel="stylesheet"/>
|
||||
<script src="__static__/plugins/bootstrap-select/bootstrap-select.js"></script>
|
||||
{/block}
|
||||
{block name="body"}
|
||||
<div class="box box-primary">
|
||||
<header class="box-header with-border">
|
||||
@@ -38,7 +47,8 @@
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">上级菜单</label>
|
||||
<div class="col-sm-10">
|
||||
<select name="pid" class="form-control" style="width: 50%">
|
||||
<select name="pid" class="form-control noselect2" style="width: 50%" data-url="/admin/menu/index" data-form-type="tree">
|
||||
<option value="0">顶级菜单</option>
|
||||
</select>
|
||||
<span class="help-block">(所属的上级菜单)</span>
|
||||
</div>
|
||||
|
||||
0
view/admin/meta.html
Normal file
0
view/admin/meta.html
Normal file
Reference in New Issue
Block a user