@freelog/tools-lib 0.1.189 → 0.1.190
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 -14
- 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 -14
- 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/payment.ts +1 -1
- package/src/utils/linkTo.ts +18 -0
package/dist/utils/linkTo.d.ts
CHANGED
|
@@ -209,6 +209,14 @@ interface GlobalSearchParamsType {
|
|
|
209
209
|
search: string;
|
|
210
210
|
}
|
|
211
211
|
export declare function globalSearch({ search }: GlobalSearchParamsType): string;
|
|
212
|
+
interface SettlementInfoParamsType {
|
|
213
|
+
nodeID?: number;
|
|
214
|
+
}
|
|
215
|
+
export declare function settlementInfo({ nodeID }: SettlementInfoParamsType): string;
|
|
216
|
+
interface SettlementInfoEditorParamsType {
|
|
217
|
+
nodeID?: number;
|
|
218
|
+
}
|
|
219
|
+
export declare function settlementInfoEditor({ nodeID }: SettlementInfoEditorParamsType): string;
|
|
212
220
|
/************** console End ******************************************************/
|
|
213
221
|
/************** user Start ******************************************************/
|
|
214
222
|
interface LoginParamsType {
|
package/package.json
CHANGED
|
@@ -119,7 +119,7 @@ interface QueryWithdrawCashListParamsType {
|
|
|
119
119
|
export function queryWithdrawCashList(params: QueryWithdrawCashListParamsType, config?: AxiosRequestConfig) {
|
|
120
120
|
return FUtil.Request({
|
|
121
121
|
method: 'GET',
|
|
122
|
-
url: `/v3/transactions/withdrawCash/
|
|
122
|
+
url: `/v3/transactions/withdrawCash/records`,
|
|
123
123
|
params: params,
|
|
124
124
|
...config,
|
|
125
125
|
});
|
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 ******************************************************/
|