addBtn.vue 469 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view>
  3. <view class="btn cu-btn cuIcon round bg-base" style="position: ;">
  4. <text class="cuIcon-add" style="font-size: 50rpx;"></text>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. components:{
  11. },
  12. data() {
  13. return {
  14. }
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .btn{
  22. position: fixed;
  23. bottom: 20%;
  24. right: 20rpx;
  25. width: 80rpx;height: 80rpx;text-align: center;line-height: 80rpx;
  26. }
  27. </style>