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.
@@ -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
- // commonFlag: !0,
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, isFormSetting) {
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(isFormSetting)
36
+ data.push(option)
37
37
  parent.$emit.apply(parent, data);
38
38
  }
39
39
  },