@ibiz-template/runtime 0.5.7-alpha.7 → 0.5.7-alpha.8
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.esm.js +22 -3
- package/dist/index.system.min.js +1 -1
- package/out/application.d.ts.map +1 -1
- package/out/application.js +1 -0
- package/out/controller/control/search-bar/search-bar.controller.d.ts.map +1 -1
- package/out/controller/control/search-bar/search-bar.controller.js +1 -1
- package/out/install.d.ts.map +1 -1
- package/out/install.js +2 -5
- package/out/interface/service/service/i-mark-open-data.service.d.ts +13 -0
- package/out/interface/service/service/i-mark-open-data.service.d.ts.map +1 -0
- package/out/interface/service/service/i-mark-open-data.service.js +1 -0
- package/out/interface/service/service/index.d.ts +1 -0
- package/out/interface/service/service/index.d.ts.map +1 -1
- package/out/service/service/index.d.ts +1 -0
- package/out/service/service/index.d.ts.map +1 -1
- package/out/service/service/index.js +1 -0
- package/out/service/service/mark-open-data/mark-open-data.service.d.ts +12 -0
- package/out/service/service/mark-open-data/mark-open-data.service.d.ts.map +1 -0
- package/out/service/service/mark-open-data/mark-open-data.service.js +14 -0
- package/out/types.d.ts +8 -17
- package/out/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/application.ts +2 -0
- package/src/controller/control/search-bar/search-bar.controller.ts +1 -1
- package/src/install.ts +2 -6
- package/src/interface/service/service/i-mark-open-data.service.ts +18 -0
- package/src/interface/service/service/index.ts +4 -0
- package/src/service/service/index.ts +1 -0
- package/src/service/service/mark-open-data/mark-open-data.service.ts +25 -0
- package/src/types.ts +9 -20
package/dist/index.esm.js
CHANGED
|
@@ -11430,6 +11430,24 @@ var InternalMessageService = class {
|
|
|
11430
11430
|
}
|
|
11431
11431
|
};
|
|
11432
11432
|
|
|
11433
|
+
// src/service/service/mark-open-data/mark-open-data.service.ts
|
|
11434
|
+
var MarkOpenDataService = class {
|
|
11435
|
+
constructor() {
|
|
11436
|
+
/**
|
|
11437
|
+
* 基础路径
|
|
11438
|
+
* @author lxm
|
|
11439
|
+
* @date 2024-01-23 02:06:47
|
|
11440
|
+
*/
|
|
11441
|
+
this.baseUrl = "/portal/markopendata";
|
|
11442
|
+
}
|
|
11443
|
+
async action(deName, key, action) {
|
|
11444
|
+
const res = await ibiz.net.get(
|
|
11445
|
+
"".concat(this.baseUrl, "/").concat(deName, "/").concat(key, "/").concat(action)
|
|
11446
|
+
);
|
|
11447
|
+
return res;
|
|
11448
|
+
}
|
|
11449
|
+
};
|
|
11450
|
+
|
|
11433
11451
|
// src/service/vo/tree-node-data/tree-node-data.ts
|
|
11434
11452
|
import { createUUID as createUUID5 } from "qx-util";
|
|
11435
11453
|
var TreeNodeData = class {
|
|
@@ -12919,6 +12937,7 @@ var Application = class {
|
|
|
12919
12937
|
this.model.appId
|
|
12920
12938
|
);
|
|
12921
12939
|
this.mqtt.evt.on("message", (message) => {
|
|
12940
|
+
console.log("message", message);
|
|
12922
12941
|
ibiz.mc.command.next(message);
|
|
12923
12942
|
});
|
|
12924
12943
|
await this.mqtt.connect();
|
|
@@ -28088,7 +28107,7 @@ var SearchBarController = class extends ControlController {
|
|
|
28088
28107
|
* @author lxm
|
|
28089
28108
|
* @date 2024-01-05 10:10:37
|
|
28090
28109
|
*/
|
|
28091
|
-
this.addSchemaFilters =
|
|
28110
|
+
this.addSchemaFilters = false;
|
|
28092
28111
|
}
|
|
28093
28112
|
/**
|
|
28094
28113
|
* 启用自定义过滤项
|
|
@@ -35592,10 +35611,9 @@ function install2() {
|
|
|
35592
35611
|
ibiz2.register = new RegisterCenter();
|
|
35593
35612
|
ibiz2.config = new GlobalConfig();
|
|
35594
35613
|
ibiz2.auth = new V7AuthService();
|
|
35595
|
-
ibiz2.asyncAction = new AsyncActionService();
|
|
35596
|
-
ibiz2.internalMessage = new InternalMessageService();
|
|
35597
35614
|
ibiz2.engine = new EngineFactory();
|
|
35598
35615
|
ibiz2.uiDomainManager = new UIDomainManager();
|
|
35616
|
+
ibiz2.markOpenData = new MarkOpenDataService();
|
|
35599
35617
|
installCommand();
|
|
35600
35618
|
presetUIActionProvider();
|
|
35601
35619
|
presetDEMethodProvider();
|
|
@@ -35822,6 +35840,7 @@ export {
|
|
|
35822
35840
|
MapController,
|
|
35823
35841
|
MapData,
|
|
35824
35842
|
MapService,
|
|
35843
|
+
MarkOpenDataService,
|
|
35825
35844
|
MenuPortletController,
|
|
35826
35845
|
Method,
|
|
35827
35846
|
MethodDto,
|