imatrix-ui 2.8.592-dw → 2.9.0-dw-tmp2
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/.babelrc +17 -0
- package/build/components.json +4 -0
- package/build/gen-style.js +32 -0
- package/build/webpack.base.js +140 -0
- package/build/webpack.component.js +40 -0
- package/build/webpack.prod.js +35 -0
- package/lib/DepartmentTree.js +8 -0
- package/lib/SuperGrid.js +28 -0
- package/lib/super-ui.min.js +72 -0
- package/package.json +51 -24
- package/src/i18n/langs/cn.js +3 -1
- package/src/i18n/langs/en.js +3 -1
- package/src/index.js +93 -0
- package/src/permission.js +4 -0
- package/src/styles/display-layout.scss +34 -0
- package/src/styles/index.scss +32 -4
- package/src/styles/theme/dark-blue/button.scss +9 -0
- package/src/styles/theme/dark-blue/card.scss +64 -0
- package/src/styles/theme/dark-blue/checkbox.scss +10 -0
- package/src/styles/theme/dark-blue/dark-blue-var.scss +8 -0
- package/src/styles/theme/dark-blue/dialog.scss +21 -0
- package/src/styles/theme/dark-blue/element-variables.scss +7 -0
- package/src/styles/theme/dark-blue/font.scss +71 -0
- package/src/styles/theme/dark-blue/form.scss +51 -0
- package/src/styles/theme/dark-blue/index.scss +247 -0
- package/src/styles/theme/dark-blue/input.scss +15 -0
- package/src/styles/theme/dark-blue/pagination.scss +14 -0
- package/src/styles/theme/dark-blue/scrollbar-style.scss +32 -0
- package/src/styles/theme/dark-blue/sidebar.scss +296 -0
- package/src/styles/theme/dark-blue/tab.scss +83 -0
- package/src/styles/theme/dark-blue/table.scss +60 -0
- package/src/styles/theme/dark-blue/tree.scss +31 -0
- package/src/styles/theme/dark-blue/var.scss +1028 -0
- package/src/utils/auth-api.js +115 -0
- package/src/utils/auth.js +34 -42
- package/src/utils/calculator/calculator-factory.js +2 -2
- package/src/utils/common-util.js +21 -0
- package/src/utils/jump-page-utils.js +28 -5
- package/src/utils/request.js +17 -1
- package/src/utils/util.js +7 -3
- package/src/views/dsc-component/Sidebar/Item.vue +4 -4
- package/src/views/dsc-component/Sidebar/SidebarItem.vue +2 -1
- package/src/views/dsc-component/Sidebar/index.vue +20 -12
- package/src/views/dsc-component/tabs/tab-content.vue +5 -1
- package/lib/super-ui.css +0 -1
- package/lib/super-ui.umd.min.js +0 -67
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "imatrix-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0-dw-tmp2",
|
|
4
4
|
"description": "前端组件库:表格、表单、组织结构树等",
|
|
5
5
|
"main": "lib/super-ui.umd.min.js",
|
|
6
6
|
"private": false,
|
|
@@ -10,37 +10,64 @@
|
|
|
10
10
|
"lib": "vue-cli-service build --modern --target lib --name super-ui --dest lib packages/index.js",
|
|
11
11
|
"lint": "vue-cli-service lint",
|
|
12
12
|
"test:e2e": "vue-cli-service test:e2e",
|
|
13
|
-
"test:unit": "vue-cli-service test:unit"
|
|
13
|
+
"test:unit": "vue-cli-service test:unit",
|
|
14
|
+
"build:style": "gulp --gulpfile build/gen-style.js",
|
|
15
|
+
"build:prod": "webpack --config build/webpack.prod.js",
|
|
16
|
+
"build:components": "webpack --config build/webpack.component.js",
|
|
17
|
+
"dist": "npm run build:prod && npm run build:components"
|
|
14
18
|
},
|
|
15
19
|
"dependencies": {
|
|
16
|
-
"@
|
|
20
|
+
"@tinymce/tinymce-vue": "^3.2.4",
|
|
21
|
+
"@zxing/library": "^0.19.3",
|
|
22
|
+
"core-js": "2.6.9",
|
|
17
23
|
"js-cookie": "^2.2.0",
|
|
18
|
-
"sortablejs": "1.10.2"
|
|
24
|
+
"sortablejs": "1.10.2",
|
|
25
|
+
"tinymce": "^5.6.1",
|
|
26
|
+
"webpack": "^4.39.2",
|
|
27
|
+
"webpack-cli": "^3.3.7"
|
|
19
28
|
},
|
|
20
29
|
"devDependencies": {
|
|
30
|
+
"@babel/core": "^7.5.5",
|
|
31
|
+
"@babel/plugin-transform-runtime": "^7.5.5",
|
|
32
|
+
"@babel/preset-env": "^7.5.5",
|
|
33
|
+
"@gcommon/gcommon-ui": "1.8.3",
|
|
21
34
|
"@vue/cli-plugin-babel": "3.8.0",
|
|
22
|
-
"@vue/
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
35
|
+
"@vue/test-utils": "^1.3.6",
|
|
36
|
+
"babel-loader": "^8.0.6",
|
|
37
|
+
"chai": "^4.2.0",
|
|
38
|
+
"cross-env": "^5.2.0",
|
|
39
|
+
"css-loader": "2.1.1",
|
|
40
|
+
"file-loader": "^4.2.0",
|
|
41
|
+
"gh-pages": "^2.1.1",
|
|
42
|
+
"gulp": "^4.0.2",
|
|
43
|
+
"gulp-autoprefixer": "^7.0.0",
|
|
44
|
+
"gulp-clean-css": "^4.2.0",
|
|
45
|
+
"gulp-rename": "^1.4.0",
|
|
46
|
+
"gulp-sass": "^4.0.2",
|
|
47
|
+
"karma": "^4.2.0",
|
|
48
|
+
"karma-chai": "^0.1.0",
|
|
49
|
+
"karma-chrome-launcher": "^3.1.0",
|
|
50
|
+
"karma-coverage": "^2.0.1",
|
|
51
|
+
"karma-mocha": "^1.3.0",
|
|
52
|
+
"karma-sinon-chai": "^2.0.2",
|
|
53
|
+
"karma-sourcemap-loader": "^0.3.7",
|
|
54
|
+
"karma-spec-reporter": "^0.0.32",
|
|
55
|
+
"karma-webpack": "^4.0.2",
|
|
56
|
+
"less": "^3.10.2",
|
|
57
|
+
"less-loader": "^5.0.0",
|
|
58
|
+
"mocha": "^6.2.0",
|
|
59
|
+
"node-sass": "^4.12.0",
|
|
60
|
+
"rimraf": "^3.0.0",
|
|
61
|
+
"sass-loader": "^7.3.1",
|
|
38
62
|
"sessionstorage": "^0.1.0",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
63
|
+
"sinon": "^7.4.1",
|
|
64
|
+
"sinon-chai": "^3.3.0",
|
|
65
|
+
"style-loader": "^0.23.1",
|
|
66
|
+
"url-loader": "^2.1.0",
|
|
41
67
|
"vue-i18n": "^8.17.4",
|
|
42
|
-
"vue-
|
|
43
|
-
"vue-
|
|
68
|
+
"vue-loader": "^15.7.1",
|
|
69
|
+
"vue-style-loader": "^4.1.2",
|
|
70
|
+
"vuepress": "^1.0.3",
|
|
44
71
|
"vuex": "^3.1.1"
|
|
45
72
|
}
|
|
46
73
|
}
|
package/src/i18n/langs/cn.js
CHANGED
|
@@ -40,7 +40,8 @@ const cn = {
|
|
|
40
40
|
switchToAdvancedQuery: '切换为高级查询',
|
|
41
41
|
isNull: '等于Null',
|
|
42
42
|
isNotNull: '不等于Null',
|
|
43
|
-
previewImage: '预览图片'
|
|
43
|
+
previewImage: '预览图片',
|
|
44
|
+
fullScreen: '全屏'
|
|
44
45
|
},
|
|
45
46
|
imatrixUIMessage: {
|
|
46
47
|
whetherToConfirmDeletion: '是否确认删除',
|
|
@@ -89,6 +90,7 @@ const cn = {
|
|
|
89
90
|
isShow: '是否显示',
|
|
90
91
|
isExportable: '是否导出',
|
|
91
92
|
recordLine: '第 {row} 行记录',
|
|
93
|
+
pageRecordLine: '第 {pageNum} 页第 {row} 行记录',
|
|
92
94
|
fileName: '文件名称',
|
|
93
95
|
deleteSuccessful: '删除成功',
|
|
94
96
|
index: '序号',
|
package/src/i18n/langs/en.js
CHANGED
|
@@ -40,7 +40,8 @@ const en = {
|
|
|
40
40
|
switchToAdvancedQuery: 'Switch To Advanced Query',
|
|
41
41
|
isNull: 'Is Null',
|
|
42
42
|
isNotNull: 'Is Not Null',
|
|
43
|
-
previewImage: 'Preview image'
|
|
43
|
+
previewImage: 'Preview image',
|
|
44
|
+
fullScreen: 'Full Screen'
|
|
44
45
|
},
|
|
45
46
|
imatrixUIMessage: {
|
|
46
47
|
whetherToConfirmDeletion: 'Whether To Confirm Deletion',
|
|
@@ -88,6 +89,7 @@ const en = {
|
|
|
88
89
|
isShow: 'Is Show',
|
|
89
90
|
isExportable: 'Is Exportable',
|
|
90
91
|
recordLine: 'Record line {row}',
|
|
92
|
+
pageRecordLine: 'Record in row {row} of page {pageNum}',
|
|
91
93
|
fileName: 'File Name',
|
|
92
94
|
deleteSuccessful: 'Deleted successfully',
|
|
93
95
|
index: 'No.',
|
package/src/index.js
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
// 依次导入组件库的各个组件
|
|
2
|
+
// import Breadcrumb from '../packages/breadcrumb'
|
|
3
|
+
// import DepartmentTree from '../packages/department-tree'
|
|
4
|
+
// import Hamburger from '../packages/hamburger'
|
|
5
|
+
// import SvgIcon from '../packages/svg-icon'
|
|
6
|
+
// import SuperGrid from '../packages/super-grid'
|
|
7
|
+
// import DepartmentUserTree from '../packages/department-user-tree'
|
|
8
|
+
// import WorkgroupTree from '../packages/workgroup-tree'
|
|
9
|
+
// import WorkgroupUserTree from '../packages/workgroup-user-tree'
|
|
10
|
+
// import InlineDepartmentTree from '../packages/department-tree-inline'
|
|
11
|
+
// import InlineDepartmentUserTree from '../packages/department-user-tree-inline'
|
|
12
|
+
// import InlineWorkgroupTree from '../packages/workgroup-tree-inline'
|
|
13
|
+
// import InlineWorkgroupUserTree from '../packages/workgroup-user-tree-inline'
|
|
14
|
+
// import WorkflowButton from '../packages/workflow-button'
|
|
15
|
+
// import WorkflowHistoryList from '../packages/workflow-history-list'
|
|
16
|
+
import PreventReclick from '../packages/directives/prevent-reclick'
|
|
17
|
+
// import exportPlugin from '../packages/export-data/index'
|
|
18
|
+
// import ValidCode from '../packages/valid-code'
|
|
19
|
+
import customPlugin from '../packages/plugins/index'
|
|
20
|
+
// import RemoveUser from '../packages/remove-user'
|
|
21
|
+
// import RemoveDepartment from '../packages/remove-department'
|
|
22
|
+
// import RemoveWorkgroup from '../packages/remove-workgroup'
|
|
23
|
+
// import OrganizationInput from '../packages/organization-input'
|
|
24
|
+
// import SuperNineGrid from '../packages/super-nine-grid'
|
|
25
|
+
// import DynamicSourceSelect from '../packages/dynamic-source-select'
|
|
26
|
+
// import FsUpload from '../packages/fs-upload'
|
|
27
|
+
// import ScanCodeInput from '../packages/scan-code-input'
|
|
28
|
+
// import FsPreview from '../packages/fs-preview'
|
|
29
|
+
// import FsUploadList from '../packages/fs-upload-list'
|
|
30
|
+
import { openPage } from './utils/jump-page-utils'
|
|
31
|
+
// import YearRangePicker from '../packages/year-range-picker'
|
|
32
|
+
// import MultipartUpload from '../packages/multipart-upload'
|
|
33
|
+
// import RichEditor from '../packages/rich-editor'
|
|
34
|
+
// import SecretInfo from '../packages/secret-info'
|
|
35
|
+
import plugins from '../packages/plugins/index'
|
|
36
|
+
import permission from './directives/permission'
|
|
37
|
+
|
|
38
|
+
// 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
39
|
+
const install = function(Vue) {
|
|
40
|
+
Vue.directive('prevent-reclick', PreventReclick)
|
|
41
|
+
permission.install(Vue)
|
|
42
|
+
Vue.use(customPlugin)
|
|
43
|
+
Vue.use(plugins)
|
|
44
|
+
if (install.installed) return
|
|
45
|
+
// components.map(component => Vue.component(component.name, component))
|
|
46
|
+
// components.forEach(component => {
|
|
47
|
+
// Vue.component(component.name, component)
|
|
48
|
+
// })
|
|
49
|
+
// 将弹出页面方法注册到window对象上
|
|
50
|
+
window['$plateform_openPage'] = openPage
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// 判断是否是直接引入vue的js文件,即全局引用可自动安装所有组件
|
|
54
|
+
if (typeof window !== 'undefined' && window.Vue) {
|
|
55
|
+
install(window.Vue)
|
|
56
|
+
}
|
|
57
|
+
// 按需引入
|
|
58
|
+
// export {
|
|
59
|
+
// Breadcrumb,
|
|
60
|
+
// DepartmentTree,
|
|
61
|
+
// Hamburger,
|
|
62
|
+
// SvgIcon,
|
|
63
|
+
// SuperGrid,
|
|
64
|
+
// DepartmentUserTree,
|
|
65
|
+
// WorkgroupTree,
|
|
66
|
+
// WorkgroupUserTree,
|
|
67
|
+
// InlineDepartmentTree,
|
|
68
|
+
// InlineDepartmentUserTree,
|
|
69
|
+
// InlineWorkgroupTree,
|
|
70
|
+
// InlineWorkgroupUserTree,
|
|
71
|
+
// WorkflowButton,
|
|
72
|
+
// WorkflowHistoryList,
|
|
73
|
+
// ValidCode,
|
|
74
|
+
// RemoveUser,
|
|
75
|
+
// RemoveDepartment,
|
|
76
|
+
// RemoveWorkgroup,
|
|
77
|
+
// OrganizationInput,
|
|
78
|
+
// SuperNineGrid,
|
|
79
|
+
// DynamicSourceSelect,
|
|
80
|
+
// FsUpload,
|
|
81
|
+
// ScanCodeInput,
|
|
82
|
+
// FsPreview,
|
|
83
|
+
// FsUploadList,
|
|
84
|
+
// YearRangePicker,
|
|
85
|
+
// MultipartUpload,
|
|
86
|
+
// RichEditor,
|
|
87
|
+
// SecretInfo
|
|
88
|
+
// }
|
|
89
|
+
|
|
90
|
+
export default {
|
|
91
|
+
// 导出的对象必须具有 install,才能被 Vue.use() 方法安装
|
|
92
|
+
install
|
|
93
|
+
}
|
package/src/permission.js
CHANGED
|
@@ -29,6 +29,10 @@ router.beforeEach((to, from, next) => {
|
|
|
29
29
|
setToken(token)
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
+
if (to.query && to.query._systemName_) {
|
|
33
|
+
// 表示需要设置浏览器页签名
|
|
34
|
+
document.title = to.query._systemName_
|
|
35
|
+
}
|
|
32
36
|
// console.log('router.beforeEach-getToken()=', token)
|
|
33
37
|
if ((['/update-password', '/forget-password', '/reset-password', '/redirect'].indexOf(to.path) === -1 || store.getters.whiteList.indexOf(to.path) !== -1) && token) {
|
|
34
38
|
if (to.path === '/login') {
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.flex-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
width: 100%;
|
|
4
|
+
|
|
5
|
+
.tree-area {
|
|
6
|
+
flex: 0 0 200px;
|
|
7
|
+
overflow: auto;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.list-area {
|
|
11
|
+
flex: 1;
|
|
12
|
+
overflow: auto;
|
|
13
|
+
margin-left: 20px;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.three-column-layout {
|
|
18
|
+
height: calc(100vh - 20px);
|
|
19
|
+
|
|
20
|
+
.el-aside {
|
|
21
|
+
margin-right: 20px;
|
|
22
|
+
padding-top: 20px;
|
|
23
|
+
background-color: #FFFFFF;
|
|
24
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.el-main {
|
|
29
|
+
padding: 20px 0 0 20px;
|
|
30
|
+
border-radius: 6px;
|
|
31
|
+
background: #FFFFFF;
|
|
32
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
33
|
+
}
|
|
34
|
+
}
|
package/src/styles/index.scss
CHANGED
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
@import './theme/blue2/sidebar.scss';
|
|
10
10
|
@import './theme/gray/index.scss';
|
|
11
11
|
@import './theme/gray/sidebar.scss';
|
|
12
|
+
// @import './theme/dark-blue/index.scss';
|
|
13
|
+
// @import './theme/dark-blue/sidebar.scss';
|
|
14
|
+
@import './display-layout.scss';
|
|
12
15
|
|
|
13
16
|
body {
|
|
14
17
|
overflow: hidden;
|
|
@@ -32,19 +35,33 @@ body .el-table th.gutter {
|
|
|
32
35
|
body .el-table colgroup.gutter {
|
|
33
36
|
display: table-cell !important;
|
|
34
37
|
}
|
|
38
|
+
|
|
35
39
|
// 日期控件宽度不自适应问题
|
|
36
|
-
.formContent .el-date-editor.el-input
|
|
37
|
-
.
|
|
40
|
+
.formContent .el-date-editor.el-input,
|
|
41
|
+
.formContent .el-date-editor.el-input__input,
|
|
42
|
+
.formContent .el-date-editor.el-input__inner,
|
|
43
|
+
.grid-search-form .el-date-editor.el-input,
|
|
44
|
+
.grid-search-form .el-date-editor.el-input__input,
|
|
45
|
+
.grid-search-form .el-date-editor.el-input__inner {
|
|
38
46
|
width: 100%;
|
|
39
47
|
}
|
|
40
|
-
|
|
41
|
-
.
|
|
48
|
+
|
|
49
|
+
.formContent .el-date-editor--daterange.el-input,
|
|
50
|
+
.formContent .el-date-editor--daterange.el-input__inner,
|
|
51
|
+
.formContent .el-date-editor--timerange.el-input,
|
|
52
|
+
.formContent .el-date-editor--timerange.el-input__inner,
|
|
53
|
+
.grid-search-form .el-date-editor--daterange.el-input,
|
|
54
|
+
.grid-search-form .el-date-editor--daterange.el-input__inner,
|
|
55
|
+
.grid-search-form .el-date-editor--timerange.el-input,
|
|
56
|
+
.grid-search-form .el-date-editor--timerange.el-input__inner {
|
|
42
57
|
width: 100%;
|
|
43
58
|
}
|
|
59
|
+
|
|
44
60
|
// 日期选择按钮太小问题(gcommon ui)
|
|
45
61
|
.el-picker-panel__footer .el-button--mini {
|
|
46
62
|
font-size: 16px;
|
|
47
63
|
}
|
|
64
|
+
|
|
48
65
|
// 显示必填标志
|
|
49
66
|
.is_req {
|
|
50
67
|
.required__label::before {
|
|
@@ -56,4 +73,15 @@ body .el-table colgroup.gutter {
|
|
|
56
73
|
|
|
57
74
|
.formContent .el-form-item {
|
|
58
75
|
margin-bottom: 0;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.operation-area-float {
|
|
79
|
+
float: right;
|
|
80
|
+
position: fixed;
|
|
81
|
+
bottom: 5px;
|
|
82
|
+
right: 4%;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.el-button+.el-button {
|
|
86
|
+
margin-left: 10px;
|
|
59
87
|
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
$titleColor: rgba(0, 0, 0, 0.85);
|
|
3
|
+
|
|
4
|
+
el-card box-card is-always-shadow .card-radius {
|
|
5
|
+
border-radius: 12px
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.form-card-header {
|
|
9
|
+
width: 3px;
|
|
10
|
+
height: 14px;
|
|
11
|
+
left: 0;
|
|
12
|
+
align-items: center;
|
|
13
|
+
text-align: center;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.form-card-header-bgc {
|
|
17
|
+
width: 3px;
|
|
18
|
+
height: 14px;
|
|
19
|
+
display: flex;
|
|
20
|
+
background-color: #3D4CF2
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.form-card-text {
|
|
24
|
+
padding-left: 8px;
|
|
25
|
+
font-size: 16px;
|
|
26
|
+
line-height: 24px;
|
|
27
|
+
font-weight: 500;
|
|
28
|
+
color: $titleColor;
|
|
29
|
+
display: table-cell;
|
|
30
|
+
position: relative;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.superForm {
|
|
34
|
+
.el-card {
|
|
35
|
+
border-radius: 12px;
|
|
36
|
+
box-shadow: 0 1px 4px 0 rgba(0, 13, 31, 0.10);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
.platform-card {
|
|
44
|
+
.el-card__header {
|
|
45
|
+
height: 40px;
|
|
46
|
+
background: #F0F8FE;
|
|
47
|
+
color: #005EBA;
|
|
48
|
+
font-family: Source Han Sans CN;
|
|
49
|
+
font-weight: medium;
|
|
50
|
+
font-size: 14px;
|
|
51
|
+
text-align: left;
|
|
52
|
+
padding: 9px 0px 9px 20px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.el-card__header>div {
|
|
56
|
+
line-height: 22px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.card-style {
|
|
60
|
+
margin-top: 20px;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* 改变主题色变量 */
|
|
2
|
+
$--color-primary: #005EBA;
|
|
3
|
+
$--button-default-border-color: $--color-primary;
|
|
4
|
+
$--button-default-font-color: $--color-primary;
|
|
5
|
+
$--button-font-weight: regular;
|
|
6
|
+
$--button-default-font-color: $--color-primary;
|
|
7
|
+
$--button-opt-background-color:#0780ED;
|
|
8
|
+
$th-cell-background: #F0F8FE;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
.el-dialog__header {
|
|
3
|
+
padding: 22px 0px 0px 24px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.el-dialog__title::before {
|
|
7
|
+
content: "";
|
|
8
|
+
text-align: center;
|
|
9
|
+
background: #1A6BF3;
|
|
10
|
+
float: left;
|
|
11
|
+
position: relative;
|
|
12
|
+
border-radius: 3px;
|
|
13
|
+
/** 定义成 block 元素 **/
|
|
14
|
+
display: block;
|
|
15
|
+
height: 21px;
|
|
16
|
+
width: 4px;
|
|
17
|
+
margin-right: 12px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
$titleColor: rgba(0, 0, 0, 0.85);
|
|
3
|
+
|
|
4
|
+
.list-file {
|
|
5
|
+
color: rgba(0, 13, 31, 0.45);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.form-list-file {
|
|
11
|
+
color: rgba(0, 0, 0, 0.65);
|
|
12
|
+
background: #F2F6FA;
|
|
13
|
+
border-radius: 6px;
|
|
14
|
+
font-size: 14px;
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
height: 28px;
|
|
17
|
+
line-height: 28px;
|
|
18
|
+
padding: 0 8px 0 8px;
|
|
19
|
+
margin-right: 32px
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.tip-font {
|
|
23
|
+
color: rgba(0, 0, 0, 0.65);
|
|
24
|
+
font-size: 14px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.superForm {
|
|
28
|
+
.el-form-item__label {
|
|
29
|
+
color: rgba(0, 13, 31, 0.85);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
.page-layout__title {
|
|
35
|
+
width: 46px;
|
|
36
|
+
height: 16px;
|
|
37
|
+
font-size: 11px;
|
|
38
|
+
font-weight: 500;
|
|
39
|
+
color: #333333;
|
|
40
|
+
line-height: 13px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.component-type-name__title {
|
|
44
|
+
width: 40px;
|
|
45
|
+
height: 14px;
|
|
46
|
+
font-size: 10px;
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
color: #333333;
|
|
49
|
+
line-height: 12px;
|
|
50
|
+
// -webkit-background-clip: text;
|
|
51
|
+
// -webkit-text-fill-color: transparent;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.page-layout__title::before {
|
|
55
|
+
content: "";
|
|
56
|
+
text-align: center;
|
|
57
|
+
background: #1A6BF3;
|
|
58
|
+
float: left;
|
|
59
|
+
position: relative;
|
|
60
|
+
border-radius: 3px;
|
|
61
|
+
/** 定义成 block 元素 **/
|
|
62
|
+
display: block;
|
|
63
|
+
// height: 21px;
|
|
64
|
+
// width: 4px;
|
|
65
|
+
margin-right: 12px;
|
|
66
|
+
|
|
67
|
+
width: 2px;
|
|
68
|
+
height: 16px;
|
|
69
|
+
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
|
|
3
|
+
.button-at-top {
|
|
4
|
+
width: 100%;
|
|
5
|
+
background: rgb(255, 255, 255);
|
|
6
|
+
line-height: 72px;
|
|
7
|
+
height: 72px;
|
|
8
|
+
position: absolute;
|
|
9
|
+
z-index: 100;
|
|
10
|
+
top: 0px;
|
|
11
|
+
left: 0px;
|
|
12
|
+
right: 0px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.button-at-bottom {
|
|
16
|
+
width: 100%;
|
|
17
|
+
background: rgb(255, 255, 255);
|
|
18
|
+
line-height: 72px;
|
|
19
|
+
height: 72px;
|
|
20
|
+
position: absolute;
|
|
21
|
+
bottom: 0px;
|
|
22
|
+
z-index: 100;
|
|
23
|
+
left: 0px;
|
|
24
|
+
right: 0px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.form-top-button {
|
|
28
|
+
height: 72px;
|
|
29
|
+
float: left;
|
|
30
|
+
padding-left: 24px;
|
|
31
|
+
line-height: 72px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.form-bottom-button {
|
|
35
|
+
height: 72px;
|
|
36
|
+
float: right;
|
|
37
|
+
padding-right: 24px;
|
|
38
|
+
line-height: 72px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.form-center-position{
|
|
42
|
+
position: relative;
|
|
43
|
+
|
|
44
|
+
.form-center-son{
|
|
45
|
+
position: absolute;
|
|
46
|
+
top: 50%;
|
|
47
|
+
left: 50%;
|
|
48
|
+
transform: translate(-50%,-50%);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|