Files
qhmes/JeecgUniapp-master/src/common/work.ts

136 lines
3.2 KiB
Vue
Raw Normal View History

2026-07-20 14:10:39 +08:00
/**
2026-07-20 17:31:54 +08:00
* 基础服务原常用服务
2026-07-20 14:10:39 +08:00
* useful server
*/
const icon_prefix = '/static/index/128/'
/*
*/
export const us = {
data: [
{
title: 'online',
icon: icon_prefix + 'qingjia1.png',
description: 'online',
useCount: 10000,
routeIndex: 'online',
enabled: true,
},
{
title: '仪表盘',
icon: icon_prefix + 'chart.png',
description: '仪表盘',
useCount: 10000,
routeIndex: 'workHome',
enabled: true,
},
{
title: '组件示例',
icon: icon_prefix + 'chuchai.png',
description: '组件示例',
useCount: 10000,
routeIndex: 'demo',
enabled: true,
},
{
title: '流程待办',
icon: icon_prefix + 'gongwen.png',
description: '流程待办',
useCount: 10000,
routeIndex: 'flowIndex',
},
{
title: '知识库',
icon: icon_prefix + 'qingjia1.png',
description: '知识库',
useCount: 10000,
routeIndex: 'knowledge',
enabled: true,
},
{
title: '通知公告',
icon: icon_prefix + 'tongzhi.png',
description: '查看企业对员工下发的通知公告',
useCount: 10000,
routeIndex: 'annotationList',
enabled: true,
},
{
title: '请假申请',
icon: icon_prefix + 'richang.png',
description: '请假申请',
useCount: 10000,
routeIndex: 'leave',
enabled: true,
},
{
title: '出差申请',
icon: icon_prefix + 'zhoubao.png',
description: '出差申请',
useCount: 10000,
routeIndex: 'businesStrip',
enabled: true,
},
{
title: '公文发文',
icon: icon_prefix + 'zhoubao.png',
description: '公文发文',
useCount: 10000,
routeIndex: 'docSend',
enabled: true,
},
{
title: '日程',
icon: icon_prefix + 'richeng.png',
description: '建立和查看个人工作安排',
useCount: 10000,
routeIndex: 'schedule',
},
{
title: '考勤',
icon: icon_prefix + 'kaoqin.png',
description: '工作考勤',
routeIndex: 'ClockIn',
useCount: 10000,
enabled: true,
},
{
title: '内部邮件',
icon: icon_prefix + 'youjian.png',
description: '查看内部消息',
useCount: 10000,
dot: false,
routeIndex: 'mailHome',
enabled: true,
},
],
}
/**
2026-07-20 17:31:54 +08:00
* 生产服务原其他服务
* 首页更多按钮仍按 type=other 追加勿删空数组
2026-07-20 14:10:39 +08:00
*/
export const os = {
data: [
2026-07-20 17:31:54 +08:00
//update-begin---author:xsl ---date:20260720 for【APP首页】生产服务菜单调整-----------
2026-07-20 14:10:39 +08:00
{
2026-07-20 17:31:54 +08:00
title: '原材料送检',
2026-07-20 14:10:39 +08:00
icon: icon_prefix + 'renwu.png',
2026-07-20 17:31:54 +08:00
description: '扫码送检与录入检验结果',
2026-07-20 14:10:39 +08:00
useCount: 10000,
2026-07-20 17:31:54 +08:00
routeIndex: 'rawMaterialInspect',
enabled: true,
2026-07-20 14:10:39 +08:00
},
{
2026-07-20 17:31:54 +08:00
title: '扫描识别',
icon: icon_prefix + 'wendang.png',
description: '手持机扫描头识别条码',
2026-07-20 14:10:39 +08:00
useCount: 10000,
2026-07-20 17:31:54 +08:00
routeIndex: 'scanIdentify',
enabled: true,
2026-07-20 14:10:39 +08:00
},
2026-07-20 17:31:54 +08:00
//update-end---author:xsl ---date:20260720 for【APP首页】生产服务菜单调整-----------
2026-07-20 14:10:39 +08:00
],
}