123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="home">
- <view class="detail-area">
- <u-list>
- </u-list>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onLoad:function(option){
- console.log(option.number)
- }
- }
- </script>
- <style lang="scss" scoped>
- .home{
- padding: 20rpx;
- display: flex;
- flex-direction: column;
- height: 100vh;
- box-sizing: border-box;
- }
- .detail-area{
- height: 65%;
- background-color: $uni-bg-color-grey;
- border: 1px solid $uni-border-black;
- }
- </style>
|