@leevan/jtui 2.0.33 → 2.0.35

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 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:'table-ptbg'
86
+ menuIdx:'search-type-page'
82
87
  }
83
88
  },
84
89
  methods: {
package/examples/main.js CHANGED
@@ -12,6 +12,7 @@ Vue.use(ElementUI);
12
12
  import 'element-ui/lib/theme-chalk/index.css';
13
13
 
14
14
  import './assets/icon/iconfont.css';
15
+ import './scss/pub.scss'
15
16
 
16
17
 
17
18