@egova/egova-api 1.0.78 → 1.0.79
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/index.common.js +20 -2
- package/dist/index.umd.js +20 -2
- package/dist/index.umd.min.js +3 -3
- package/dist/types/src/components/common-tree/index.d.ts +52 -0
- package/dist/types/src/services/common-service.d.ts +2 -0
- package/dist/types/src/views/project-combine/api-project/api-project-detail/api/index.d.ts +16 -0
- package/dist/types/src/views/project-combine/api-project/api-project-detail/catalog/index.d.ts +6 -0
- package/dist/types/src/views/project-combine/api-project/api-project-detail/ddcat/index.d.ts +6 -0
- package/dist/types/src/views/project-combine/api-project/api-project-detail/index.d.ts +10 -0
- package/dist/types/src/views/project-combine/api-project/api-project-list/index.d.ts +60 -0
- package/dist/types/src/views/project-combine/api-project/index.d.ts +70 -0
- package/dist/types/src/views/project-combine/api-project/service.d.ts +6 -0
- package/dist/types/src/views/project-combine/combine-model/base-editor/index.d.ts +8 -0
- package/dist/types/src/views/project-combine/combine-model/index.d.ts +59 -0
- package/dist/types/src/views/project-combine/combine-model/request-parameter-list/index.d.ts +35 -0
- package/dist/types/src/views/project-combine/combine-model/response-parameter-list/index.d.ts +4 -0
- package/dist/types/src/views/project-combine/combine-model/test-run-modal/index.d.ts +19 -0
- package/dist/types/src/views/project-combine/data-model/data-model-doc/index.d.ts +13 -0
- package/dist/types/src/views/project-combine/data-model/data-model-list/index.d.ts +60 -0
- package/dist/types/src/views/project-combine/data-model/index.d.ts +60 -0
- package/dist/types/src/views/project-combine/data-model/service.d.ts +5 -0
- package/dist/types/src/views/project-combine/index.d.ts +34 -0
- package/dist/types/src/views/project-combine/service.d.ts +12 -0
- package/dist/types/src/views/project-combine/tree/add-node-modal/index.d.ts +16 -0
- package/dist/types/src/views/project-combine/tree/index.d.ts +32 -0
- package/dist/types/src/views/project-combine/tree/node/index.d.ts +11 -0
- package/dist/types/src/views/project-combine/tree/service.d.ts +5 -0
- package/package.json +4 -2
package/dist/index.common.js
CHANGED
|
@@ -47961,10 +47961,10 @@ function () {
|
|
|
47961
47961
|
list && list.forEach(function (v) {
|
|
47962
47962
|
v.title = v[titleName];
|
|
47963
47963
|
v.checked = false;
|
|
47964
|
+
v.expand = false;
|
|
47964
47965
|
v.selected = false;
|
|
47965
47966
|
v.indeterminate = false;
|
|
47966
|
-
v.
|
|
47967
|
-
v.children = TreeDataUtil.handlerTreeData(v.children, titleName, detailName, detailTitleName);
|
|
47967
|
+
v.children = TreeDataUtil.handlerTreeData(v.children, titleName, detailName, detailTitleName, filterEmpty);
|
|
47968
47968
|
|
|
47969
47969
|
if (detailName) {
|
|
47970
47970
|
var tmp = v[detailName];
|
|
@@ -47975,6 +47975,7 @@ function () {
|
|
|
47975
47975
|
item.checked = false;
|
|
47976
47976
|
item.selected = false;
|
|
47977
47977
|
item.indeterminate = false;
|
|
47978
|
+
item.expand = false;
|
|
47978
47979
|
item.parentId = v.id;
|
|
47979
47980
|
item.parentName = v.title;
|
|
47980
47981
|
return item;
|
|
@@ -48773,6 +48774,7 @@ var base_service = __webpack_require__("e184");
|
|
|
48773
48774
|
|
|
48774
48775
|
|
|
48775
48776
|
|
|
48777
|
+
|
|
48776
48778
|
var common_service_extends = undefined && undefined.__extends || function () {
|
|
48777
48779
|
var _extendStatics = function extendStatics(d, b) {
|
|
48778
48780
|
_extendStatics = Object.setPrototypeOf || {
|
|
@@ -48839,10 +48841,20 @@ function (_super) {
|
|
|
48839
48841
|
return this._delete("/unity/api/category/".concat(categoryId));
|
|
48840
48842
|
};
|
|
48841
48843
|
|
|
48844
|
+
CommonService.prototype.getCategoryTree = function (type) {
|
|
48845
|
+
return this._get("/unity/category/tree?type=".concat(type));
|
|
48846
|
+
};
|
|
48847
|
+
|
|
48842
48848
|
CommonService.prototype.getEnumByType = function (name) {
|
|
48843
48849
|
return this._get("/free/display/".concat(name));
|
|
48844
48850
|
};
|
|
48845
48851
|
|
|
48852
|
+
CommonService.prototype.getItemListByType = function (type) {
|
|
48853
|
+
return this._get("/free/display/".concat(type));
|
|
48854
|
+
};
|
|
48855
|
+
|
|
48856
|
+
var _a;
|
|
48857
|
+
|
|
48846
48858
|
common_service_decorate([serviceHandler("save", {
|
|
48847
48859
|
title: "保存分组",
|
|
48848
48860
|
showTip: true,
|
|
@@ -48855,12 +48867,18 @@ function (_super) {
|
|
|
48855
48867
|
showErrorMsg: true
|
|
48856
48868
|
}), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [Object]), common_service_metadata("design:returntype", void 0)], CommonService.prototype, "deleteCategory", null);
|
|
48857
48869
|
|
|
48870
|
+
common_service_decorate([serviceHandler("query", {
|
|
48871
|
+
title: "查询分类树"
|
|
48872
|
+
}), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [String]), common_service_metadata("design:returntype", void 0)], CommonService.prototype, "getCategoryTree", null);
|
|
48873
|
+
|
|
48858
48874
|
common_service_decorate([serviceHandler("query", {
|
|
48859
48875
|
title: "查询枚举数据",
|
|
48860
48876
|
showTip: true,
|
|
48861
48877
|
showErrorMsg: true
|
|
48862
48878
|
}), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [String]), common_service_metadata("design:returntype", void 0)], CommonService.prototype, "getEnumByType", null);
|
|
48863
48879
|
|
|
48880
|
+
common_service_decorate([serviceHandler("query"), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [String]), common_service_metadata("design:returntype", typeof (_a = typeof Promise !== "undefined" && Promise) === "function" ? _a : Object)], CommonService.prototype, "getItemListByType", null);
|
|
48881
|
+
|
|
48864
48882
|
return CommonService;
|
|
48865
48883
|
}(base_service["a" /* default */]);
|
|
48866
48884
|
|
package/dist/index.umd.js
CHANGED
|
@@ -47970,10 +47970,10 @@ function () {
|
|
|
47970
47970
|
list && list.forEach(function (v) {
|
|
47971
47971
|
v.title = v[titleName];
|
|
47972
47972
|
v.checked = false;
|
|
47973
|
+
v.expand = false;
|
|
47973
47974
|
v.selected = false;
|
|
47974
47975
|
v.indeterminate = false;
|
|
47975
|
-
v.
|
|
47976
|
-
v.children = TreeDataUtil.handlerTreeData(v.children, titleName, detailName, detailTitleName);
|
|
47976
|
+
v.children = TreeDataUtil.handlerTreeData(v.children, titleName, detailName, detailTitleName, filterEmpty);
|
|
47977
47977
|
|
|
47978
47978
|
if (detailName) {
|
|
47979
47979
|
var tmp = v[detailName];
|
|
@@ -47984,6 +47984,7 @@ function () {
|
|
|
47984
47984
|
item.checked = false;
|
|
47985
47985
|
item.selected = false;
|
|
47986
47986
|
item.indeterminate = false;
|
|
47987
|
+
item.expand = false;
|
|
47987
47988
|
item.parentId = v.id;
|
|
47988
47989
|
item.parentName = v.title;
|
|
47989
47990
|
return item;
|
|
@@ -48782,6 +48783,7 @@ var base_service = __webpack_require__("e184");
|
|
|
48782
48783
|
|
|
48783
48784
|
|
|
48784
48785
|
|
|
48786
|
+
|
|
48785
48787
|
var common_service_extends = undefined && undefined.__extends || function () {
|
|
48786
48788
|
var _extendStatics = function extendStatics(d, b) {
|
|
48787
48789
|
_extendStatics = Object.setPrototypeOf || {
|
|
@@ -48848,10 +48850,20 @@ function (_super) {
|
|
|
48848
48850
|
return this._delete("/unity/api/category/".concat(categoryId));
|
|
48849
48851
|
};
|
|
48850
48852
|
|
|
48853
|
+
CommonService.prototype.getCategoryTree = function (type) {
|
|
48854
|
+
return this._get("/unity/category/tree?type=".concat(type));
|
|
48855
|
+
};
|
|
48856
|
+
|
|
48851
48857
|
CommonService.prototype.getEnumByType = function (name) {
|
|
48852
48858
|
return this._get("/free/display/".concat(name));
|
|
48853
48859
|
};
|
|
48854
48860
|
|
|
48861
|
+
CommonService.prototype.getItemListByType = function (type) {
|
|
48862
|
+
return this._get("/free/display/".concat(type));
|
|
48863
|
+
};
|
|
48864
|
+
|
|
48865
|
+
var _a;
|
|
48866
|
+
|
|
48855
48867
|
common_service_decorate([serviceHandler("save", {
|
|
48856
48868
|
title: "保存分组",
|
|
48857
48869
|
showTip: true,
|
|
@@ -48864,12 +48876,18 @@ function (_super) {
|
|
|
48864
48876
|
showErrorMsg: true
|
|
48865
48877
|
}), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [Object]), common_service_metadata("design:returntype", void 0)], CommonService.prototype, "deleteCategory", null);
|
|
48866
48878
|
|
|
48879
|
+
common_service_decorate([serviceHandler("query", {
|
|
48880
|
+
title: "查询分类树"
|
|
48881
|
+
}), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [String]), common_service_metadata("design:returntype", void 0)], CommonService.prototype, "getCategoryTree", null);
|
|
48882
|
+
|
|
48867
48883
|
common_service_decorate([serviceHandler("query", {
|
|
48868
48884
|
title: "查询枚举数据",
|
|
48869
48885
|
showTip: true,
|
|
48870
48886
|
showErrorMsg: true
|
|
48871
48887
|
}), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [String]), common_service_metadata("design:returntype", void 0)], CommonService.prototype, "getEnumByType", null);
|
|
48872
48888
|
|
|
48889
|
+
common_service_decorate([serviceHandler("query"), common_service_metadata("design:type", Function), common_service_metadata("design:paramtypes", [String]), common_service_metadata("design:returntype", typeof (_a = typeof Promise !== "undefined" && Promise) === "function" ? _a : Object)], CommonService.prototype, "getItemListByType", null);
|
|
48890
|
+
|
|
48873
48891
|
return CommonService;
|
|
48874
48892
|
}(base_service["a" /* default */]);
|
|
48875
48893
|
|