File: /www/wwwroot/cms.smpolia.com/addons/install/menu.php
<?php
return [
[
//父菜单ID,NULL或者不写系统默认,0为顶级菜单
"parentid" => 45,
//地址,[模块/]控制器/方法
"route" => "diywap/diywap/index",
//类型,1:权限认证+菜单,0:只作为菜单
"type" => 0,
//状态,1是显示,0不显示(需要参数的,建议不显示,例如编辑,删除等操作)
"status" => 1,
//名称
"name" => "页面diy",
//图标
"icon" => "icon-file-list-3-line",
//备注
"remark" => "",
//排序
"listorder" => 3,
//子菜单列表
"child" => [
[
"route" => "diywap/diywap/add",
"type" => 1,
"status" => 0,
"name" => "添加页面",
],
[
"route" => "diywap/diywap/edit",
"type" => 1,
"status" => 0,
"name" => "编辑页面",
],
[
"route" => "diywap/diywap/del",
"type" => 1,
"status" => 0,
"name" => "删除页面",
],
[
"route" => "diywap/diywap/sethome",
"type" => 1,
"status" => 0,
"name" => "设置首页",
],
[
"route" => "diywap/diywap/selectlink",
"type" => 1,
"status" => 0,
"name" => "选择链接",
],
[
"route" => "diywap/diywap/editrichtext",
"type" => 1,
"status" => 0,
"name" => "富文本",
],
[
"route" => "diywap/diywap/diyform",
"type" => 1,
"status" => 0,
"name" => "表单字段",
],
],
],
];