shish 7 hours ago
parent
commit
e1fe0216a0
1 changed files with 16 additions and 4 deletions
  1. 16 4
      hdApp/src/admin/home/components/mall-home-panel.vue

+ 16 - 4
hdApp/src/admin/home/components/mall-home-panel.vue

@@ -106,11 +106,13 @@
       <view v-if="pendingRefundCount > 0" class="module-com refund-todo-wrap" @click="goPendingRefund">
         <view class="refund-todo-row">
           <view class="refund-todo-left">
-            <text class="refund-todo-title">售后审核</text>
+            <text class="refund-todo-title">售后审核</text>
             <text class="refund-todo-stat">有{{ pendingRefundCount }}笔待处理</text>
           </view>
-          <text class="refund-todo-action">去处理</text>
-          <text class="refund-todo-arrow">›</text>
+          <view class="refund-todo-right">
+            <text class="refund-todo-action">去处理</text>
+            <text class="refund-todo-arrow">›</text>
+          </view>
         </view>
       </view>
 
@@ -761,13 +763,23 @@ export default {
   font-size: 28upx;
   color: #d4380d;
   font-weight: 700;
+  line-height: 40upx;
   margin-right: 8upx;
 }
+.refund-todo-right {
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  flex-shrink: 0;
+}
 .refund-todo-arrow {
   flex-shrink: 0;
   font-size: 40upx;
   color: #d4380d;
-  line-height: 1;
+  line-height: 40upx;
+  height: 40upx;
+  /* › 字形偏下,略上移与「去处理」视觉居中 */
+  transform: translateY(-2upx);
 }
 
 .news-wrap {