mooho-base-admin-plus 0.1.0
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/.env +5 -0
- package/.env.development +0 -0
- package/.env.production +0 -0
- package/.eslintignore +11 -0
- package/.eslintrc.js +47 -0
- package/.prettierrc +15 -0
- package/README.md +18 -0
- package/dist/favicon.ico +0 -0
- package/dist/mooho-base-admin-plus.min.esm.js +131746 -0
- package/dist/mooho-base-admin-plus.min.js +279 -0
- package/dist/setting.js +31 -0
- package/dist/static/images/app-barcode.png +0 -0
- package/dist/static/images/login/bg.png +0 -0
- package/dist/static/images/login/logo.png +0 -0
- package/dist/static/images/login/password-active.png +0 -0
- package/dist/static/images/login/password-default.png +0 -0
- package/dist/static/images/login/signIn-img.png +0 -0
- package/dist/static/images/login/user-active.png +0 -0
- package/dist/static/images/login/user-default.png +0 -0
- package/dist/static/images/logo-dark.png +0 -0
- package/dist/static/images/logo-small.png +0 -0
- package/dist/static/images/logo.png +0 -0
- package/dist/static/images/logo.svg +510 -0
- package/dist/static/images/no-image.png +0 -0
- package/dist/style.css +4 -0
- package/index.html +18 -0
- package/other/pda.vue +28 -0
- package/package.json +59 -0
- package/public/favicon.ico +0 -0
- package/public/setting.js +31 -0
- package/public/static/images/app-barcode.png +0 -0
- package/public/static/images/login/bg.png +0 -0
- package/public/static/images/login/logo.png +0 -0
- package/public/static/images/login/password-active.png +0 -0
- package/public/static/images/login/password-default.png +0 -0
- package/public/static/images/login/signIn-img.png +0 -0
- package/public/static/images/login/user-active.png +0 -0
- package/public/static/images/login/user-default.png +0 -0
- package/public/static/images/logo-dark.png +0 -0
- package/public/static/images/logo-small.png +0 -0
- package/public/static/images/logo.png +0 -0
- package/public/static/images/logo.svg +510 -0
- package/public/static/images/no-image.png +0 -0
- package/src/App.vue +60 -0
- package/src/api/application.js +35 -0
- package/src/api/customModel.js +187 -0
- package/src/api/customPage.js +15 -0
- package/src/api/customTable.js +24 -0
- package/src/api/dataSource.js +93 -0
- package/src/api/dataView.js +199 -0
- package/src/api/dictType.js +23 -0
- package/src/api/entityView.js +13 -0
- package/src/api/enum.js +15 -0
- package/src/api/filterColumn.js +16 -0
- package/src/api/model.js +244 -0
- package/src/api/movePlan.js +29 -0
- package/src/api/notification.js +28 -0
- package/src/api/openApiPermission.js +25 -0
- package/src/api/permission.js +51 -0
- package/src/api/planJob.js +15 -0
- package/src/api/process.js +23 -0
- package/src/api/processDef.js +36 -0
- package/src/api/processInst.js +16 -0
- package/src/api/rolePermission.js +17 -0
- package/src/api/roleProperty.js +36 -0
- package/src/api/shortcut.js +20 -0
- package/src/api/system.js +23 -0
- package/src/api/task.js +56 -0
- package/src/api/taskQueue.js +24 -0
- package/src/api/user.js +45 -0
- package/src/api/viewColumn.js +16 -0
- package/src/assets/svg/body.svg +17 -0
- package/src/assets/svg/header-theme-dark.svg +40 -0
- package/src/assets/svg/header-theme-primary.svg +40 -0
- package/src/assets/svg/header-top.svg +40 -0
- package/src/assets/svg/icon-happy.svg +1 -0
- package/src/assets/svg/icon-sad.svg +1 -0
- package/src/assets/svg/icon-social-bilibili.svg +1 -0
- package/src/assets/svg/icon-social-dingding.svg +1 -0
- package/src/assets/svg/icon-social-facebook.svg +1 -0
- package/src/assets/svg/icon-social-juejin.svg +1 -0
- package/src/assets/svg/icon-social-qq.svg +1 -0
- package/src/assets/svg/icon-social-twitter.svg +1 -0
- package/src/assets/svg/icon-social-wechat.svg +1 -0
- package/src/assets/svg/icon-social-weibo.svg +1 -0
- package/src/assets/svg/icon-social-zhihu.svg +1 -0
- package/src/assets/svg/nav-theme-dark.svg +40 -0
- package/src/assets/svg/nav-theme-light.svg +40 -0
- package/src/components/copyright/index.vue +28 -0
- package/src/components/home/notice-list.vue +62 -0
- package/src/components/home/shortcut.vue +125 -0
- package/src/components/input/dialog-select.vue +301 -0
- package/src/components/input/item-select.vue +195 -0
- package/src/components/link/index.vue +54 -0
- package/src/components/richEditor/index.vue +86 -0
- package/src/components/upload/file-upload.vue +84 -0
- package/src/components/upload/upload-attachment.vue +119 -0
- package/src/components/upload/upload-image.vue +212 -0
- package/src/components/view/column-check.vue +223 -0
- package/src/components/view/column-edit.vue +850 -0
- package/src/components/view/column-select.vue +206 -0
- package/src/components/view/condition-edit.vue +164 -0
- package/src/components/view/filter-edit.vue +633 -0
- package/src/components/view/filter-setting.vue +126 -0
- package/src/components/view/form-setting-layout.vue +375 -0
- package/src/components/view/form-setting.vue +247 -0
- package/src/components/view/group-column.vue +104 -0
- package/src/components/view/group-method.vue +104 -0
- package/src/components/view/mixin.js +72 -0
- package/src/components/view/modal-form-filter.vue +319 -0
- package/src/components/view/modal-form-sort.vue +248 -0
- package/src/components/view/modal-form.vue +453 -0
- package/src/components/view/modal-table.vue +471 -0
- package/src/components/view/table-filter.vue +702 -0
- package/src/components/view/table-setting.vue +533 -0
- package/src/components/view/view-chart.vue +423 -0
- package/src/components/view/view-form-draggable.vue +837 -0
- package/src/components/view/view-form.vue +1444 -0
- package/src/components/view/view-table.vue +2261 -0
- package/src/components/workflow/flow-chart.vue +846 -0
- package/src/directive/focus.js +10 -0
- package/src/directive/tabHide.js +9 -0
- package/src/i18n/index.js +15 -0
- package/src/i18n/locale/en-US.js +1 -0
- package/src/i18n/locale/lang.js +1 -0
- package/src/i18n/locale/zh-CN.js +1 -0
- package/src/i18n/locale.js +102 -0
- package/src/index.js +222 -0
- package/src/layouts/basic-layout/header-breadcrumb/index.vue +122 -0
- package/src/layouts/basic-layout/header-collapse/index.vue +44 -0
- package/src/layouts/basic-layout/header-fullscreen/index.vue +19 -0
- package/src/layouts/basic-layout/header-i18n/index.vue +45 -0
- package/src/layouts/basic-layout/header-log/index.vue +41 -0
- package/src/layouts/basic-layout/header-logo/index.vue +23 -0
- package/src/layouts/basic-layout/header-notice/index.vue +218 -0
- package/src/layouts/basic-layout/header-reload/index.vue +21 -0
- package/src/layouts/basic-layout/header-search/index.vue +37 -0
- package/src/layouts/basic-layout/header-setting/index.vue +219 -0
- package/src/layouts/basic-layout/header-user/index.vue +175 -0
- package/src/layouts/basic-layout/i18n.js +50 -0
- package/src/layouts/basic-layout/index.vue +280 -0
- package/src/layouts/basic-layout/menu-head/index.vue +120 -0
- package/src/layouts/basic-layout/menu-head/title.vue +48 -0
- package/src/layouts/basic-layout/menu-side/index.vue +113 -0
- package/src/layouts/basic-layout/menu-side/menu-collapse.vue +76 -0
- package/src/layouts/basic-layout/menu-side/menu-item.vue +31 -0
- package/src/layouts/basic-layout/menu-side/menu-title.vue +56 -0
- package/src/layouts/basic-layout/menu-side/submenu.vue +31 -0
- package/src/layouts/basic-layout/mixins/click-item.js +21 -0
- package/src/layouts/basic-layout/mixins/sider-menu-badge.js +13 -0
- package/src/layouts/basic-layout/mixins/translate-title.js +11 -0
- package/src/layouts/basic-layout/tabs/index.vue +192 -0
- package/src/layouts/basic-layout/water-mark/index.vue +29 -0
- package/src/libs/lodop/index.js +145 -0
- package/src/libs/random_str.js +10 -0
- package/src/libs/request/index.js +158 -0
- package/src/libs/system/index.js +234 -0
- package/src/libs/util.cookies.js +44 -0
- package/src/libs/util.db.js +13 -0
- package/src/libs/util.js +55 -0
- package/src/libs/util.log.js +88 -0
- package/src/libs/water-mark.js +44 -0
- package/src/menu/header.js +20 -0
- package/src/menu/modules/dashboard.js +23 -0
- package/src/menu/sider.js +12 -0
- package/src/mixins/app.js +9 -0
- package/src/mixins/page.js +643 -0
- package/src/pages/account/login.vue +101 -0
- package/src/pages/common/home.vue +169 -0
- package/src/pages/common/task-form.vue +350 -0
- package/src/pages/common/todo.vue +31 -0
- package/src/pages/system/apiLog.vue +79 -0
- package/src/pages/system/applicationType.vue +182 -0
- package/src/pages/system/customPage.vue +62 -0
- package/src/pages/system/customTable.vue +98 -0
- package/src/pages/system/dict.vue +36 -0
- package/src/pages/system/dictType.vue +58 -0
- package/src/pages/system/entityView.vue +38 -0
- package/src/pages/system/error/404.vue +6 -0
- package/src/pages/system/extendColumn.vue +99 -0
- package/src/pages/system/formView.vue +136 -0
- package/src/pages/system/log.vue +55 -0
- package/src/pages/system/notice.vue +26 -0
- package/src/pages/system/openApi.vue +26 -0
- package/src/pages/system/openUser.vue +66 -0
- package/src/pages/system/organization.vue +98 -0
- package/src/pages/system/organizationType.vue +26 -0
- package/src/pages/system/permission.vue +175 -0
- package/src/pages/system/planJob.vue +40 -0
- package/src/pages/system/printTemplate.vue +48 -0
- package/src/pages/system/process.vue +79 -0
- package/src/pages/system/processType.vue +26 -0
- package/src/pages/system/role.vue +395 -0
- package/src/pages/system/rolePropertyEdit.vue +480 -0
- package/src/pages/system/sequenceSetting.vue +26 -0
- package/src/pages/system/systemData.vue +52 -0
- package/src/pages/system/tableView.vue +386 -0
- package/src/pages/system/taskQueue.vue +48 -0
- package/src/pages/system/user.vue +250 -0
- package/src/pages/template/processPage.vue +243 -0
- package/src/pages/template/reportPage.vue +66 -0
- package/src/pages/template/viewPage.vue +139 -0
- package/src/plugins/auth/index.js +21 -0
- package/src/plugins/error/index.js +31 -0
- package/src/plugins/index.js +24 -0
- package/src/plugins/sweetalert2/index.js +20 -0
- package/src/router/dynamic.js +183 -0
- package/src/router/index.js +84 -0
- package/src/setting.js +202 -0
- package/src/store/index.js +9 -0
- package/src/store/modules/admin/index.js +16 -0
- package/src/store/modules/admin/modules/account.js +103 -0
- package/src/store/modules/admin/modules/cache.js +119 -0
- package/src/store/modules/admin/modules/dataView.js +112 -0
- package/src/store/modules/admin/modules/db.js +231 -0
- package/src/store/modules/admin/modules/i18n.js +87 -0
- package/src/store/modules/admin/modules/layout.js +115 -0
- package/src/store/modules/admin/modules/loader.js +44 -0
- package/src/store/modules/admin/modules/log.js +77 -0
- package/src/store/modules/admin/modules/menu.js +338 -0
- package/src/store/modules/admin/modules/page.js +466 -0
- package/src/store/modules/admin/modules/user.js +96 -0
- package/src/store/modules/admin/modules/viewPage.js +34 -0
- package/src/styles/common.less +47 -0
- package/src/styles/css/default.css +510 -0
- package/src/styles/css/login.css +1217 -0
- package/src/styles/default/index.less +6 -0
- package/src/styles/font/demo.css +539 -0
- package/src/styles/font/demo_index.html +372 -0
- package/src/styles/font/icon-demo/demo.css +539 -0
- package/src/styles/font/icon-demo/demo_index.html +423 -0
- package/src/styles/font/icon-demo/iconfont.css +61 -0
- package/src/styles/font/icon-demo/iconfont.eot +0 -0
- package/src/styles/font/icon-demo/iconfont.js +1 -0
- package/src/styles/font/icon-demo/iconfont.svg +59 -0
- package/src/styles/font/icon-demo/iconfont.ttf +0 -0
- package/src/styles/font/icon-demo/iconfont.woff +0 -0
- package/src/styles/font/icon-demo/iconfont.woff2 +0 -0
- package/src/styles/font/iconfont.css +47 -0
- package/src/styles/font/iconfont.js +1 -0
- package/src/styles/font/iconfont.json +65 -0
- package/src/styles/font/iconfont.ttf +0 -0
- package/src/styles/font/iconfont.woff +0 -0
- package/src/styles/font/iconfont.woff2 +0 -0
- package/src/styles/font/ionicons.svg +870 -0
- package/src/styles/font/ionicons.ttf +0 -0
- package/src/styles/font/ionicons.woff +0 -0
- package/src/styles/font/ionicons.woff2 +0 -0
- package/src/styles/index.less +7 -0
- package/src/styles/layout/basic-layout/layout.less +527 -0
- package/src/styles/layout/basic-layout/menu.less +274 -0
- package/src/styles/layout/index.less +2 -0
- package/src/styles/setting.less +6 -0
- package/styleguide.config.js +22 -0
- package/test/api/barcode.js +50 -0
- package/test/api/inbound.js +47 -0
- package/test/api/interfaceLog.js +15 -0
- package/test/api/interfaceQueue.js +15 -0
- package/test/api/interfaceServer.js +29 -0
- package/test/api/movePlan.js +50 -0
- package/test/api/movePlanItem.js +13 -0
- package/test/api/moveType.js +22 -0
- package/test/api/openApiPermission.js +25 -0
- package/test/api/outbound.js +40 -0
- package/test/api/permission.js +34 -0
- package/test/api/rolePermission.js +17 -0
- package/test/api/user.js +40 -0
- package/test/api/viewColumn.js +16 -0
- package/test/api/warehouse.js +13 -0
- package/test/api/warehouseMoveType.js +18 -0
- package/test/main.js +55 -0
- package/test/package.js +33 -0
- package/test/pages/home/index.vue +22 -0
- package/test/pages/task/test.vue +28 -0
- package/test/pages/test/dataViewTest.vue +28 -0
- package/test/pages/test/logReport.vue +25 -0
- package/test/pages/test/testPage.vue +38 -0
- package/test/router/routes.js +88 -0
- package/test/setting.env.js +22 -0
- package/test/styles/css/custom.css +0 -0
- package/test/styles/css/login.css +1217 -0
- package/vite.config.js +72 -0
- package/vue.config.js +20 -0
|
@@ -0,0 +1,510 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Ionicons';
|
|
3
|
+
src: url('../font/ionicons.woff2') format('woff2'), url('../font/ionicons.woff') format('woff'), url('../font/ionicons.ttf') format('truetype');
|
|
4
|
+
font-weight: normal;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* 颜色 */
|
|
9
|
+
.default {
|
|
10
|
+
color: #515a6e;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.primary {
|
|
14
|
+
color: #078dcf;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.info {
|
|
18
|
+
color: #8ecb30;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.success {
|
|
22
|
+
color: #19be6b;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.warning {
|
|
26
|
+
color: #ff9900;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.error {
|
|
30
|
+
color: #ed4014;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* 页面头部 */
|
|
34
|
+
.ivu-page-header {
|
|
35
|
+
height: 150px;
|
|
36
|
+
background: #078dcf;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.ivu-page-header-title {
|
|
40
|
+
color: #fff;
|
|
41
|
+
margin-bottom: 0px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.ivu-page-header-content {
|
|
45
|
+
color: #fff;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.i-layout-page-header {
|
|
49
|
+
margin-bottom: -80px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* 菜单 */
|
|
53
|
+
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu.ivu-menu-item-active > .i-layout-menu-side-title > .i-layout-menu-side-title-text > em,
|
|
54
|
+
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item.ivu-menu-item-active > .i-layout-menu-side-title > .i-layout-menu-side-title-text > em {
|
|
55
|
+
color: #ddd;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.ivu-dropdown-item.i-layout-menu-side-collapse-item-selected .i-layout-menu-side-title-text em {
|
|
59
|
+
color: #fff;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.i-layout-menu-side-title-text em {
|
|
63
|
+
margin-left: 0px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.i-layout-menu-side-title-text-with-icon em {
|
|
67
|
+
margin-left: 36px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active,
|
|
71
|
+
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active:hover {
|
|
72
|
+
background: #8ecb30 !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item.ivu-menu-item-active,
|
|
76
|
+
.ivu-menu-dark.ivu-menu-vertical .ivu-menu-item.ivu-menu-item-active:hover {
|
|
77
|
+
background: #8ecb30 !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.i-layout-menu-side-collapse-dark .i-layout-menu-side-collapse-item-selected,
|
|
81
|
+
.i-layout-menu-side-collapse-dark .i-layout-menu-side-collapse-item-selected:hover {
|
|
82
|
+
background: #8ecb30 !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.i-layout-menu-side-title-text-selected {
|
|
86
|
+
font-weight: bold;
|
|
87
|
+
color: #fff !important;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* 表单标签 */
|
|
91
|
+
.form-title {
|
|
92
|
+
font-weight: bold;
|
|
93
|
+
font-size: 17px;
|
|
94
|
+
/* margin-left: 12px; */
|
|
95
|
+
margin-bottom: 16px;
|
|
96
|
+
border-bottom: dotted #ccc 1px;
|
|
97
|
+
line-height: 30px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* .form-title::before {
|
|
101
|
+
background: #078dcf;
|
|
102
|
+
position: absolute;
|
|
103
|
+
width: 4px;
|
|
104
|
+
height: 12px;
|
|
105
|
+
left: 16px;
|
|
106
|
+
top: 7px;
|
|
107
|
+
content: '';
|
|
108
|
+
} */
|
|
109
|
+
|
|
110
|
+
.ivu-form-item-label {
|
|
111
|
+
font-weight: bold;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ivu-form-item-label::before {
|
|
115
|
+
/* position: absolute; */
|
|
116
|
+
display: inline-block;
|
|
117
|
+
margin-right: 4px !important;
|
|
118
|
+
background-color: #bcd400;
|
|
119
|
+
height: 4px;
|
|
120
|
+
width: 8px;
|
|
121
|
+
content: '' !important;
|
|
122
|
+
left: 0;
|
|
123
|
+
margin-bottom: 3px;
|
|
124
|
+
border-radius: 3px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.ivu-form-item-required .ivu-form-item-label::after {
|
|
128
|
+
content: '*';
|
|
129
|
+
display: inline-block;
|
|
130
|
+
margin-right: 4px;
|
|
131
|
+
line-height: 1;
|
|
132
|
+
font-family: SimSun;
|
|
133
|
+
font-size: 14px;
|
|
134
|
+
color: #ed4014;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.ivu-form-item-content {
|
|
138
|
+
margin-left: 20px;
|
|
139
|
+
margin-right: 20px;
|
|
140
|
+
line-height: initial;
|
|
141
|
+
/* IE 关键词文本框宽度 fix */
|
|
142
|
+
/* min-width: 100px; */
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.ivu-form-item-content .label {
|
|
146
|
+
line-height: 32px;
|
|
147
|
+
min-height: 32px;
|
|
148
|
+
border-bottom: dotted #999 1px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.ivu-form .title {
|
|
152
|
+
font-weight: bold;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.ivu-form .title::before {
|
|
156
|
+
/* position: absolute; */
|
|
157
|
+
display: inline-block;
|
|
158
|
+
margin-right: 4px !important;
|
|
159
|
+
background-color: #bcd400;
|
|
160
|
+
height: 4px;
|
|
161
|
+
width: 8px;
|
|
162
|
+
content: '' !important;
|
|
163
|
+
left: 0;
|
|
164
|
+
margin-bottom: 3px;
|
|
165
|
+
border-radius: 3px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/* 图片 */
|
|
169
|
+
.form-image-group {
|
|
170
|
+
display: flex;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.form-image-group div + div {
|
|
174
|
+
margin-left: 4px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.form-image {
|
|
178
|
+
display: flex;
|
|
179
|
+
align-items: center;
|
|
180
|
+
justify-content: center;
|
|
181
|
+
border: solid 1px #ccc;
|
|
182
|
+
margin-top: 8px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.form-image img {
|
|
186
|
+
max-height: 100%;
|
|
187
|
+
max-width: 100%;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.form-image .action {
|
|
191
|
+
/* display: block; */
|
|
192
|
+
display: none;
|
|
193
|
+
background-color: #000;
|
|
194
|
+
opacity: 0.75;
|
|
195
|
+
position: absolute;
|
|
196
|
+
float: right;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.form-image:hover .action {
|
|
200
|
+
display: block;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.form-image .action i {
|
|
204
|
+
float: right;
|
|
205
|
+
color: #fff;
|
|
206
|
+
font-size: 30px;
|
|
207
|
+
margin-top: 4px;
|
|
208
|
+
margin-right: 4px;
|
|
209
|
+
cursor: pointer;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/* 表格头部 */
|
|
213
|
+
.ivu-table-header {
|
|
214
|
+
border-top: solid 1px #eee;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/* 表格筛选 */
|
|
218
|
+
.filter {
|
|
219
|
+
margin-top: 4px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.filter .ivu-form-item-label {
|
|
223
|
+
float: left;
|
|
224
|
+
line-height: 6px;
|
|
225
|
+
padding: 10px 12px 10px 0;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.filter .ivu-form-item {
|
|
229
|
+
margin-bottom: 0px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.filter .ivu-input-group {
|
|
233
|
+
display: inline-table;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.filter button + button {
|
|
237
|
+
margin-left: 4px;
|
|
238
|
+
margin-bottom: 0;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.ivu-dropdown {
|
|
242
|
+
margin-right: 4px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* 表格内部按钮 */
|
|
246
|
+
.ivu-table-cell button + button {
|
|
247
|
+
margin-left: 4px;
|
|
248
|
+
margin-bottom: 0;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/* 表格 */
|
|
252
|
+
.ivu-table-cell {
|
|
253
|
+
padding-left: 8px;
|
|
254
|
+
padding-right: 8px;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/* 弹出框 */
|
|
258
|
+
.ivu-modal-content {
|
|
259
|
+
border-radius: 4px;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.ivu-modal-body {
|
|
263
|
+
overflow: auto;
|
|
264
|
+
max-height: 70vh;
|
|
265
|
+
padding-top: 0;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.ivu-modal-header .title {
|
|
269
|
+
margin-left: 10px;
|
|
270
|
+
margin-top: 5px;
|
|
271
|
+
margin-bottom: 0;
|
|
272
|
+
font-weight: 700;
|
|
273
|
+
font-size: 1.714em;
|
|
274
|
+
line-height: 1.45em;
|
|
275
|
+
color: #333;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.ivu-modal-header .title::before {
|
|
279
|
+
background: #078dcf;
|
|
280
|
+
position: absolute;
|
|
281
|
+
width: 4px;
|
|
282
|
+
height: 21px;
|
|
283
|
+
left: 14px;
|
|
284
|
+
top: 21px;
|
|
285
|
+
content: '';
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.ivu-modal-header .description {
|
|
289
|
+
color: #999;
|
|
290
|
+
margin-top: 18px;
|
|
291
|
+
margin-left: 10px;
|
|
292
|
+
font-size: 1em;
|
|
293
|
+
font-weight: 700;
|
|
294
|
+
text-transform: uppercase;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/* 按钮图标 */
|
|
298
|
+
.ivu-btn {
|
|
299
|
+
line-height: 30px;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.ivu-btn > .ivu-icon {
|
|
303
|
+
width: 16px;
|
|
304
|
+
line-height: normal;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.ivu-btn > .ivu-icon + span,
|
|
308
|
+
.ivu-btn > span + .ivu-icon {
|
|
309
|
+
margin-left: 0;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.ivu-btn-small {
|
|
313
|
+
line-height: 20px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.ivu-btn-small > .ivu-icon {
|
|
317
|
+
margin-bottom: 2px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.ivu-btn-primary {
|
|
321
|
+
background-color: #078dcf;
|
|
322
|
+
border-color: #078dcf;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.ivu-btn-info {
|
|
326
|
+
background-color: #8ecb30;
|
|
327
|
+
border-color: #8ecb30;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/* 提示框被挡 */
|
|
331
|
+
.swal2-container {
|
|
332
|
+
z-index: 999999 !important;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
/* 遮罩层 */
|
|
336
|
+
.page-loader-wrapper {
|
|
337
|
+
z-index: 99999999;
|
|
338
|
+
position: fixed;
|
|
339
|
+
top: 0;
|
|
340
|
+
left: 0;
|
|
341
|
+
bottom: 0;
|
|
342
|
+
right: 0;
|
|
343
|
+
width: 100%;
|
|
344
|
+
height: 100%;
|
|
345
|
+
overflow: hidden;
|
|
346
|
+
text-align: center;
|
|
347
|
+
opacity: 0.5;
|
|
348
|
+
background: #000;
|
|
349
|
+
/* display: none; */
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.page-loader-wrapper p {
|
|
353
|
+
margin-top: 10px;
|
|
354
|
+
color: #fff;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.page-loader-wrapper .loader {
|
|
358
|
+
position: relative;
|
|
359
|
+
top: 40%;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.zmdi-hc-spin {
|
|
363
|
+
-webkit-animation: zmdi-spin 1.5s infinite linear;
|
|
364
|
+
animation: zmdi-spin 1.5s infinite linear;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.zmdi-hc-spin-reverse {
|
|
368
|
+
-webkit-animation: zmdi-spin-reverse 1.5s infinite linear;
|
|
369
|
+
animation: zmdi-spin-reverse 1.5s infinite linear;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
@-webkit-keyframes zmdi-spin {
|
|
373
|
+
0% {
|
|
374
|
+
-webkit-transform: rotate(0deg);
|
|
375
|
+
transform: rotate(0deg);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
100% {
|
|
379
|
+
-webkit-transform: rotate(359deg);
|
|
380
|
+
transform: rotate(359deg);
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
@keyframes zmdi-spin {
|
|
385
|
+
0% {
|
|
386
|
+
-webkit-transform: rotate(0deg);
|
|
387
|
+
transform: rotate(0deg);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
100% {
|
|
391
|
+
-webkit-transform: rotate(359deg);
|
|
392
|
+
transform: rotate(359deg);
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
@-webkit-keyframes zmdi-spin-reverse {
|
|
397
|
+
0% {
|
|
398
|
+
-webkit-transform: rotate(0deg);
|
|
399
|
+
transform: rotate(0deg);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
100% {
|
|
403
|
+
-webkit-transform: rotate(-359deg);
|
|
404
|
+
transform: rotate(-359deg);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@keyframes zmdi-spin-reverse {
|
|
409
|
+
0% {
|
|
410
|
+
-webkit-transform: rotate(0deg);
|
|
411
|
+
transform: rotate(0deg);
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
100% {
|
|
415
|
+
-webkit-transform: rotate(-359deg);
|
|
416
|
+
transform: rotate(-359deg);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
/* 遮罩层淡入淡出 */
|
|
421
|
+
.loader-enter,
|
|
422
|
+
.loader-leave-to {
|
|
423
|
+
opacity: 0;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.loader-enter-to,
|
|
427
|
+
.loader-leave {
|
|
428
|
+
opacity: 0.5;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.loader-enter-active,
|
|
432
|
+
.loader-leave-active {
|
|
433
|
+
transition: all 1s;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/* 控件禁用状态 */
|
|
437
|
+
.ivu-select-disabled .ivu-select-selection {
|
|
438
|
+
background-color: initial;
|
|
439
|
+
color: initial;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.ivu-switch-disabled.ivu-switch-checked {
|
|
443
|
+
opacity: initial;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner {
|
|
447
|
+
border-color: #078dcf;
|
|
448
|
+
background-color: #078dcf;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.ivu-checkbox-disabled + span {
|
|
452
|
+
color: initial;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.ivu-radio-disabled.ivu-radio-checked .ivu-radio-inner {
|
|
456
|
+
border-color: #078dcf;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.ivu-radio-disabled .ivu-radio-inner:after {
|
|
460
|
+
background-color: #078dcf;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.ivu-upload-select {
|
|
464
|
+
display: initial;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
/* 表格列高度 */
|
|
468
|
+
.ivu-table-small td {
|
|
469
|
+
height: 32px;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
/* 小控件字体 */
|
|
473
|
+
.ivu-input-small {
|
|
474
|
+
font-size: 12px;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.ivu-select-small .ivu-select-single .ivu-select-selection .ivu-select-placeholder,
|
|
478
|
+
.ivu-select-single .ivu-select-selection .ivu-select-selected-value {
|
|
479
|
+
font-size: 12px;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/* font awesome */
|
|
483
|
+
.fa,
|
|
484
|
+
.far,
|
|
485
|
+
.fas {
|
|
486
|
+
font-family: 'Font awesome 5 Free' !important;
|
|
487
|
+
font-weight: 900 !important;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.fab {
|
|
491
|
+
font-family: 'Font Awesome 5 Brands' !important;
|
|
492
|
+
font-weight: 400 !important;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.i-layout-header-user-name {
|
|
496
|
+
margin-left: 0px;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.i-layout-tabs .ivu-tabs.ivu-tabs-card > .ivu-tabs-bar .ivu-tabs-tab-active {
|
|
500
|
+
color: #078dcf;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.ivu-btn-ghost.ivu-btn-primary {
|
|
504
|
+
color: #ffffff;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
/* 缩放后VH有误 */
|
|
508
|
+
.i-layout-sider {
|
|
509
|
+
min-height: 100%;
|
|
510
|
+
}
|