@ningboyz/apis 1.1.165 → 1.1.166
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/tabl/main.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.166",
|
|
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.166",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/tabl/main.ts
CHANGED
|
@@ -56,6 +56,11 @@ class MainRequest {
|
|
|
56
56
|
return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/modifyd2", undefined, params);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
+
// 普通修改-不保留历史记录
|
|
60
|
+
updatedb(params: object) {
|
|
61
|
+
return this.httpRequest.post<TTabl.ITablMainResponse[]>("/tabl/tmain/updatedb", undefined, params);
|
|
62
|
+
}
|
|
63
|
+
|
|
59
64
|
/**
|
|
60
65
|
* 删除动态表单
|
|
61
66
|
* @param params
|
|
@@ -169,6 +174,9 @@ class MainRequest {
|
|
|
169
174
|
get5formula(querys: ITablMainGet5formulaQuerys, params: object) {
|
|
170
175
|
return this.httpRequest.post<TTabl.ITablDataResponse[]>("/tabl/tmain/get5formula", querys, params);
|
|
171
176
|
}
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
172
180
|
}
|
|
173
181
|
|
|
174
182
|
export default MainRequest;
|