@freelog/tools-lib 0.1.84 → 0.1.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/service-API/activities.d.ts +2 -0
- package/dist/tools-lib.cjs.development.js +2 -2
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +2 -2
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/activities.ts +2 -0
- package/src/utils/linkTo.ts +2 -2
package/package.json
CHANGED
package/src/utils/linkTo.ts
CHANGED
|
@@ -18,7 +18,7 @@ interface ActivitiesParamsType {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export function activities({}: ActivitiesParamsType = {}) {
|
|
21
|
-
return `/
|
|
21
|
+
return `/activities`;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
// 活动详情
|
|
@@ -27,7 +27,7 @@ interface ActivitiesParamsType {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export function activity({activityID}: ActivitiesParamsType) {
|
|
30
|
-
return `/
|
|
30
|
+
return `/activity/${activityID}`;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
/************** www End ******************************************************/
|