shish 2 месяцев назад
Родитель
Сommit
89c6046f0e
1 измененных файлов с 20 добавлено и 16 удалено
  1. 20 16
      hdApp/src/admin/home/member.vue

+ 20 - 16
hdApp/src/admin/home/member.vue

@@ -270,10 +270,10 @@ export default {
       }
       const balance = Number(item.balance) || 0;
       if (balance < 0) {
-        return `-${this.formatNumber(Math.abs(balance))}`;
+        return `${this.formatNumber(Math.abs(balance))}`;
       }
       if (balance > 0) {
-        return `余额${this.formatNumber(balance)}`;
+        return `${this.formatNumber(balance)}`;
       }
       return "0";
     },
@@ -381,7 +381,11 @@ export default {
 }
 
 .toolbar > view:first-child {
-  margin-left: 0;
+  margin-left: 10upx;
+}
+
+.toolbar > view:last-child {
+  margin-right: 12upx;
 }
 
 .search-style-btn,
@@ -518,7 +522,7 @@ export default {
 .tab-name {
   margin-top: 16upx;
   color: #33383f;
-  font-size: 22upx;
+  font-size: 23upx;
   line-height: 32upx;
 }
 
@@ -526,7 +530,7 @@ export default {
   margin-top: 6upx;
   margin-bottom: 14upx;
   color: #858b94;
-  font-size: 22upx;
+  font-size: 24upx;
   line-height: 28upx;
 }
 
@@ -536,16 +540,16 @@ export default {
 }
 
 .list-wrap {
-  padding: 10upx 12upx 14upx;
+  padding: 12upx 12upx 14upx;
 }
 
 .member-card {
   position: relative;
   display: flex;
   align-items: center;
-  min-height: 132upx;
-  margin-bottom: 10upx;
-  padding: 22upx 52upx 22upx 24upx;
+  min-height: 148upx;
+  margin-bottom: 12upx;
+  padding: 25upx 52upx 25upx 24upx;
   border-radius: 20upx;
   background: #fff;
   box-shadow: 0 8upx 24upx rgba(24, 37, 30, 0.05);
@@ -554,16 +558,16 @@ export default {
 
 .avatar-wrap {
   position: relative;
-  width: 86upx;
-  height: 86upx;
+  width: 90upx;
+  height: 90upx;
   margin-right: 22upx;
   flex-shrink: 0;
 }
 
 .avatar-img,
 .avatar-placeholder {
-  width: 86upx;
-  height: 86upx;
+  width: 90upx;
+  height: 90upx;
   border-radius: 50%;
 }
 
@@ -634,7 +638,7 @@ export default {
   display: flex;
   align-items: center;
   flex-wrap: nowrap;
-  margin-top: 14upx;
+  margin-top: 20upx;
   overflow: hidden;
 }
 
@@ -646,8 +650,8 @@ export default {
   margin-right: 18upx;
   min-width: 0;
   color: #828892;
-  font-size: 24upx;
-  line-height: 30upx;
+  font-size: 26upx;
+  line-height: 32upx;
 }
 
 .meta-item text,