@ningboyz/apis 1.1.4 → 1.1.6
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/package.json +2 -2
- package/packages/card/main.ts +12 -1
- package/packages/card/type.ts +15 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政请求库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ningboyz/types": "1.1.
|
|
20
|
+
"@ningboyz/types": "1.1.6",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/card/main.ts
CHANGED
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
ICardMainSelectd4Querys,
|
|
17
17
|
ICardMainUpdated3Querys,
|
|
18
18
|
ICardMainUpdatedbQuerys,
|
|
19
|
-
ICardMainUploadd2Querys
|
|
19
|
+
ICardMainUploadd2Querys, ICardMainUploadd3Querys
|
|
20
20
|
} from "./type";
|
|
21
21
|
import { IParams } from "../type";
|
|
22
22
|
|
|
@@ -126,6 +126,17 @@ class MainRequest {
|
|
|
126
126
|
return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/uploadd2", querys, params);
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* 生成资产卡片(不带使用部门)
|
|
132
|
+
* @param querys
|
|
133
|
+
* @param params
|
|
134
|
+
* @returns
|
|
135
|
+
*/
|
|
136
|
+
uploadd3(querys: ICardMainUploadd3Querys, params: object) {
|
|
137
|
+
return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/card/tmain/uploadd3", querys, params);
|
|
138
|
+
}
|
|
139
|
+
|
|
129
140
|
/**
|
|
130
141
|
* 获取登记已办业务
|
|
131
142
|
*/
|
package/packages/card/type.ts
CHANGED
|
@@ -185,11 +185,26 @@ export class TCardMainDetaild2Querys implements ICardMainDetaild2Querys {
|
|
|
185
185
|
export interface ICardMainUploadd2Querys {
|
|
186
186
|
sourcend: number;
|
|
187
187
|
zclbtype: number;
|
|
188
|
+
sysclasc: number;
|
|
188
189
|
}
|
|
189
190
|
|
|
190
191
|
export class TCardMainUploadd2Querys implements ICardMainUploadd2Querys {
|
|
191
192
|
sourcend: number = -1;
|
|
192
193
|
zclbtype: number = -1;
|
|
194
|
+
sysclasc: number = 0;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
export interface ICardMainUploadd3Querys {
|
|
199
|
+
sourcend: number;
|
|
200
|
+
zclbtype: number;
|
|
201
|
+
sysclasc: number;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export class TCardMainUploadd3Querys implements ICardMainUploadd3Querys {
|
|
205
|
+
sourcend: number = -1;
|
|
206
|
+
zclbtype: number = -1;
|
|
207
|
+
sysclasc: number = 0;
|
|
193
208
|
}
|
|
194
209
|
|
|
195
210
|
export interface ICardMainGet4dataQuerys {
|