diff --git a/src/assets/images/icon/tree-01.png b/src/assets/images/icon/tree-01.png new file mode 100644 index 0000000..ef637e0 Binary files /dev/null and b/src/assets/images/icon/tree-01.png differ diff --git a/src/assets/images/icon/tree-02.png b/src/assets/images/icon/tree-02.png new file mode 100644 index 0000000..d1c7d85 Binary files /dev/null and b/src/assets/images/icon/tree-02.png differ diff --git a/src/assets/images/icon/tree-03.png b/src/assets/images/icon/tree-03.png new file mode 100644 index 0000000..882e33e Binary files /dev/null and b/src/assets/images/icon/tree-03.png differ diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 680426d..a8a7243 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -220,6 +220,11 @@ ul{ background-color: rgba(0,0,0,0.2); } + +.iconfont{ + font-weight: normal; +} + @media screen and (min-width:1200px) and (max-width:1536px){ .tab-content .tab-nav { li{ diff --git a/src/assets/styles/mixin.scss b/src/assets/styles/mixin.scss index 4788a7e..8be844e 100644 --- a/src/assets/styles/mixin.scss +++ b/src/assets/styles/mixin.scss @@ -32,7 +32,7 @@ background-color: #13439E; } [data-theme="light"] & { - background-color:#d3dce6; + background-color:#0348F3; } } @@ -364,6 +364,11 @@ } } +@mixin tree_children_icon_font{ + [data-theme="light"] & { + color: #0C0E1E; + } +} @mixin tree_children_padding{ [data-theme="light"] & { @@ -692,3 +697,50 @@ } } } +@mixin category-left-style{ + [data-theme="dark"] & { + width: 328px; + } + [data-theme="light"] & { + width: 368px; + } +} + +@mixin category-right-hide{ + [data-theme="dark"] & { + width: calc(100vw - 442px); + } + [data-theme="light"] & { + width: calc(100vw - 482px); + } +} + +@mixin category-right-open{ + [data-theme="dark"] & { + width: calc(100vw - 644px); + } + [data-theme="light"] & { + width: calc(100vw - 684px); + } +} + +@mixin category-info-item{ + [data-theme="dark"] & { + margin-bottom: 30px; + } + [data-theme="light"] & { + margin-bottom: 15px; + } +} + +@mixin category-info-text{ + [data-theme="dark"] & { + background-color: #02255f; + color: #fff; + border-radius: 4px; + margin-right: 20px; + } + [data-theme="light"] & { + color: #0C0E1E; + } +} diff --git a/src/assets/styles/yxk-admin.scss b/src/assets/styles/yxk-admin.scss index 0ce2787..8aadb10 100644 --- a/src/assets/styles/yxk-admin.scss +++ b/src/assets/styles/yxk-admin.scss @@ -38,22 +38,21 @@ .elect-cont-right{ width: calc(100vw - 379px); } - .category-container{ .elect-cont-right{ - width: calc(100vw - 482px); + @include category-right-hide; } } } + .openSidebar{ // siderbar-展开 256 + 间距 60 + treeLeft 265 .elect-cont-right{ width: calc(100vw - 581px); } - .category-container{ .elect-cont-right{ - width: calc(100vw - 684px); + @include category-right-open; } } } @@ -86,7 +85,7 @@ .category-container{ .elect-cont-left{ - width: 368px; + @include category-left-style; } .elect-cont-right{ margin-top: 0; @@ -308,7 +307,7 @@ @include tree_font_color; } .el-tree-node__children{ - padding: 0 18px; + padding: 0 0 0 18px; .el-tree-node__content{ @include tree_children_padding; height: 30px; @@ -1574,3 +1573,33 @@ input[type ='number'] { -webkit-box-shadow: -1px 0 0 0 #1890ff; box-shadow: -1px 0 0 0 #E8F2FF; } + +.iconFolder{ + display: inline-block; + width: 17px; + height: 17px; + padding-left: 22px; + background: url('~@/assets/images/icon/tree-01.png') no-repeat left center; + background-size: contain; +} +.iconArch{ + display: inline-block; + width: 20px; + height: 20px; + padding-left: 22px; + background: url('~@/assets/images/icon/tree-02.png') no-repeat left center; + background-size: cover; +} + +.iconFile{ + @include tree_children_font; + font-family: "iconfont" !important; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + &::before{ + content: "\e623"; + font-size: 16px; + @include tree_children_icon_font; + } +} \ No newline at end of file diff --git a/src/components/Crud/CRUD.operation.vue b/src/components/Crud/CRUD.operation.vue index 412613a..2223890 100644 --- a/src/components/Crud/CRUD.operation.vue +++ b/src/components/Crud/CRUD.operation.vue @@ -249,9 +249,6 @@ export default { .crud-opts .crud-opts-right span { float: left; } -.iconfont{ - font-weight: normal; -} .icon-xinzeng{ font-size: 14px !important; } diff --git a/src/views/system/archivesCategory/archiveSealSetting/index.vue b/src/views/system/archivesCategory/archiveSealSetting/index.vue new file mode 100644 index 0000000..117735f --- /dev/null +++ b/src/views/system/archivesCategory/archiveSealSetting/index.vue @@ -0,0 +1,24 @@ + + + + + diff --git a/src/views/system/archivesCategory/baseInfo/index.vue b/src/views/system/archivesCategory/baseInfo/index.vue new file mode 100644 index 0000000..df4d7d9 --- /dev/null +++ b/src/views/system/archivesCategory/baseInfo/index.vue @@ -0,0 +1,125 @@ + + + + + diff --git a/src/views/system/archivesCategory/descriptionPreview/index.vue b/src/views/system/archivesCategory/descriptionPreview/index.vue new file mode 100644 index 0000000..f4ced3b --- /dev/null +++ b/src/views/system/archivesCategory/descriptionPreview/index.vue @@ -0,0 +1,318 @@ + + + + diff --git a/src/views/system/archivesCategory/fieldManage/index.vue b/src/views/system/archivesCategory/fieldManage/index.vue new file mode 100644 index 0000000..b8c5afb --- /dev/null +++ b/src/views/system/archivesCategory/fieldManage/index.vue @@ -0,0 +1,225 @@ + + + + + diff --git a/src/views/system/archivesCategory/fieldManage/module/form.vue b/src/views/system/archivesCategory/fieldManage/module/form.vue new file mode 100644 index 0000000..017f536 --- /dev/null +++ b/src/views/system/archivesCategory/fieldManage/module/form.vue @@ -0,0 +1,65 @@ + + + diff --git a/src/views/system/archivesCategory/fileNoFormat/index.vue b/src/views/system/archivesCategory/fileNoFormat/index.vue new file mode 100644 index 0000000..c9ab3f4 --- /dev/null +++ b/src/views/system/archivesCategory/fileNoFormat/index.vue @@ -0,0 +1,190 @@ + + + + + diff --git a/src/views/system/archivesCategory/fileNoFormat/module/form.vue b/src/views/system/archivesCategory/fileNoFormat/module/form.vue new file mode 100644 index 0000000..f5df3ea --- /dev/null +++ b/src/views/system/archivesCategory/fileNoFormat/module/form.vue @@ -0,0 +1,87 @@ + + + + + diff --git a/src/views/system/archivesCategory/fileNoFormat/module/sortDialog.vue b/src/views/system/archivesCategory/fileNoFormat/module/sortDialog.vue new file mode 100644 index 0000000..03e3e35 --- /dev/null +++ b/src/views/system/archivesCategory/fileNoFormat/module/sortDialog.vue @@ -0,0 +1,81 @@ + + + + + diff --git a/src/views/system/archivesCategory/form.vue b/src/views/system/archivesCategory/form.vue new file mode 100644 index 0000000..3d49bf1 --- /dev/null +++ b/src/views/system/archivesCategory/form.vue @@ -0,0 +1,152 @@ + + + + + diff --git a/src/views/system/archivesCategory/index.vue b/src/views/system/archivesCategory/index.vue new file mode 100644 index 0000000..f7e8d67 --- /dev/null +++ b/src/views/system/archivesCategory/index.vue @@ -0,0 +1,303 @@ + + + + + diff --git a/src/views/system/archivesCategory/listBrowsing/index.vue b/src/views/system/archivesCategory/listBrowsing/index.vue new file mode 100644 index 0000000..24ffdac --- /dev/null +++ b/src/views/system/archivesCategory/listBrowsing/index.vue @@ -0,0 +1,242 @@ + + + + diff --git a/src/views/system/archivesCategory/listBrowsing/module/form.vue b/src/views/system/archivesCategory/listBrowsing/module/form.vue new file mode 100644 index 0000000..a9dd12e --- /dev/null +++ b/src/views/system/archivesCategory/listBrowsing/module/form.vue @@ -0,0 +1,106 @@ + + + + + diff --git a/src/views/system/archivesCategory/listBrowsing/module/sortDialog.vue b/src/views/system/archivesCategory/listBrowsing/module/sortDialog.vue new file mode 100644 index 0000000..7a0bad5 --- /dev/null +++ b/src/views/system/archivesCategory/listBrowsing/module/sortDialog.vue @@ -0,0 +1,81 @@ + + + + + diff --git a/src/views/system/archivesCategory/orderingRule/index.vue b/src/views/system/archivesCategory/orderingRule/index.vue new file mode 100644 index 0000000..8fd6ba4 --- /dev/null +++ b/src/views/system/archivesCategory/orderingRule/index.vue @@ -0,0 +1,212 @@ + + + + + diff --git a/src/views/system/archivesCategory/orderingRule/module/form.vue b/src/views/system/archivesCategory/orderingRule/module/form.vue new file mode 100644 index 0000000..600e343 --- /dev/null +++ b/src/views/system/archivesCategory/orderingRule/module/form.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/src/views/system/archivesCategory/orderingRule/module/sortDialog.vue b/src/views/system/archivesCategory/orderingRule/module/sortDialog.vue new file mode 100644 index 0000000..24cc4db --- /dev/null +++ b/src/views/system/archivesCategory/orderingRule/module/sortDialog.vue @@ -0,0 +1,81 @@ + + + + + diff --git a/src/views/system/archivesCategory/processManage/index.vue b/src/views/system/archivesCategory/processManage/index.vue new file mode 100644 index 0000000..f2e815d --- /dev/null +++ b/src/views/system/archivesCategory/processManage/index.vue @@ -0,0 +1,9 @@ + + + + + diff --git a/src/views/system/archivesCategory/publicScreening/index.vue b/src/views/system/archivesCategory/publicScreening/index.vue new file mode 100644 index 0000000..a546b99 --- /dev/null +++ b/src/views/system/archivesCategory/publicScreening/index.vue @@ -0,0 +1,9 @@ + + + + + diff --git a/src/views/system/archivesCategory/sortDialog.vue b/src/views/system/archivesCategory/sortDialog.vue new file mode 100644 index 0000000..930ff88 --- /dev/null +++ b/src/views/system/archivesCategory/sortDialog.vue @@ -0,0 +1,84 @@ + + + + + diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index 9a5c3d5..7fa2f96 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -44,7 +44,6 @@ -