@freelog/tools-lib 0.1.194 → 0.1.195
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/tools-lib.cjs.development.js +28 -20
- 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 +28 -20
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +12 -4
- package/package.json +1 -1
- package/src/utils/linkTo.ts +26 -7
package/dist/utils/linkTo.d.ts
CHANGED
|
@@ -209,14 +209,22 @@ interface GlobalSearchParamsType {
|
|
|
209
209
|
search: string;
|
|
210
210
|
}
|
|
211
211
|
export declare function globalSearch({ search }: GlobalSearchParamsType): string;
|
|
212
|
-
interface
|
|
212
|
+
interface SettlementInfoCreatorParamsType {
|
|
213
213
|
nodeID?: number;
|
|
214
214
|
}
|
|
215
|
-
export declare function
|
|
215
|
+
export declare function settlementInfoCreator({ nodeID }: SettlementInfoCreatorParamsType): string;
|
|
216
|
+
interface SettlementInfoParamsType {
|
|
217
|
+
accountID: string;
|
|
218
|
+
}
|
|
219
|
+
export declare function settlementInfo({ accountID }: SettlementInfoParamsType): string;
|
|
216
220
|
interface SettlementInfoEditorParamsType {
|
|
217
|
-
|
|
221
|
+
accountID: string;
|
|
222
|
+
}
|
|
223
|
+
export declare function settlementInfoEditor({ accountID }: SettlementInfoEditorParamsType): string;
|
|
224
|
+
interface SettlementBankCardEditorParamsType {
|
|
225
|
+
accountID: string;
|
|
218
226
|
}
|
|
219
|
-
export declare function
|
|
227
|
+
export declare function settlementBankCardEditor({ accountID }: SettlementBankCardEditorParamsType): string;
|
|
220
228
|
/************** console End ******************************************************/
|
|
221
229
|
/************** user Start ******************************************************/
|
|
222
230
|
interface LoginParamsType {
|
package/package.json
CHANGED
package/src/utils/linkTo.ts
CHANGED
|
@@ -562,24 +562,43 @@ export function globalSearch({ search }: GlobalSearchParamsType) {
|
|
|
562
562
|
})}`;
|
|
563
563
|
}
|
|
564
564
|
|
|
565
|
-
//
|
|
566
|
-
interface
|
|
565
|
+
// 结算信息创建
|
|
566
|
+
interface SettlementInfoCreatorParamsType {
|
|
567
567
|
nodeID?: number;
|
|
568
568
|
}
|
|
569
569
|
|
|
570
|
-
export function
|
|
571
|
-
return `/
|
|
570
|
+
export function settlementInfoCreator({ nodeID }: SettlementInfoCreatorParamsType) {
|
|
571
|
+
return `/settlementCreator${handleQuery({ nodeID })}`;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
// 结算信息详情
|
|
575
|
+
interface SettlementInfoParamsType {
|
|
576
|
+
accountID: string;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
export function settlementInfo({ accountID }: SettlementInfoParamsType) {
|
|
580
|
+
return `/settlementInfo/${accountID}`;
|
|
572
581
|
}
|
|
573
582
|
|
|
574
583
|
// 结算信息编辑
|
|
575
584
|
interface SettlementInfoEditorParamsType {
|
|
576
|
-
|
|
585
|
+
accountID: string;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
export function settlementInfoEditor({ accountID }: SettlementInfoEditorParamsType) {
|
|
589
|
+
return `/settlementEditor/${accountID}`;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
// 结算银行卡编辑
|
|
593
|
+
interface SettlementBankCardEditorParamsType {
|
|
594
|
+
accountID: string;
|
|
577
595
|
}
|
|
578
596
|
|
|
579
|
-
export function
|
|
580
|
-
return `/
|
|
597
|
+
export function settlementBankCardEditor({ accountID }: SettlementBankCardEditorParamsType) {
|
|
598
|
+
return `/settlementBankCardEditor/${accountID}`;
|
|
581
599
|
}
|
|
582
600
|
|
|
601
|
+
// 结算银行卡详情
|
|
583
602
|
/************** console End ******************************************************/
|
|
584
603
|
|
|
585
604
|
/************** user Start ******************************************************/
|