hyf 3 yıl önce
ebeveyn
işleme
38c7700008

+ 1 - 1
src/components/ImageGrid/index.vue

@@ -75,7 +75,7 @@ export default {
 
       .title {
         font-size: 14px;
-        font-weight: 400;
+        font-weight: 600;
         color: #FFFFFF;
         background: linear-gradient(0deg, #FFFFFF 0%, #98A8B7 100%);
         -webkit-background-clip: text;

+ 13 - 0
src/styles/element-ui-reset/el-switch.scss

@@ -1,3 +1,16 @@
 .el-switch__label,.el-switch__label--left{
   color: #FFF;
 }
+
+.el-switch__core {
+  width: 30px !important;
+  height: 16px;
+}
+.el-switch__core::after {
+  width: 14px;
+  height: 14px;
+  margin-top: -1px;
+}
+.el-switch.is-checked .el-switch__core::after{
+  margin-left: -15px;
+}

+ 6 - 6
src/styles/element-ui-reset/el-tree.scss

@@ -5,8 +5,8 @@
 
   .el-tree-node  > .el-tree-node__content,.el-tree-node__content{
     background-color: inherit;
-    height: 40px;
-    line-height: 40px;
+    height: 30px;
+    line-height: 30px;
   }
 
   .el-tree-node.is-current > .el-tree-node__content,.el-tree-node__content:hover {
@@ -25,7 +25,7 @@
     &.node-checked {
       position: relative;
       color: #08A6DC;
-  
+
       &::after {
         position: absolute;
         content: "";
@@ -39,14 +39,14 @@
         transform: rotate(270deg);
       }
     }
-  }     
+  }
 }
 .custom-theme .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
   background-color: #003E51;
-} 
+}
 .el-tree .is-checked>.el-tree-node__content{
   color: #08A6DC;
-} 
+}
 .custom-theme {
    .el-tree{
     &::v-deep .el-tree-node__content:hover {

+ 1 - 1
src/views/system/group/group/groupTree.vue

@@ -208,7 +208,7 @@ export default {
       .right-icon {
         position: absolute;
         right: 10px;
-        top: 14px;
+        top: 7px;
         background: #5181A2;
         color: #FFFFFF;
         width: 14px;

+ 2 - 1
src/views/system/group/user/userList.vue

@@ -15,7 +15,7 @@
     </el-row>
 
     <el-row class="content-body">
-      <el-table v-loading="listLoading" class="page-table" :data="dataList" height="calc(100vh - 240px)">
+      <el-table v-loading="listLoading" class="page-table" :data="dataList" size="mini" height="calc(100vh - 240px)">
         <el-table-column type="index" align="center" label="序号" width="70" />
 
         <el-table-column width="60" align="center" label="头像">
@@ -69,6 +69,7 @@
                 inactive-text="锁定"
                 :active-value="1"
                 :inactive-value="2"
+                size="mini"
                 @change="(status)=>handlerChangeUserStatus(status, row)"
               />
             </div>

+ 4 - 2
src/views/system/profile/userProfile.vue

@@ -14,8 +14,10 @@
 
             <div class="box-center">
               <div class="user-name text-center">
-                <i class="el-icon-user" /> {{ viewData.accountName }} [{{ viewData.accountStaffNo }}]
+                <i class="el-icon-user" /> {{ viewData.accountName }}
+                <span v-if="viewData.accountStaffNo">[{{ viewData.accountStaffNo }}]</span>
               </div>
+
               <div class="user-phone text-center text-muted">
                 <i class="el-icon-mobile-phone" /> {{ viewData.accountPhone }}
               </div>
@@ -50,7 +52,7 @@
                         :width="200"
                         :height="200"
                         field="file"
-                        url="/admin/uploadFile"
+                        url="/upload/file"
                         @close="cropperClose"
                         @crop-upload-success="cropSuccess"
                         @crop-upload-fail="cropFailed"