zoukankan      html  css  js  c++  java
  • destoon 后台管理左侧新增菜单项

    destoon 后台菜单设置在对应模块的admin/menu.inc.php

    例如要在后台会员管理里增加会员承包和股东管理

    $menu = array(
    
    array('添加会员', '?moduleid=2&action=add'),
    
    array('会员列表', '?moduleid=2'),
    
    array('审核会员', '?moduleid=2&action=check'),
    
    array(VIP.'管理', '?moduleid=4&file=vip'),
    
    array('资料审核', '?moduleid=2&file=validate'),
    
    array('联系会员', '?moduleid=2&file=contact'),
    
    array('在线会员', '?moduleid=2&file=online'),
    
    array('在线对话', '?moduleid=2&file=chat'),
    
    array('一键登录', '?moduleid=2&file=oauth'),
    
    array('微信管理', '?moduleid=2&file=weixin'),
    
    array('会员升级', '?moduleid=2&file=grade&action=check'),
    
    array('会员组管理', '?moduleid=2&file=group'),
    
    array('模块设置', '?moduleid=2&file=setting'),
    
    array('承包管理', '?moduleid=2&file=chengbao'),
    
    array('股东管理', '?moduleid=2&file=gudong'),
    
    );
    View Code


    1、承包管理  

         在对用module目录下 /module/member/admin/ 目录新建 chengbao.inc.php

         在  /module/member/admin/ template/  新建模板  chengbao.tpl.php

  • 相关阅读:
    标定相关-一些资源
    论文基础-5几何知识
    论文基础-3微积分
    h5页面 判断网页是否由微信或qq内置浏览器打开
    Html5 页面后退并刷新
    h5 页面下拉刷新
    绑定点击事件 传参
    公众号做分享功能
    清微信缓存
    手机端适配
  • 原文地址:https://www.cnblogs.com/djiz/p/6414190.html
Copyright © 2011-2022 走看看