Blame view

antis-ncc-admin/src/components/index.js 3.16 KB
03207d5d   wwk   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  import NCCTreeSelect from '@/components/NCC-treeSelect'
  import topOperation from '@/components/NCC-topOperation/index'
  import tableOperation from '@/components/NCC-tableOperation'
  import Pagination from '@/components/Pagination'
  import NCCTable from '@/components/NCC-table'
  import UserBox from '@/components/NCC-userBox'
  import Screenfull from '@/components/Screenfull'
  import ColumnSettings from '@/components/ColumnSettings'
  import NCCQuill from '@/components/NCCEditor/quill'
  import UserSelect from '@/components/NCC-userSelect'
  import uploadBtn from '@/components/NCC-uploadBtn'
  // 代码生成器专供
  import NCCText from '@/components/Generator/components/NCCText'
  import NCCUploadFz from '@/components/Generator/components/Upload/UploadFz'
  import NCCUploadImg from '@/components/Generator/components/Upload/UploadImg'
  import PopupSelect from '@/components/Generator/components/PopupSelect'
  import NumRange from '@/components/Generator/components/NumRange'
  import ComSelect from '@/components/Generator/components/ComSelect'
  import DepSelect from '@/components/Generator/components/DepSelect'
  import PosSelect from '@/components/Generator/components/PosSelect'
  import DicSelect from '@/components/Generator/components/DicSelect'
  import BillRule from '@/components/Generator/components/BillRule'
  import NCCInputTable from '@/components/Generator/components/InputTable'
  import NCCAddress from '@/components/Generator/components/Address'
  import GroupTitle from '@/components/Generator/components/GroupTitle'
  import RelationForm from '@/components/Generator/components/RelationForm'
  import RelationFormAttr from '@/components/Generator/components/RelationFormAttr'
  import RelationFlow from '@/components/Generator/components/RelationFlow'
  import RelationFlowAttr from '@/components/Generator/components/RelationFlowAttr'
  import Calculate from '@/components/Generator/components/Calculate'
  
  export default {
    install(Vue, options) {
      Vue.component('NCCTreeSelect', NCCTreeSelect)
      Vue.component('topOpts', topOperation)
      Vue.component('tableOpts', tableOperation)
      Vue.component('Pagination', Pagination)
      Vue.component('NCCTable', NCCTable)
      Vue.component('uploadBtn', uploadBtn)
      Vue.component('UserBox', UserBox)
      Vue.component('NCCText', NCCText)
      Vue.component('NCCUploadFz', NCCUploadFz)
      Vue.component('NCCUploadImg', NCCUploadImg)
      Vue.component('PopupSelect', PopupSelect)
      Vue.component('NumRange', NumRange)
      Vue.component('ComSelect', ComSelect)
      Vue.component('DepSelect', DepSelect)
      Vue.component('PosSelect', PosSelect)
      Vue.component('UserSelect', UserSelect)
      Vue.component('DicSelect', DicSelect)
      Vue.component('BillRule', BillRule)
      Vue.component('NCCInputTable', NCCInputTable)
      Vue.component('NCCAddress', NCCAddress)
      Vue.component('GroupTitle', GroupTitle)
      Vue.component('RelationForm', RelationForm)
      Vue.component('RelationFormAttr', RelationFormAttr)
      Vue.component('RelationFlow', RelationFlow)
      Vue.component('RelationFlowAttr', RelationFlowAttr)
      Vue.component('Calculate', Calculate)
      Vue.component('NCCQuill', NCCQuill)
      Vue.component('Screenfull', Screenfull)
      Vue.component('ColumnSettings', ColumnSettings)
    }
  }