@leevan/jtui 2.0.33 → 2.0.34
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/examples/App.vue +7 -2
- package/examples/main.js +1 -0
- package/examples/searchType/mock.js +6014 -0
- package/examples/searchType/search-type-page.vue +57 -0
- package/lib/jtui.common.js +1187 -6
- package/lib/jtui.css +1 -1
- package/lib/jtui.umd.js +1187 -6
- package/lib/jtui.umd.min.js +15 -15
- package/package.json +1 -1
- package/packages/Search-Type/index.js +17 -0
- package/packages/Search-Type/index.vue +555 -0
- package/packages/Search-Type/tree-select.vue +134 -0
- package/packages/index.js +5 -2
- package/packages/jtaxios.js +7 -1
- package/vue.config.js +1 -1
package/examples/App.vue
CHANGED
|
@@ -32,6 +32,7 @@ import tableTree from './tableTest/table-tree.vue';
|
|
|
32
32
|
import treeTable from './tableTest/tree-table.vue';
|
|
33
33
|
import moreCharts from './echarts/moreCharts.vue';
|
|
34
34
|
import LForm from './form/form.vue'
|
|
35
|
+
import SearchTypePage from './searchType/search-type-page.vue'
|
|
35
36
|
export default {
|
|
36
37
|
components:{
|
|
37
38
|
tablePtbg,
|
|
@@ -40,7 +41,8 @@ export default {
|
|
|
40
41
|
tableTree,
|
|
41
42
|
treeTable,
|
|
42
43
|
moreCharts,
|
|
43
|
-
LForm
|
|
44
|
+
LForm,
|
|
45
|
+
SearchTypePage
|
|
44
46
|
},
|
|
45
47
|
name: 'App',
|
|
46
48
|
created(){
|
|
@@ -76,9 +78,12 @@ export default {
|
|
|
76
78
|
{
|
|
77
79
|
name:'表单',
|
|
78
80
|
idx:'l-form'
|
|
81
|
+
},{
|
|
82
|
+
name:'搜索组件',
|
|
83
|
+
idx:'search-type-page'
|
|
79
84
|
}
|
|
80
85
|
],
|
|
81
|
-
menuIdx:'
|
|
86
|
+
menuIdx:'search-type-page'
|
|
82
87
|
}
|
|
83
88
|
},
|
|
84
89
|
methods: {
|