flame-plus 0.1.14 → 0.1.16
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/packages/components/base/flmButton/flmButton.vue +2 -2
- package/packages/components/base/flmCascader/flmCascader.vue +2 -2
- package/packages/components/base/flmCheckbox/flmCheckbox.vue +2 -2
- package/packages/components/base/flmCheckbox/flmCheckboxGroup.vue +3 -3
- package/packages/components/base/flmColorPicker/flmColorPicker.vue +2 -2
- package/packages/components/base/flmDatePicker/flmDatePicker.vue +2 -2
- package/packages/components/base/flmDialog/flmDialog.vue +2 -2
- package/packages/components/base/flmInput/flmInput.vue +2 -2
- package/packages/components/base/flmInputNumber/flmInputNumber.vue +2 -2
- package/packages/components/base/flmPagination/flmPagination.vue +2 -2
- package/packages/components/base/flmRadio/flmRadio.vue +2 -2
- package/packages/components/base/flmRate/flmRate.vue +2 -2
- package/packages/components/base/flmRead/flmRead.vue +1 -1
- package/packages/components/base/flmSelect/flmSelect.vue +2 -2
- package/packages/components/base/flmSlider/flmSlider.vue +2 -2
- package/packages/components/base/flmSwitch/flmSwitch.vue +2 -2
- package/packages/components/base/flmTimePicker/flmTimePicker.vue +2 -2
- package/packages/components/base/flmTimeSelect/flmTimeSelect.vue +2 -2
- package/packages/components/base/flmTransfer/flmTransfer.vue +2 -2
- package/packages/components/complex/flmForm/flmForm.vue +3 -3
- package/packages/components/complex/flmSearch/flmSearch.vue +3 -3
- package/packages/components/complex/flmTable/flmTable.vue +2 -2
- package/packages/components/complex/flmToolbar/flmToolbar.vue +2 -2
- package/packages/components/page/flmReportPage/flmReportPage.vue +4 -4
- package/packages/model/flmComponentConfig/base/flmButton.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmCascader.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmCheckbox.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmColorPicker.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmDatePicker.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmInput.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmInputNumber.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmRadio.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmRate.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmSelect.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmSlider.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmSwitch.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmTimePicker.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmTimeSelect.ts +1 -1
- package/packages/model/flmComponentConfig/complex/flmForm.ts +1 -1
- package/packages/model/flmComponentConfig/complex/flmTable.ts +1 -1
- package/packages/model/flmComponentConfig/complex/flmToolbar.ts +1 -1
- package/packages/model/flmComponentConfig/page/flmReportPage.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed } from 'vue'
|
|
3
|
-
import { ButtonConfig, buttonDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { ButtonConfig, buttonDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['buttonClick'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { CascaderConfig, CascaderDefaultEvent, cascaderDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { CascaderConfig, CascaderDefaultEvent, cascaderDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'expand-change', 'blur', 'focus', 'visible-change', 'remove-tag'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { CheckboxConfig, CheckboxDefaultEvent, checkboxDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { CheckboxConfig, CheckboxDefaultEvent, checkboxDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, ref, Ref, computed } from 'vue'
|
|
3
|
-
import { flmCheckbox } from '
|
|
3
|
+
import { flmCheckbox } from '../../index'
|
|
4
4
|
import {
|
|
5
5
|
CheckboxConfig,
|
|
6
6
|
CheckboxGroupConfig,
|
|
7
7
|
checkboxGroupDefaultConfig
|
|
8
|
-
} from '
|
|
9
|
-
import { filterConfig } from '
|
|
8
|
+
} from '../../../model/flmComponentConfig'
|
|
9
|
+
import { filterConfig } from '../../../utils'
|
|
10
10
|
|
|
11
11
|
export default defineComponent({
|
|
12
12
|
components: { flmCheckbox },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { ColorPickerConfig, ColorPickerDefaultEvent, colorPickerDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { ColorPickerConfig, ColorPickerDefaultEvent, colorPickerDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { DatePickerConfig, DatePickerDefaultEvent, datePickerDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { DatePickerConfig, DatePickerDefaultEvent, datePickerDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { DialogConfig, DialogDefaultEvent, dialogDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { DialogConfig, DialogDefaultEvent, dialogDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['open', 'opened', 'close', 'closed', 'open-auto-focus', 'close-auto-focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { InputConfig, InputDefaultEvent, inputDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { InputConfig, InputDefaultEvent, inputDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['blur', 'focus', 'change', 'input', 'clear'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { InputNumberConfig, InputNumberDefaultEvent, inputNumberDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { InputNumberConfig, InputNumberDefaultEvent, inputNumberDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'blur', 'focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { PaginationConfig, PaginationDefaultEvent, paginationDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { PaginationConfig, PaginationDefaultEvent, paginationDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['size-change', 'current-change', 'prev-click', 'next-click'],
|
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
RadioGroupDefaultEvent,
|
|
7
7
|
radioDefaultConfig,
|
|
8
8
|
radioGroupDefaultConfig
|
|
9
|
-
} from '
|
|
10
|
-
import { filterConfig } from '
|
|
9
|
+
} from '../../../model/flmComponentConfig'
|
|
10
|
+
import { filterConfig } from '../../../utils'
|
|
11
11
|
|
|
12
12
|
export default defineComponent({
|
|
13
13
|
emits: ['change'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { RateConfig, RateDefaultEvent, rateDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { RateConfig, RateDefaultEvent, rateDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
OptionGroupConfig,
|
|
7
7
|
OptionConfig,
|
|
8
8
|
selectDefaultConfig
|
|
9
|
-
} from '
|
|
10
|
-
import { filterConfig } from '
|
|
9
|
+
} from '../../../model/flmComponentConfig'
|
|
10
|
+
import { filterConfig } from '../../../utils'
|
|
11
11
|
|
|
12
12
|
export default defineComponent({
|
|
13
13
|
emits: ['change', 'visible-change', 'remove-tag', 'clear', 'blur', 'focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { SliderConfig, SliderDefaultEvent, sliderDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { SliderConfig, SliderDefaultEvent, sliderDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'input'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed } from 'vue'
|
|
3
|
-
import { SwitchConfig, switchDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { SwitchConfig, switchDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { TimePickerConfig, TimePickerDefaultEvent, timePickerDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { TimePickerConfig, TimePickerDefaultEvent, timePickerDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'blur', 'focus', 'visible-change' ],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { TimeSelectConfig, timeSelectDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { TimeSelectConfig, timeSelectDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'blur', 'focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { TransferConfig, TransferDefaultEvent, transferDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { TransferConfig, TransferDefaultEvent, transferDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'left-check-change', 'right-check-change'],
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
flmTimePicker,
|
|
28
28
|
flmTimeSelect,
|
|
29
29
|
flmTransfer,
|
|
30
|
-
} from '
|
|
30
|
+
} from '../../index'
|
|
31
31
|
import {
|
|
32
32
|
ControlTypes,
|
|
33
33
|
ControlConfig,
|
|
@@ -37,8 +37,8 @@ import {
|
|
|
37
37
|
FormItemConfig,
|
|
38
38
|
FormButtonConfig,
|
|
39
39
|
formDefaultConfig
|
|
40
|
-
} from '
|
|
41
|
-
import { filterConfig, isValidKey } from '
|
|
40
|
+
} from '../../../model/flmComponentConfig'
|
|
41
|
+
import { filterConfig, isValidKey } from '../../../utils'
|
|
42
42
|
|
|
43
43
|
export default defineComponent({
|
|
44
44
|
components: {
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
|
|
39
39
|
<script lang="ts" setup>
|
|
40
40
|
import { PropType, ref, Ref, computed, ComputedRef } from 'vue'
|
|
41
|
-
import { flmForm } from '
|
|
42
|
-
import {
|
|
43
|
-
import { isValidKey } from '
|
|
41
|
+
import { flmForm } from '../../index'
|
|
42
|
+
import { SearchConfig, FormItemConfig } from '../../../model/flmComponentConfig'
|
|
43
|
+
import { isValidKey } from '../../../utils'
|
|
44
44
|
|
|
45
45
|
const emit = defineEmits(['searchSubmit', 'searchReset', 'searchCustomEvent'])
|
|
46
46
|
const props = defineProps({
|
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
TableDefaultEvent,
|
|
7
7
|
tableDefaultConfig,
|
|
8
8
|
tableColumnDefaultConfig
|
|
9
|
-
} from '
|
|
10
|
-
import { filterConfig } from '
|
|
9
|
+
} from '../../../model/flmComponentConfig'
|
|
10
|
+
import { filterConfig } from '../../../utils'
|
|
11
11
|
|
|
12
12
|
export default defineComponent({
|
|
13
13
|
emits: [
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
|
|
30
30
|
<script lang="ts" setup>
|
|
31
31
|
import { defineEmits, defineProps, PropType, computed, ComputedRef } from 'vue'
|
|
32
|
-
import { flmButton } from '
|
|
33
|
-
import { ToolbarConfig, ToolbarButtonConfig } from '
|
|
32
|
+
import { flmButton } from '../../index'
|
|
33
|
+
import { ToolbarConfig, ToolbarButtonConfig } from '../../../model/flmComponentConfig'
|
|
34
34
|
|
|
35
35
|
const emit = defineEmits(['toolbarClick'])
|
|
36
36
|
const props = defineProps({
|
|
@@ -72,14 +72,14 @@ import {
|
|
|
72
72
|
flmTable,
|
|
73
73
|
flmPagination,
|
|
74
74
|
flmDialog
|
|
75
|
-
} from '
|
|
75
|
+
} from '../../index'
|
|
76
76
|
import {
|
|
77
77
|
FormItemConfig,
|
|
78
78
|
FormConfig,
|
|
79
79
|
TableColumnConfig,
|
|
80
80
|
ReportPageSetting,
|
|
81
|
-
} from '
|
|
82
|
-
import { isValidKey } from '
|
|
81
|
+
} from '../../../model/flmComponentConfig'
|
|
82
|
+
import { isValidKey } from '../../../utils'
|
|
83
83
|
import request from '@/plugins/request'
|
|
84
84
|
|
|
85
85
|
const props = defineProps({
|
|
@@ -144,7 +144,7 @@ const queryPageSetting = () => {
|
|
|
144
144
|
request.flameRequest({
|
|
145
145
|
tableName: 'flametableinfo',
|
|
146
146
|
flameMethod: 'webgetpagesetting',
|
|
147
|
-
data: { table_name:
|
|
147
|
+
data: { table_name: props.tableName, menu_id: null }
|
|
148
148
|
})
|
|
149
149
|
.then(({ items }: any) => {
|
|
150
150
|
const reportPageSetting: ReportPageSetting = items
|