gang.huang 2 years ago
parent
commit
647bb8169f
1 changed files with 7 additions and 6 deletions
  1. 7 6
      admin/templates/default/provider.refill.balance.php

+ 7 - 6
admin/templates/default/provider.refill.balance.php

@@ -104,6 +104,7 @@
         top: -1px;
         left: 0;
         background: #fff;
+        box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
         z-index: 1;
     }
 
@@ -554,16 +555,16 @@
                     <table class="editStatTypeTable">
                     <thead>
                         <th>主体名称</th>
-                        <th>回调时间</th>
-                        <th>下单时间</th>
-                        <th>无</th>
+                        <th style="width:100px;">回调时间</th>
+                        <th style="width:100px;">下单时间</th>
+                        <th style="width:100px;">无</th>
                     </thead>`;
                     datas.map((item, index) => {
                         tableHTML += `<tr>
                             <td>${item.name}</td>
-                            <td><label><input type="radio" name="statType-${index}" /></label></td>
-                            <td><label><input type="radio" name="statType-${index}" /></label></td>
-                            <td><label><input type="radio" name="statType-${index}" /></label></td>
+                            <td style="width:100px;"><label><input type="radio" name="statType-${index}" /></label></td>
+                            <td style="width:100px;"><label><input type="radio" name="statType-${index}" /></label></td>
+                            <td style="width:100px;"><label><input type="radio" name="statType-${index}" /></label></td>
                         </tr>`
                     })