mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2025-12-26 01:15:58 +08:00
首次提交
This commit is contained in:
70
public/config/pear.config.json
Normal file
70
public/config/pear.config.json
Normal file
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"logo": {
|
||||
"title": "码支付",
|
||||
"image": "/admin/images/logo.png"
|
||||
},
|
||||
"menu": {
|
||||
"data": "/Console/menu",
|
||||
"method": "GET",
|
||||
"accordion": true,
|
||||
"collapse": false,
|
||||
"control": false,
|
||||
"controlWidth": 500,
|
||||
"select": "index",
|
||||
"async": true
|
||||
},
|
||||
"tab": {
|
||||
"enable": true,
|
||||
"keepState": true,
|
||||
"session": true,
|
||||
"preload": false,
|
||||
"max": "30",
|
||||
"index": {
|
||||
"id": "console",
|
||||
"href": "/Console/console",
|
||||
"title": "首页"
|
||||
}
|
||||
},
|
||||
"theme": {
|
||||
"defaultColor": "2",
|
||||
"defaultMenu": "dark-theme",
|
||||
"defaultHeader": "light-theme",
|
||||
"allowCustom": true,
|
||||
"banner": false
|
||||
},
|
||||
"colors": [
|
||||
{
|
||||
"id": "1",
|
||||
"color": "#2d8cf0",
|
||||
"second": "#ecf5ff"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"color": "#36b368",
|
||||
"second": "#f0f9eb"
|
||||
},
|
||||
{
|
||||
"id": "3",
|
||||
"color": "#f6ad55",
|
||||
"second": "#fdf6ec"
|
||||
},
|
||||
{
|
||||
"id": "4",
|
||||
"color": "#f56c6c",
|
||||
"second": "#fef0f0"
|
||||
},
|
||||
{
|
||||
"id": "5",
|
||||
"color": "#3963bc",
|
||||
"second": "#ecf5ff"
|
||||
}
|
||||
],
|
||||
"other": {
|
||||
"keepLoad": "1200",
|
||||
"autoHead": false,
|
||||
"footer": false
|
||||
},
|
||||
"header": {
|
||||
"message": "/admin/data/message.json"
|
||||
}
|
||||
}
|
||||
82
public/config/pear.config.yml
Normal file
82
public/config/pear.config.yml
Normal file
@@ -0,0 +1,82 @@
|
||||
## 网站配置
|
||||
logo:
|
||||
## 网站名称
|
||||
title: "码支付"
|
||||
## 网站图标
|
||||
image: "/admin/images/logo.png"
|
||||
## 菜单配置
|
||||
menu:
|
||||
## 菜单数据来源
|
||||
data: "/User/menu"
|
||||
## 菜单接口的请求方式 GET / POST
|
||||
method: "GET"
|
||||
## 是否同时只打开一个菜单目录
|
||||
accordion: true
|
||||
## 侧边默认折叠状态
|
||||
collapse: false
|
||||
## 是否开启多系统菜单模式
|
||||
control: false
|
||||
## 顶部菜单宽度 PX
|
||||
controlWidth: 500
|
||||
## 默认选中的菜单项
|
||||
select: "index"
|
||||
## 是否开启异步菜单,false 时 data 属性设置为静态数据,true 时为后端接口
|
||||
async: true
|
||||
## 视图内容配置
|
||||
tab:
|
||||
## 是否开启多选项卡
|
||||
enable: true
|
||||
## 保持视图状态
|
||||
keepState: true
|
||||
## 开启选项卡记忆
|
||||
session: true
|
||||
## 浏览器刷新时是否预加载非激活标签页
|
||||
preload: true
|
||||
## 可打开的数量, false 不限制极值
|
||||
max: "30"
|
||||
## 首页
|
||||
index:
|
||||
id: "index" ## 标识 ID , 建议与菜单项中的 ID 一致
|
||||
href: "/console/index" ## 页面地址
|
||||
title: "首页" ## 标题
|
||||
## 主题配置
|
||||
theme:
|
||||
## 默认主题色,对应 colors 配置中的 ID 标识
|
||||
defaultColor: "2"
|
||||
## 默认的菜单主题 dark-theme 黑 / light-theme 白
|
||||
defaultMenu: "dark-theme"
|
||||
## 默认的顶部主题 dark-theme 黑 / light-theme 白
|
||||
defaultHeader: "light-theme"
|
||||
## 是否允许用户切换主题,false 时关闭自定义主题面板
|
||||
allowCustom: true
|
||||
## 通栏配置
|
||||
banner: false
|
||||
## 主题色配置列表
|
||||
colors:
|
||||
- id: "1"
|
||||
color: "#2d8cf0"
|
||||
second: "#ecf5ff"
|
||||
- id: "2"
|
||||
color: "#36b368"
|
||||
second: "#f0f9eb"
|
||||
- id: "3"
|
||||
color: "#f6ad55"
|
||||
second: "#fdf6ec"
|
||||
- id: "4"
|
||||
color: "#f56c6c"
|
||||
second: "#fef0f0"
|
||||
- id: "5"
|
||||
color: "#3963bc"
|
||||
second: "#ecf5ff"
|
||||
## 其他配置
|
||||
other:
|
||||
## 主页动画时长
|
||||
keepLoad: "1200"
|
||||
## 布局顶部主题
|
||||
autoHead: false
|
||||
## 页脚
|
||||
footer: false
|
||||
## 头部配置
|
||||
header:
|
||||
## 站内消息,通过 false 设置关闭
|
||||
message: "/admin/data/message.json"
|
||||
Reference in New Issue
Block a user