bing vor 1 Woche
Ursprung
Commit
356c6ccc6e
1 geänderte Dateien mit 11 neuen und 3 gelöschten Zeilen
  1. 11 3
      src/views/payment/account/facePhoto.vue

+ 11 - 3
src/views/payment/account/facePhoto.vue

@@ -1,8 +1,8 @@
1 1
 <template>
2
-  <div class="p-2 auto-overflow-y">
2
+  <div class="p-2 auto-overflow-y" style="overflow-x: hidden">
3 3
     <el-row :gutter="20">
4 4
       <!-- 部门树 -->
5
-      <el-col :lg="4" :xs="24" style="">
5
+      <el-col :lg="5" :xs="24" style="">
6 6
         <el-card shadow="hover">
7 7
           <el-input v-model="deptName" placeholder="请输入部门名称" prefix-icon="Search" clearable />
8 8
           <el-tree
@@ -19,7 +19,7 @@
19 19
           />
20 20
         </el-card>
21 21
       </el-col>
22
-      <el-col :lg="20" :xs="24">
22
+      <el-col :lg="19" :xs="24">
23 23
         <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
24 24
           <div v-show="showSearch" class="mb-[10px]">
25 25
             <el-card shadow="hover">
@@ -390,4 +390,12 @@ const handleAvatarSuccess: UploadProps['onSuccess'] = (response, uploadFile) =>
390 390
   min-width: 100% !important;
391 391
   vertical-align: top !important; /* 清除默认的 vertical-align */
392 392
 }
393
+
394
+:deep(ul.el-upload-list div.el-upload-list__item-info) {
395
+  width: 100% !important;
396
+}
397
+
398
+:deep(.el-upload-list__item .el-icon--close) {
399
+  right: -0.8rem;
400
+}
393 401
 </style>