| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view>
- <view class="btn cu-btn cuIcon round bg-base" style="position: ;">
- <text class="cuIcon-add" style="font-size: 50rpx;"></text>
- </view>
- </view>
- </template>
- <script>
- export default {
- components:{
-
- },
- data() {
- return {
-
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .btn{
- position: fixed;
- bottom: 20%;
- right: 20rpx;
- width: 80rpx;height: 80rpx;text-align: center;line-height: 80rpx;
- }
- </style>
|