myfans.vue 389 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="content">
  3. <view class="top-fan">
  4. </view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .top-fan {
  19. width: 750rpx;
  20. height: 336rpx;
  21. background: linear-gradient(-41deg, rgba(60, 237, 237, 0.99), #04B8FF, #375AFE);
  22. }
  23. </style>