test2.vue 556 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="">
  3. <view class="cover center" style="flex-direction: column;">
  4. <text class="cuIcon-roundaddfill text-base" style="font-size: 80rpx;"></text>
  5. <text style="margin-top: 10rpx;">请上传活动封面</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. components:{
  12. },
  13. data() {
  14. return {
  15. form:{
  16. title:''
  17. }
  18. };
  19. },
  20. onLoad() {
  21. },
  22. methods:{
  23. }
  24. };
  25. </script>
  26. <style lang="scss" scoped>
  27. .cover{
  28. background-color: #FFFFFF;
  29. border-radius: 20rpx;
  30. margin: 20rpx;
  31. padding: 100rpx;
  32. }
  33. </style>