@ibiz-template/runtime 0.7.41-alpha.75 → 0.7.41-alpha.77
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 +5 -3
- package/dist/index.system.min.js +1 -1
- package/out/config/global-config.d.ts.map +1 -1
- package/out/config/global-config.js +2 -0
- package/out/controller/control/form/edit-form/edit-form.controller.js +2 -2
- package/out/interface/api/common/global-config/i-api-global-common-config.d.ts +16 -0
- package/out/interface/api/common/global-config/i-api-global-common-config.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -19443,7 +19443,9 @@ var GlobalConfig = class {
|
|
|
19443
19443
|
reRankDefaultValue: 2,
|
|
19444
19444
|
maxChunksDefaultValue: 10,
|
|
19445
19445
|
chunkThresholdDefaultValue: 0.1,
|
|
19446
|
-
enableAsyncActionNotice: false
|
|
19446
|
+
enableAsyncActionNotice: false,
|
|
19447
|
+
aiChunkView: "",
|
|
19448
|
+
aiChunkEntity: ""
|
|
19447
19449
|
};
|
|
19448
19450
|
// 全局分页流布局配置
|
|
19449
19451
|
this.drtab = {
|
|
@@ -58711,7 +58713,7 @@ var EditFormController = class extends FormController {
|
|
|
58711
58713
|
await this.service.wfStart(context, params, this.data);
|
|
58712
58714
|
if (!this.context.srfignorechange) {
|
|
58713
58715
|
this.emitDEDataChange("update", this.data);
|
|
58714
|
-
this.emitDEDataChange("
|
|
58716
|
+
this.emitDEDataChange("create", { srfdecodename: "SysTodo" });
|
|
58715
58717
|
}
|
|
58716
58718
|
} catch (error) {
|
|
58717
58719
|
this.actionNotification("WFSTARTERROR", {
|
|
@@ -58749,7 +58751,7 @@ var EditFormController = class extends FormController {
|
|
|
58749
58751
|
await this.service.wfSubmit(context, params, this.data);
|
|
58750
58752
|
if (!this.context.srfignorechange) {
|
|
58751
58753
|
this.emitDEDataChange("update", this.data);
|
|
58752
|
-
this.emitDEDataChange("
|
|
58754
|
+
this.emitDEDataChange("create", { srfdecodename: "SysTodo" });
|
|
58753
58755
|
}
|
|
58754
58756
|
} catch (error) {
|
|
58755
58757
|
this.actionNotification("WFSUBMITERROR", {
|