117 lines
4.4 KiB
PHP
117 lines
4.4 KiB
PHP
<?php
|
|
|
|
use addons\webman\model\AdminDepartment;
|
|
|
|
return [
|
|
'add' => '添加菜单',
|
|
'title' => '系统菜单管理',
|
|
'fields' => [
|
|
'top' => '顶级菜单',
|
|
'pid' => '上级菜单',
|
|
'name' => '菜单名称',
|
|
'url' => '菜单链接',
|
|
'icon' => '菜单图标',
|
|
'sort' => '排序',
|
|
'status' => '状态',
|
|
'open' => '菜单展开',
|
|
'super_status' => '超级管理员状态',
|
|
'type' => '菜单类型',
|
|
],
|
|
'options' => [
|
|
'admin_visible' => [
|
|
[1 => '显示'],
|
|
[0 => '隐藏']
|
|
]
|
|
],
|
|
'type' => [
|
|
AdminDepartment::TYPE_DEPARTMENT => '总站菜单',
|
|
AdminDepartment::TYPE_CHANNEL => '渠道菜单',
|
|
],
|
|
'titles' => [
|
|
'home' => '首页',
|
|
'system' => '系统',
|
|
'system_manage' => '系统管理',
|
|
'config_manage' => '配置管理',
|
|
'attachment_manage' => '附件管理',
|
|
'permissions_manage' => '权限管理',
|
|
'admin' => '用户管理',
|
|
'role_manage' => '角色管理',
|
|
'menu_manage' => '菜单管理',
|
|
'plug_manage' => '插件管理',
|
|
'department_manage' => '部门管理',
|
|
'post_manage' => '岗位管理',
|
|
/** 总后台 */
|
|
'admin_manage' => '总后台',
|
|
'data_center' => '数据中心',
|
|
//用户管理
|
|
'user_manage' => '玩家管理',
|
|
'user_manage_list' => '玩家列表',
|
|
'accounting_change_records' => '账变记录',
|
|
//财务数据
|
|
'financial_data' => '财务数据',
|
|
'recharge_record' => '充值记录',
|
|
'withdrawal_records' => '提现记录',
|
|
//报表中心
|
|
'report_center' => '报表中心',
|
|
//客户端管理
|
|
'client_manager' => '客户端管理',
|
|
'rotation_chart_manager' => '轮播图管理',
|
|
'announcement_manager' => '公告管理',
|
|
'system_settings' => '系统设置',
|
|
//渠道管理
|
|
'channel_manager' => '渠道管理',
|
|
'channel_list' => '渠道列表',
|
|
'currency_manager' => '货币管理',
|
|
/** 渠道后台 */
|
|
'channel_manage' => '渠道后台',
|
|
'channel_data_center' => '数据中心',
|
|
//玩家管理
|
|
'channel_player_manage' => '玩家管理',
|
|
'channel_player_list' => '玩家列表',
|
|
'channel_player_accounting_change_records' => '账变记录',
|
|
//前端配置
|
|
'channel_client_manager' => '客户端管理',
|
|
'channel_rotation_chart_manager' => '轮播图管理',
|
|
'channel_marquee_manager' => '跑马灯管理',
|
|
'channel_announcement_manager' => '公告管理',
|
|
//财务管理
|
|
'channel_financial_manager' => '财务管理',
|
|
'channel_recharge_review' => '充值审核',
|
|
'channel_withdrawal_review' => '提现审核',
|
|
'channel_withdrawal_and_payment' => '提现打款',
|
|
'channel_recharge_record' => '充值记录',
|
|
'channel_withdrawal_records' => '提现记录',
|
|
'channel_recharge_channel_configuration' => '充值渠道配置',
|
|
'channel_financial_operation_records' => '财务操作记录',
|
|
//权限管理
|
|
'channel_auth_manager' => '权限管理',
|
|
'channel_admin_user_manager' => '用户管理',
|
|
'channel_post_manager' => '岗位管理',
|
|
//日志中心
|
|
'log_center' => '日志中心',
|
|
'player_edit_log' => '玩家资料修改日志',
|
|
'player_money_edit_log' => '钱包操作日志',
|
|
//游戏管理
|
|
'game_manage' => '游戏管理',
|
|
'game_record' => '游戏记录',
|
|
'game_out_in' => '游戏转入/出记录',
|
|
'game_list' => '游戏列表',
|
|
'version_manager' => '版本管理',
|
|
'activity_manager' => '活动管理',
|
|
'activity_list' => '活动列表',
|
|
'recharge_manager' => '充值管理',
|
|
'recharge_channels' => '充值渠道',
|
|
'play_and_earn' => '边玩边赚',
|
|
'play_and_earn_record' => '玩赚记录',
|
|
//推广管理
|
|
'channel_player_promoter' => '推广管理',
|
|
'channel_player_promoter_list' => '推广员列表',
|
|
'profit_record' => '分润报表',
|
|
'profit_settlement_record' => '分润结算记录',
|
|
//二维码
|
|
'qrcode' => '二维码管理',
|
|
'qrcode_list' => '二维码批次列表',
|
|
'qrcode_holder' => '持码人列表',
|
|
]
|
|
];
|