12345678910111213141516171819202122232425262728 |
- <template>
- <view class="content">
- <view class="list">
- <view>1</view>
- <view>1</view>
- <view>1</view>
- </view>
- </view>
-
- </template>
-
- <script setup lang="ts">
-
- </script>
-
- <style lang="scss" scoped>
- .content{
- padding-top: 30rpx;
- box-sizing: border-box;
- }
- .list{
- background: #FFFFFF;
- border-radius: 12rpx;
- border: 1px solid #FFFFFF;
- width: 90%;
- margin: 0 auto;
- }
- </style>
|