9b7e125f
monkeyhouyi
属地页面
|
1
2
3
4
|
import InfoForm from '@/components/InfoForm'
import CompanyForm from '@/components/CompanyForm'
import PasswordForm from '@/components/PasswordForm'
import RegisterForm from '@/components/RegisterForm'
|
0e2463be
monkeyhouyi
系统修改记录
|
5
6
|
import InfoEditRecord from '@/components/InfoEditRecord'
import Pagination from '@/components/Pagination'
|
0af91599
monkeyhouyi
弹框请求优化
|
7
|
import NCCTable from '@/components/NCC-table'
|
5330d757
monkeyhouyi
公司信息管理完成
|
8
9
|
import NCCUploadFz from '@/components/Generator/components/Upload/UploadFz'
import NCCQuill from '@/components/NCCEditor/quill'
|
c21fb5b0
monkeyhouyi
巡查上报页面
|
10
11
12
|
import DepSelect from '@/components/Generator/components/DepSelect'
import Screenfull from '@/components/Screenfull'
import NCCTreeSelect from '@/components/NCC-treeSelect'
|
4424f41c
monkeyhouyi
网信执法、清单管理静态页面
|
13
|
import NCCAddress from '@/components/Generator/components/Address'
|
5aef094b
monkeyhouyi
图标,核查处置
|
14
|
import SelsctLoad from '@/components/SelsctLoad'
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
15
16
17
18
|
import topOperation from '@/components/NCC-topOperation/index'
import tableOperation from '@/components/NCC-tableOperation'
import UserBox from '@/components/NCC-userBox'
import ColumnSettings from '@/components/ColumnSettings'
|
8f1d4460
monkeyhouyi
实现专项行动详情查看
|
19
|
import FormDialog from '@/components/FormDialog'
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import UserSelect from '@/components/NCC-userSelect'
import uploadBtn from '@/components/NCC-uploadBtn'
// 代码生成器专供
import NCCText from '@/components/Generator/components/NCCText'
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 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 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'
|
218a9837
monkeyhouyi
运营主体优化
|
38
|
import CompanySelect from '@/components/CompanySelect'
|
0e2463be
monkeyhouyi
系统修改记录
|
39
|
|
9b7e125f
monkeyhouyi
属地页面
|
40
|
export default {
|
0af91599
monkeyhouyi
弹框请求优化
|
41
42
43
44
45
46
47
48
|
install(Vue, options) {
Vue.component('InfoForm', InfoForm)
Vue.component('CompanyForm', CompanyForm)
Vue.component('PasswordForm', PasswordForm)
Vue.component('RegisterForm', RegisterForm)
Vue.component('InfoEditRecord', InfoEditRecord)
Vue.component('Pagination', Pagination)
Vue.component('NCCTable', NCCTable)
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
49
50
51
52
53
54
55
|
Vue.component('SelsctLoad', SelsctLoad)
Vue.component('NCCTreeSelect', NCCTreeSelect)
Vue.component('topOpts', topOperation)
Vue.component('tableOpts', tableOperation)
Vue.component('uploadBtn', uploadBtn)
Vue.component('UserBox', UserBox)
Vue.component('NCCText', NCCText)
|
5330d757
monkeyhouyi
公司信息管理完成
|
56
|
Vue.component('NCCUploadFz', NCCUploadFz)
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
57
58
59
60
|
Vue.component('NCCUploadImg', NCCUploadImg)
Vue.component('PopupSelect', PopupSelect)
Vue.component('NumRange', NumRange)
Vue.component('ComSelect', ComSelect)
|
c21fb5b0
monkeyhouyi
巡查上报页面
|
61
|
Vue.component('DepSelect', DepSelect)
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
62
63
64
65
66
|
Vue.component('PosSelect', PosSelect)
Vue.component('UserSelect', UserSelect)
Vue.component('DicSelect', DicSelect)
Vue.component('BillRule', BillRule)
Vue.component('NCCInputTable', NCCInputTable)
|
4424f41c
monkeyhouyi
网信执法、清单管理静态页面
|
67
|
Vue.component('NCCAddress', NCCAddress)
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
68
69
70
71
72
73
74
75
76
|
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)
|
8f1d4460
monkeyhouyi
实现专项行动详情查看
|
77
|
Vue.component('FormDialog', FormDialog)
|
218a9837
monkeyhouyi
运营主体优化
|
78
|
Vue.component('CompanySelect', CompanySelect)
|
0af91599
monkeyhouyi
弹框请求优化
|
79
80
|
}
}
|