diff --git a/src/assets/styles/mixin.scss b/src/assets/styles/mixin.scss index cae1197..1cb4d9b 100644 --- a/src/assets/styles/mixin.scss +++ b/src/assets/styles/mixin.scss @@ -979,4 +979,54 @@ background-color: #FFFFFF !important; box-shadow: -3px 3px 11px 0px rgba(0,0,0,0.08); } +} + +// 个人中心 +@mixin process-left-style{ + [data-theme="dark"] & { + box-shadow: 5px 2px 10px 1px rgba(15,164,222,.16); + color: #339cff; + li{ + &.active-li{ + color: #fff; + &::before{ + background-color: #fff; + } + } + &:hover{ + background-image: $subMenuHover; + } + } + } + [data-theme="light"] & { + color: #0C0E1E; + box-shadow: 4px 0px 4px 0px rgba(0,0,0,0.04); + li{ + &.active-li{ + color: #0348F3; + &::before{ + background-color: #0348F3; + } + } + &:hover{ + background-color:#E8F2FF; + color: #0C0E1E; + } + } + } +} + +[data-theme=dark] .process-center { + height: calc(100vh - 202px); + margin-top: -30px; + .process-right{ + padding-right: 20px; + width: calc(100vw - 944px); + } +} +[data-theme=light] .process-center { + height: calc(100vh - 193px); + .process-right{ + width: calc(100vw - 964px); + } } \ No newline at end of file diff --git a/src/assets/styles/yxk-admin.scss b/src/assets/styles/yxk-admin.scss index c8b512c..ec5859a 100644 --- a/src/assets/styles/yxk-admin.scss +++ b/src/assets/styles/yxk-admin.scss @@ -2130,3 +2130,40 @@ input[type ='number'] { height: calc(100vh - 380px); } +// 个人中心 +.process-center{ + display: flex; + justify-content: space-between; + height: 100%; + overflow: hidden; + .process-left{ + width: 240px; + padding: 26px 0; + @include process-left-style; + li{ + height: 50px; + line-height: 50px; + padding-left: 40px; + cursor: pointer; + &.active-li{ + position: relative; + &::before{ + position: absolute; + left: 0; + top: 50%; + content: ""; + width: 3px; + height: 28px; + margin-top: -14px; + } + } + + } + } + .head-container{ + margin: 20px 0 !important; + } + .user-search-btn{ + @include btn_blue_style; + } +} diff --git a/src/views/system/processManage/runningProcess/module/businessDetails/index.vue b/src/views/system/processManage/runningProcess/module/businessDetails/index.vue index 95477c2..ff0373b 100644 --- a/src/views/system/processManage/runningProcess/module/businessDetails/index.vue +++ b/src/views/system/processManage/runningProcess/module/businessDetails/index.vue @@ -1,7 +1,7 @@