@freelog/tools-lib 0.1.193 → 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.
@@ -209,14 +209,22 @@ interface GlobalSearchParamsType {
209
209
  search: string;
210
210
  }
211
211
  export declare function globalSearch({ search }: GlobalSearchParamsType): string;
212
- interface SettlementInfoParamsType {
212
+ interface SettlementInfoCreatorParamsType {
213
213
  nodeID?: number;
214
214
  }
215
- export declare function settlementInfo({ nodeID }: SettlementInfoParamsType): string;
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
- nodeID?: number;
221
+ accountID: string;
222
+ }
223
+ export declare function settlementInfoEditor({ accountID }: SettlementInfoEditorParamsType): string;
224
+ interface SettlementBankCardEditorParamsType {
225
+ accountID: string;
218
226
  }
219
- export declare function settlementInfoEditor({ nodeID }: SettlementInfoEditorParamsType): string;
227
+ export declare function settlementBankCardEditor({ accountID }: SettlementBankCardEditorParamsType): string;
220
228
  /************** console End ******************************************************/
221
229
  /************** user Start ******************************************************/
222
230
  interface LoginParamsType {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freelog/tools-lib",
3
- "version": "0.1.193",
3
+ "version": "0.1.195",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -350,7 +350,8 @@ interface GetTopicInfoParamsType {
350
350
  export function getTopicInfo(params: GetTopicInfoParamsType) {
351
351
  return FUtil.Request({
352
352
  method: 'GET',
353
- url: `/v2/activities/item/getInfoByCode`,
353
+ // url: `/v2/activities/item/getInfoByCode`,
354
+ url: `/v2/activities/item/getInfoByCode4Client`,
354
355
  params: params,
355
356
  });
356
357
  }
@@ -562,24 +562,43 @@ export function globalSearch({ search }: GlobalSearchParamsType) {
562
562
  })}`;
563
563
  }
564
564
 
565
- // 结算信息
566
- interface SettlementInfoParamsType {
565
+ // 结算信息创建
566
+ interface SettlementInfoCreatorParamsType {
567
567
  nodeID?: number;
568
568
  }
569
569
 
570
- export function settlementInfo({ nodeID }: SettlementInfoParamsType) {
571
- return `/settlementInfo${handleQuery({ nodeID })}`;
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
- nodeID?: number;
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 settlementInfoEditor({ nodeID }: SettlementInfoEditorParamsType) {
580
- return `/settlementEditor${handleQuery({ nodeID })}`;
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 ******************************************************/