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/dist/centaline-data-driven-v3.umd.js +83 -83
- package/package.json +1 -1
- package/src/components/web/CheckBox.vue +1 -0
- package/src/components/web/CheckBoxList.vue +5 -3
- package/src/components/web/ComboBox.vue +1 -0
- package/src/components/web/ContainerControl.vue +1 -0
- package/src/components/web/Cron.vue +1 -0
- package/src/components/web/DatePicker.vue +1 -0
- package/src/components/web/File.vue +1 -0
- package/src/components/web/Form.vue +2 -2
- package/src/components/web/GroupList.vue +1 -0
- package/src/components/web/GroupSplitLine.vue +1 -0
- package/src/components/web/HyperLink.vue +1 -0
- package/src/components/web/HyperLinkList.vue +1 -0
- package/src/components/web/Image.vue +1 -0
- package/src/components/web/JsonViewer.vue +1 -0
- package/src/components/web/Label.vue +1 -0
- package/src/components/web/MultiComboBoxWithTextBox.vue +1 -0
- package/src/components/web/NumberWithPlusAndMinus.vue +1 -0
- package/src/components/web/NumericRange.vue +1 -0
- package/src/components/web/RadioButton.vue +1 -0
- package/src/components/web/Tags.vue +1 -0
- package/src/components/web/TextBox.vue +1 -0
- package/src/components/web/Tree/Tree.vue +172 -88
- package/src/loader/src/CheckBoxList.js +113 -0
- package/src/loader/src/DatePicker.js +9 -8
- package/src/loader/src/Field.js +1 -1
- package/src/loader/src/Form.js +7 -0
- package/src/main.js +3 -3
- package/src/utils/mixins.js +13 -0
- package/src/views/Form.vue +2 -2
- package/src/views/SearchList.vue +5 -7
package/src/views/Form.vue
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
:style="{ 'width': '800px' , 'height': '
|
|
3
|
+
:style="{ 'width': '800px' , 'height': '800px', margin: 'auto', 'position': 'relative'}">
|
|
4
4
|
<ct-form :api="'/Order/readDetail'" :apiParam="apiParam" :openType="'tree'"></ct-form>
|
|
5
5
|
<!-- <ct-textbox :source="source"></ct-textbox> -->
|
|
6
6
|
<ct-dialoglist ref="dialogList"></ct-dialoglist>
|
|
7
7
|
</div>
|
|
8
8
|
</template>
|
|
9
9
|
<script lang="ts" setup>
|
|
10
|
-
const apiParam={"
|
|
10
|
+
const apiParam={"originalOrderId":"2014640778344816640","columnName":"orderNo","actionType":"1","pageStyle":"2","pageOnly":"true"}
|
|
11
11
|
</script>
|
package/src/views/SearchList.vue
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="app-search" style="width:100%;height:100%;position: fixed;">
|
|
3
|
-
<ct-searchlist :apiParam="apiParam" :searchConditionApi="'/ccesmanage/AppUseSummaryList/getLayoutOfSearch'"
|
|
3
|
+
<!-- <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/ccesmanage/AppUseSummaryList/getLayoutOfSearch'"
|
|
4
4
|
|
|
5
|
-
:searchDataApi="'/ccesmanage/AppUseSummaryList/getList'"></ct-searchlist>
|
|
5
|
+
:searchDataApi="'/ccesmanage/AppUseSummaryList/getList'"></ct-searchlist> -->
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<ct-searchlist :apiParam="apiParam" :searchConditionApi="'/AttendanceBalanceSettingList/getLayoutOfSearch'"
|
|
8
8
|
|
|
9
|
-
:searchDataApi="'/
|
|
9
|
+
:searchDataApi="'/AttendanceBalanceSettingList/getListOfSearchModel'"></ct-searchlist>
|
|
10
10
|
<!-- <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/EmployeeMaternityList/getLayoutOfSearch'"
|
|
11
11
|
:searchDataApi="'/EmployeeMaternityList/getListOfSearchModel'"></ct-searchlist> -->
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
:searchStatsApi="'/ProfileWorklistList/getListStats'"
|
|
15
|
-
:searchDataApi="'/OvertimeList/getListOfSearchModel'"></ct-searchlist> -->
|
|
13
|
+
|
|
16
14
|
<ct-dialoglist ref="dialogList"></ct-dialoglist>
|
|
17
15
|
|
|
18
16
|
</div>
|