jeecgBootUniapp/src/types/uni-pages.d.ts

94 lines
3.8 KiB
Vue
Raw Normal View History

2025-04-29 08:37:17 +00:00
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by vite-plugin-uni-pages
interface NavigateToOptions {
2025-05-09 01:42:19 +00:00
url: "/pages/login/login" |
2025-04-29 08:37:17 +00:00
"/pages/annotation/annotationDetail" |
"/pages/annotation/annotationList" |
2025-05-09 01:42:19 +00:00
"/pages/index/index" |
2025-06-30 02:15:12 +00:00
"/pages/linktoapp/index" |
2025-04-29 08:37:17 +00:00
"/pages/message/message" |
"/pages/more/more" |
2025-05-16 07:04:50 +00:00
"/pages/onlinePreview/detail" |
2025-05-13 09:17:47 +00:00
"/pages/onlinePreview/onlinePreview" |
"/pages/onlinePreview/onlinePreviewH5" |
"/pages/operation/index" |
"/pages/production/index" |
2025-06-09 00:23:21 +00:00
"/pages/sljd/index" |
2025-04-29 08:37:17 +00:00
"/pages/user/people" |
"/pages/workHome/index" |
"/pages/production/ribaoshuju/rbsjLsxq" |
"/pages/production/ribaoshuju/trqRbsj" |
"/pages/production/ribaoshuju/yyRbsj" |
"/pages/production/shishishuju/aqbjSssj" |
"/pages/production/shishishuju/gycsSssj" |
"/pages/production/shishishuju/index" |
"/pages/production/shishishuju/nyxhSssj" |
"/pages/production/shishishuju/trqSssj" |
"/pages/production/shishishuju/ysjSssj" |
2025-07-18 09:26:18 +00:00
"/pages-home/device-control/office/ALLleader" |
2025-06-26 10:11:22 +00:00
"/pages-home/device-control/office/index" |
2025-07-18 09:26:18 +00:00
"/pages-home/device-control/office/officehomedevice" |
2025-06-26 10:11:22 +00:00
"/pages-home/device-control/office/Personaldevices" |
2025-04-29 08:37:17 +00:00
"/pages-message/chat/chat" |
"/pages-message/contacts/contacts" |
"/pages-message/personPage/personPage" |
"/pages-message/tenant/tenant" |
"/pages-user/userEdit/userEdit" |
"/pages-work/dragPage/index" |
"/pages-work/onlinePage/onlineAdd" |
"/pages-work/onlinePage/onlineDetail" |
"/pages-work/onlinePage/onlineEdit" |
"/pages-sub/online/online" |
"/pages-sub/online/onlineCard" |
2025-05-19 01:52:19 +00:00
"/pages-sub/online/onlineTable" |
"/pages-operate/file/detail" |
"/pages-operate/file/index" |
"/pages-operate/sc/index" |
2025-05-19 07:23:48 +00:00
"/pages-humanResource/absence/add" |
2025-05-20 10:45:08 +00:00
"/pages-humanResource/absence/detail" |
2025-05-19 01:52:19 +00:00
"/pages-humanResource/absence/index" |
2025-05-22 07:30:36 +00:00
"/pages-humanResource/personnel/ageStatistics" |
"/pages-humanResource/personnel/detail" |
"/pages-humanResource/personnel/generalFieldStatistics" |
"/pages-humanResource/personnel/index" |
"/pages-humanResource/personnel/standingbook" |
2025-05-19 07:23:48 +00:00
"/pages-integrated/duty/index" |
"/pages-politics/health/add" |
2025-06-25 01:07:54 +00:00
"/pages-politics/health/followup" |
2025-06-26 00:38:28 +00:00
"/pages-politics/healthfollow/HealthDetails" |
"/pages-politics/healthfollow/lookhealth" |
2025-06-24 08:51:53 +00:00
"/pages-politics/healthfollow/send" |
"/pages-politics/healthfollow/sendmessage" |
2025-05-19 07:23:48 +00:00
"/pages-process/approvalTabbar" |
2025-05-27 09:03:21 +00:00
"/pages-process/myApplyProcess" |
2025-05-23 01:48:28 +00:00
"/pages-process/taskHandle" |
2025-06-24 08:51:53 +00:00
"/pages-bpm/carRental/index" |
"/pages-bpm/document/index" |
"/pages-bpm/khss/index" |
"/pages-bpm/lawsAndRegulations/index" |
"/pages-bpm/leaveApplication/index" |
"/pages-bpm/OfficeEquipmentMaintenanceApplication/index" |
2025-07-24 09:23:59 +00:00
"/pages-bpm/planReview/index" |
2025-06-24 08:51:53 +00:00
"/pages-bpm/SuperiorSystem/index" |
2025-06-12 04:34:30 +00:00
"/pages-bpm/unconventional/index" |
2025-06-15 02:44:00 +00:00
"/pages-bpm/unconventional/stamp" |
"/pages-bpm/zbkh/index";
2025-04-29 08:37:17 +00:00
}
interface RedirectToOptions extends NavigateToOptions {}
interface SwitchTabOptions {
url: "/pages/index/index" | "/pages/production/index" | "/pages/operation/index" | "/pages/user/people"
2025-04-29 08:37:17 +00:00
}
type ReLaunchOptions = NavigateToOptions | SwitchTabOptions;
declare interface Uni {
navigateTo(options: UniNamespace.NavigateToOptions & NavigateToOptions): void;
redirectTo(options: UniNamespace.RedirectToOptions & RedirectToOptions): void;
switchTab(options: UniNamespace.SwitchTabOptions & SwitchTabOptions): void;
reLaunch(options: UniNamespace.ReLaunchOptions & ReLaunchOptions): void;
}