You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

add-work-list.vue 425B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <view>1</view>
  5. <view>1</view>
  6. <view>1</view>
  7. </view>
  8. </view>
  9. </template>
  10. <script setup lang="ts">
  11. </script>
  12. <style lang="scss" scoped>
  13. .content{
  14. padding-top: 30rpx;
  15. box-sizing: border-box;
  16. }
  17. .list{
  18. background: #FFFFFF;
  19. border-radius: 12rpx;
  20. border: 1px solid #FFFFFF;
  21. width: 90%;
  22. margin: 0 auto;
  23. }
  24. </style>