cloud-web-corejs 1.0.54-dev.96 → 1.0.54-dev.99
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 +1 -1
- package/src/components/fileLibrary/filterDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +989 -1
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +26 -2
- package/src/components/xform/form-designer/indexMixin.js +8 -0
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +322 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/eventMixin.js +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +20 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +66 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +2 -2
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +4 -3
- package/src/components/xform/utils/emitter.js +4 -4
@@ -757,7 +757,8 @@ export const defaultSearchDialogConfig = {
|
|
757
757
|
tableRef: null,
|
758
758
|
tableUniqueKey: null,
|
759
759
|
tableData: [],
|
760
|
-
multipleChoices: true
|
760
|
+
multipleChoices: true,
|
761
|
+
confirmCallback:null
|
761
762
|
}
|
762
763
|
|
763
764
|
export const basicFields = [
|
@@ -3055,14 +3056,14 @@ export const advancedFields = [
|
|
3055
3056
|
{
|
3056
3057
|
type: "project-tag",
|
3057
3058
|
icon: "uploadbox",
|
3058
|
-
|
3059
|
+
commonFlag: !0,
|
3059
3060
|
formItemFlag: !0,
|
3060
3061
|
tableField: null,
|
3061
3062
|
options: {
|
3062
3063
|
name: "",
|
3063
3064
|
keyNameEnabled: !1,
|
3064
3065
|
keyName: "",
|
3065
|
-
keyNameSuffix: "",
|
3066
|
+
// keyNameSuffix: "",
|
3066
3067
|
label: "",
|
3067
3068
|
submitFlag: true,
|
3068
3069
|
disabled: !1,
|
@@ -13,7 +13,7 @@ function broadcast(componentName, eventName, params) {
|
|
13
13
|
|
14
14
|
export default {
|
15
15
|
methods: {
|
16
|
-
dispatch(componentName, eventName, params,
|
16
|
+
dispatch(componentName, eventName, params, option) {
|
17
17
|
|
18
18
|
var parent = this.$parent || this.$root;
|
19
19
|
var name = parent.$options.componentName;
|
@@ -25,15 +25,15 @@ export default {
|
|
25
25
|
name = parent.$options.componentName;
|
26
26
|
}
|
27
27
|
}
|
28
|
-
if (isFormSetting) {
|
28
|
+
/*if (isFormSetting) {
|
29
29
|
if (window.formSettingPanelRef) {
|
30
30
|
parent = window.formSettingPanelRef;
|
31
31
|
}
|
32
|
-
}
|
32
|
+
}*/
|
33
33
|
|
34
34
|
if (parent) {
|
35
35
|
let data = [eventName].concat(params);
|
36
|
-
data.push(
|
36
|
+
data.push(option)
|
37
37
|
parent.$emit.apply(parent, data);
|
38
38
|
}
|
39
39
|
},
|