shish 11 месяцев назад
Родитель
Сommit
0d86f2cbea
1 измененных файлов с 7 добавлено и 8 удалено
  1. 7 8
      hdPad/src/pages/home/custom.vue

+ 7 - 8
hdPad/src/pages/home/custom.vue

@@ -12,9 +12,14 @@
                 <customInfo ref="customInforRef" :selectCustomId="selectCustomId" @goBalance="goBalance" @changeBirthday="changeBirthday"></customInfo>
             </view>
             <view class="custom-asset" v-if="showIndex == 0"></view>
-            <view class="custom-asset balance" v-if="showIndex == 1">
+            <view class="custom-asset" v-if="showIndex == 1">
                 <balanceChange ref="balanceChangeRef" :customId="selectCustomId"></balanceChange>
             </view>
+
+            <view class="custom-asset" v-if="showIndex == 2">
+
+            </view>
+
         </view>
     </view>
 </view>
@@ -35,7 +40,7 @@ export default {
             currentJobType:'custom',
             currentJobId:0,
             selectCustomId:0,
-            showIndex:0
+            showIndex:0,//0操作按钮 1余额变动 2修改生日
         }
     },
     computed: {
@@ -122,12 +127,6 @@ export default {
     }
     & .custom-asset{
         flex: 32;
-        
-        &.balance {
-            display: flex;
-            flex-direction: column;
-            padding: 0;
-        }
     }
 }
 </style>