@freelog/tools-lib 0.1.189 → 0.1.191
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 +9 -0
- package/dist/tools-lib.cjs.development.js +45 -15
- 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 +45 -15
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +8 -0
- package/package.json +1 -1
- package/src/service-API/activities.ts +342 -314
- package/src/service-API/payment.ts +1 -1
- package/src/utils/linkTo.ts +18 -0
package/src/utils/linkTo.ts
CHANGED
|
@@ -562,6 +562,24 @@ export function globalSearch({ search }: GlobalSearchParamsType) {
|
|
|
562
562
|
})}`;
|
|
563
563
|
}
|
|
564
564
|
|
|
565
|
+
// 结算信息
|
|
566
|
+
interface SettlementInfoParamsType {
|
|
567
|
+
nodeID?: number;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
export function settlementInfo({ nodeID }: SettlementInfoParamsType) {
|
|
571
|
+
return `/settlementInfo${handleQuery({ nodeID })}`;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
// 结算信息编辑
|
|
575
|
+
interface SettlementInfoEditorParamsType {
|
|
576
|
+
nodeID?: number;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
export function settlementInfoEditor({ nodeID }: SettlementInfoEditorParamsType) {
|
|
580
|
+
return `/settlementEditor${handleQuery({ nodeID })}`;
|
|
581
|
+
}
|
|
582
|
+
|
|
565
583
|
/************** console End ******************************************************/
|
|
566
584
|
|
|
567
585
|
/************** user Start ******************************************************/
|