| 12345678910111213141516171819202122232425 |
- /*******************************************************************************
- * Copyright(c) 2024 dongke All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:
- * 2.功能描述:活动查询方法
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 周兴 2024-4-1 1.00 新建
- *******************************************************************************/
- module.exports = {
- activityService: {
- // 前缀
- prefix: 'oauth-server/activity/',
- // 查询活动明细
- selectActivityItems:'select_activity_items',
- },
- routeUrl: {
- activity: {
- buyUpgrade: { key: 'buyUpgrade', url: '/package-basic-data/pages/activity/activity?upgrade=true' ,},
- buyHistory: { key: 'buyHistory', url: '/package-basic-data/pages/func-buy/added/added' ,},
- }
- }
- };
|