1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php /* Smarty version Smarty-3.1.11, created on 2019-04-08 17:47:37
- compiled from "/www/wwwroot/edm.alipearl.net/application/module/view/user_group_admin/add.html" */ ?>
- <?php /*%%SmartyHeaderCode:3970346305953053068f506-70903400%%*/if(!defined('SMARTY_DIR')) exit('no direct access allowed');
- $_valid = $_smarty_tpl->decodeProperties(array (
- 'file_dependency' =>
- array (
- 'f4ea3bc72208b9549f968d819f9593b9c947bb5f' =>
- array (
- 0 => '/www/wwwroot/edm.alipearl.net/application/module/view/user_group_admin/add.html',
- 1 => 1498544934,
- 2 => 'file',
- ),
- ),
- 'nocache_hash' => '3970346305953053068f506-70903400',
- 'function' =>
- array (
- ),
- 'version' => 'Smarty-3.1.11',
- 'unifunc' => 'content_595305306c62e4_94546010',
- 'has_nocache_code' => false,
- ),false); /*/%%SmartyHeaderCode%%*/?>
- <?php if ($_valid && !is_callable('content_595305306c62e4_94546010')) {function content_595305306c62e4_94546010($_smarty_tpl) {?><?php echo $_smarty_tpl->getSubTemplate ('../public/admin_header.html', $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, null, null, array(), 0);?>
- <?php echo $_smarty_tpl->getSubTemplate ('../public/admin_navi.html', $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, null, null, array(), 0);?>
- <!-- Right side column. Contains the navbar and content of the page -->
- <aside class="right-side">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>
- 添加客户分组
- <small>Control panel</small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
- <li class="active">Blank page</li>
- </ol>
- </section>
- <!-- Main content -->
- <section class="content">
- <form method="post" action="" id="to_add">
- 客户分组名称:<input type="text" name="name" id="name" >
- <input type="button" class="btn btn-info" onclick="to_submit();" value="确定" />
- </form>
- </section><!-- /.content -->
- </aside><!-- /.right-side -->
- </div><!-- ./wrapper -->
- <script>
- $('#treeview3').addClass('active');
- $(".user_group_left").addClass('active');
- function to_submit(){
- var name = $('#name').val();
- if(name==''){
- alert("请输入客户分组名称");
- }else{
- $("#to_add").submit();
- }
- }
- </script>
- </body>
- </html><?php }} ?>
|