macmini 1 tydzień temu
rodzic
commit
2394739258
3 zmienionych plików z 14 dodań i 8 usunięć
  1. 2 2
      src/App.ku.vue
  2. 9 4
      src/pages-A/bank/index.vue
  3. 3 2
      src/pages-A/withdraw/index.vue

+ 2 - 2
src/App.ku.vue

@@ -28,9 +28,9 @@ defineExpose({
 <template>
     <view>
         <!-- 这个先隐藏了,知道这样用就行 -->
-        <view class="hidden text-center">
+        <!-- <view class="hidden text-center">
             {{ helloKuRoot }},这里可以配置全局的东西
-        </view>
+        </view> -->
 
         <KuRootView />
 

+ 9 - 4
src/pages-A/bank/index.vue

@@ -47,24 +47,29 @@ const list = ref([{
   min-height: 100vh;
   background-color: #f5f5f5;
   line-height: 1;
+  padding: 20rpx;
 }
 .bank-list {
-  margin: 20rpx;
+  padding: 0 20rpx;
   background: #ffff;
   border-radius: 10rpx;
   .bank-list-item {
     display: flex;
     align-items: center;
     justify-content: space-between;
-    padding: 0 24rpx;
+    // padding: 0 24rpx;
     background: #fff;
     border-radius: 10rpx;
     margin-bottom: 20rpx;
+    border-bottom: 1rpx solid #eeeeee;
+    &:last-child {
+      border-bottom: none;
+    }
     .bank-list-item-left {
       display: flex;
       align-items: center;
       gap: 14rpx;
-      padding: 28rpx 0;
+      padding: 28rpx 0 28rpx 4rpx;
       .bank-list-item-left-hanke {
         display: flex;
         align-items: center;
@@ -87,7 +92,7 @@ const list = ref([{
       display: flex;
       align-items: center;
       gap: 10rpx;
-      padding: 28rpx 0;
+      padding: 28rpx 4rpx 28rpx 0;
     }
   }
 }

+ 3 - 2
src/pages-A/withdraw/index.vue

@@ -83,9 +83,10 @@ function toBindBank() {
 }
 .profile-container {
   font-family: Alibaba PuHuiTi;
-  min-height: 100vh;
+  min-height: calc(100vh - 20rpx);
   background-color: #f5f5f5;
   line-height: 1;
+  padding: 20rpx 0 0 0;
   //   padding-top: 44px; /* 为固定导航栏留出空间 */
   .widthdraw-select-card {
     height: 88rpx;
@@ -98,7 +99,7 @@ function toBindBank() {
     font-size: 26rpx;
     color: #333333;
     padding: 0 20rpx;
-    margin: 20rpx;
+    margin: 0 20rpx;
     .widthdraw-select-card-left {
       display: flex;
       align-items: center;