2024-01-03 14:19:05 +08:00

66 lines
1.4 KiB
JavaScript

export default {
domain: "https://demo.hemaphp.com",
version: "1.0.4", //版本号
login: {
url: 'login/login' // 登录页面路径
},
index: {
url: 'index/index' // 登录后跳转的第一个页面
},
error: {
url: 'error/404' // 404 Not Found 错误页面路径
},
navBar: { // 顶部导航
logo: '/static/logo.png', // 左侧 Logo
langs: [{
text: '中文简体',
lang: 'zh-Hans'
}, {
text: '中文繁體',
lang: 'zh-Hant'
}, {
text: 'English',
lang: 'en'
}]
},
sideBar: { // 左侧菜单
// 配置静态菜单列表(放置在用户被授权的菜单列表下边)
staticMenu: [{
menu_id: "index",
text: '首页',
icon: 'admin-icons-shouye',
value: "/pages/index/index",
}, {
menu_id: "buy",
text: '点单',
icon: 'admin-icons-kaifangpingtai',
value: "/pages/order/food",
}, {
menu_id: "call",
text: '叫号',
icon: 'admin-icons-gonggao',
value: "/pages/call/index",
}, {
menu_id: "table",
text: '桌台',
icon: 'admin-icons-yingyongzhongxin',
value: "/pages/table/index",
}, {
menu_id: "pact",
text: '预约',
icon: 'admin-icons-yingxiao',
value: "/pages/pact/index",
}, {
menu_id: "order",
text: '订单',
icon: 'admin-icons-dingdanguanli',
value: "/pages/order/index",
}, {
menu_id: "user",
text: '会员',
icon: 'admin-icons-yonghuguanli',
value: "/pages/user/list",
}]
}
}