centaline-data-driven-v3 0.1.48 → 0.1.49

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven-v3",
3
- "version": "0.1.48",
3
+ "version": "0.1.49",
4
4
  "private": false,
5
5
  "description": "centaline-data-driven-v3",
6
6
  "main": "dist/centaline-data-driven-v3.umd.js",
@@ -17,6 +17,7 @@ import CheckBox from '../../loader/src/CheckBox';
17
17
  const emit = defineEmits(['click', 'change', 'search'])
18
18
  const props = defineProps({
19
19
  parameterAction: String,
20
+ fileData: Object,
20
21
  vmodel: Object,
21
22
  source: Object,
22
23
  })
@@ -10,12 +10,13 @@
10
10
  style="white-space: normal;">
11
11
  <span v-html="item.name" style="line-height: 16px;"></span>
12
12
  <el-icon :size="18" v-if="item.toolTip" style="margin-left: 5px;">
13
- <el-tooltip raw-content :content="item.toolTip" placement="top" effect="light">
13
+ <el-tooltip raw-content :content="item.toolTip" placement="top" effect="light">
14
14
  <InfoFilled />
15
15
  </el-tooltip>
16
16
  </el-icon>
17
17
  </el-checkbox>
18
- <el-icon @click="clearClickHandle" class="el-range__close-icon" style="margin-left: 10px;" v-if="!common.flagHK()">
18
+ <el-icon @click="clearClickHandle" class="el-range__close-icon" style="margin-left: 10px;"
19
+ v-if="!common.flagHK()">
19
20
  <CircleClose />
20
21
  </el-icon>
21
22
  </el-checkbox-group>
@@ -30,12 +31,13 @@ import common from '../../utils/common'
30
31
  const emit = defineEmits(['click', 'change', 'search'])
31
32
  const props = defineProps({
32
33
  parameterAction: String,
34
+ fileData: Object,
33
35
  vmodel: Object,
34
36
  source: Object,
35
37
  })
36
38
  const model = initData(props, CheckBoxList)
37
39
 
