borrow.vue 510 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="home">
  3. <view class="detail-area">
  4. <u-list>
  5. </u-list>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. };
  14. },
  15. onLoad:function(option){
  16. console.log(option.number)
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .home{
  22. padding: 20rpx;
  23. display: flex;
  24. flex-direction: column;
  25. height: 100vh;
  26. box-sizing: border-box;
  27. }
  28. .detail-area{
  29. height: 65%;
  30. background-color: $uni-bg-color-grey;
  31. border: 1px solid $uni-border-black;
  32. }
  33. </style>