38
- function change() {
40
+ function change() {
39
41
  model.value.setcode()
40
42
  changeHandler(model.value, emit);
41
43
  if (model.value.autoSearch) emit('search');
@@ -53,6 +53,7 @@ import ComboBox from '../../loader/src/ComboBox';
53
53
  const emit = defineEmits(['click', 'input', 'change', 'popupSearchList', 'search'])
54
54
  const props = defineProps({
55
55
  parameterAction: String,
56
+ fileData: Object,
56
57
  vmodel: Object,
57
58
  source: Object,
58
59
  })
@@ -48,6 +48,7 @@ import ContainerControl from '../../loader/src/ContainerControl';
48
48
  const emit = defineEmits(['click', 'change', 'fieldClick', 'popupSearchList'])
49
49
  const props = defineProps({
50
50
  parameterAction: String,
51
+ fileData: Object,
51
52
  vmodel: Object,
52
53
  source: Object,
53
54
  })
@@ -17,6 +17,7 @@ import { nextTick, ref, onMounted } from "vue";
17
17
  const props = defineProps({
18
18
  api: String,
19
19
  vmodel: Object,
20
+ fileData: Object,
20
21
  actionRouter: Array,
21
22
  listHeight: Number,
22
23
  })
@@ -41,6 +41,7 @@ import DateTimePicker from './DateTimePicker/DateTimePicker.vue';
41
41
  const emit = defineEmits(['input', 'change'])
42
42
  const props = defineProps({
43
43
  parameterAction: String,
44
+ fileData: Object,
44
45
  vmodel: Object,
45
46
  source: Object,
46
47
  })
@@ -178,6 +178,7 @@ import util from '../../utils/pub-use'
178
178
  const emit = defineEmits(['loaded', "change", "click"])
179
179
  const props = defineProps({
180
180
  api: String,
181
+ fileData: Object,
181
182
  vmodel: Object,
182
183
  actionRouter: Array,
183
184
  })
@@ -3,7 +3,7 @@
3
3
  :style="{ width: pageWidth ? pageWidth + 'px' : '100%', margin: 'auto', 'min-height': minHeight }">
4
4
  <div style="display: flex; width: 100%;">
5
5
  <div style="flex: 1; min-width: 0;">
6
- <div v-if="model !== null && !loading" class="ct-form"
6
+ <div v-if="model !== null && !loading" class="ct-form" :class="{ 'domDisabled': model.pageDisabled }"
7
7
  :style="{ margin: openType != 'tree' ? '10px' : '0px' }">
8
8
  <el-affix target=".ct-form" v-if="model.tip" :offset="tipTopHight">
9
9
  <div class="ct-form-tip" ref="refTip">
@@ -94,7 +94,7 @@
94
94
  <div style="height: 34px;"> </div>
95
95
  </template>
96
96
  <!--分组-->
97
- <el-collapse v-else v-model="model.collapseActiveNames"
97
+ <el-collapse v-else-if="model.collapse.length>0" v-model="model.collapseActiveNames"
98
98
  :class="model.flagHideSaveLine ? 'el-collapse-saveLine' : ''">
99
99
  <template v-for="(item, index) in model.collapse" :key="index">
100
100
  <el-collapse-item v-if="item.show !== false" :title="item.controlLabel" :name="index"
@@ -19,6 +19,7 @@ const props = defineProps({
19
19
  parameterAction: String,
20
20
  vmodel: Object,
21
21
  source: Object,
22
+ fileData: Object,
22
23
  from: {
23
24
  type: String,
24
25
  default: ''
@@ -4,6 +4,7 @@
4
4
  <script lang="ts" setup>
5
5
  const props = defineProps({
6
6
  parameterAction: String,
7
+ fileData: Object,
7
8
  vmodel: Object,
8
9
  source: Object,
9
10
  })
@@ -11,6 +11,7 @@
11
11
  const emit = defineEmits(['fieldClick'])
12
12
  const props = defineProps({
13
13
  parameterAction: String,
14
+ fileData: Object,
14
15
  vmodel: Object,
15
16
  source: Object,
16
17
  })
@@ -12,6 +12,7 @@ import { ref } from 'vue'
12
12
  const emit = defineEmits(['fieldClick'])
13
13
  const props = defineProps({
14
14
  parameterAction: String,
15
+ fileData: Object,
15
16
  vmodel: Object,
16
17
  source: Object,
17
18
  })
@@ -12,6 +12,7 @@
12
12
  <script lang="ts" setup>
13
13
  const props = defineProps({
14
14
  parameterAction: String,
15
+ fileData: Object,
15
16
  vmodel: Object,
16
17
  source: Object,
17
18
  })
@@ -28,6 +28,7 @@ import { nextTick, ref, onMounted} from "vue";
28
28
  const props = defineProps({
29
29
  api: String,
30
30
  vmodel: Object,
31
+ fileData: Object,
31
32
  actionRouter: Array,
32
33
  listHeight: Number,
33
34
  })
@@ -42,6 +42,7 @@ import Label from '../../loader/src/Label';
42
42
  const emit = defineEmits(['popupSearchList', 'change'])
43
43
  const props = defineProps({
44
44
  parameterAction: String,
45
+ fileData: Object,
45
46
  vmodel: Object,
46
47
  source: Object,
47
48
  })
@@ -32,6 +32,7 @@ import MultiComboBoxWithTextBox from '../../loader/src/MultiComboBoxWithTextBox'
32
32
  const emit = defineEmits(['click', 'input', 'change', 'popupSearchList'])
33
33
  const props = defineProps({
34
34
  parameterAction: String,
35
+ fileData: Object,
35
36
  vmodel: Object,
36
37
  source: Object,
37
38
  })
@@ -35,6 +35,7 @@ import NumberWithPlusAndMinus from '../../loader/src/NumberWithPlusAndMinus';
35
35
  const emit = defineEmits(['click', 'change', 'search'])
36
36
  const props = defineProps({
37
37
  parameterAction: String,
38
+ fileData: Object,
38
39
  vmodel: Object,
39
40
  source: Object,
40
41
  })
@@ -23,6 +23,7 @@ import NumericRange from '../../loader/src/NumericRange';
23
23
  const emit = defineEmits(['click', 'change'])
24
24
  const props = defineProps({
25
25
  parameterAction: String,
26
+ fileData: Object,
26
27
  vmodel: Object,
27
28
  source: Object,
28
29
  })
@@ -23,6 +23,7 @@ import common from '../../utils/common'
23
23
  const emit = defineEmits(['click', 'change','search'])
24
24
  const props = defineProps({
25
25
  parameterAction: String,
26
+ fileData: Object,
26
27
  vmodel: Object,
27
28
  source: Object,
28
29
  })
@@ -25,6 +25,7 @@ import draggable from "vuedraggable";
25
25
  const emit = defineEmits(['click', 'change', 'search'])
26
26
  const props = defineProps({
27
27
  parameterAction: String,
28
+ fileData: Object,
28
29
  vmodel: Object,
29
30
  source: Object,
30
31
  })
@@ -43,6 +43,7 @@ import Enum from '../../utils/Enum'
43
43
  const emit = defineEmits(['input', 'change', 'click', 'search', 'popupSearchList'])
44
44
  const props = defineProps({
45
45
  parameterAction: String,
46
+ fileData: Object,
46
47
  vmodel: Object,
47
48
  source: Object,
48
49
  from: {