| 12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="">
- <view class="cover center" style="flex-direction: column;">
- <text class="cuIcon-roundaddfill text-base" style="font-size: 80rpx;"></text>
- <text style="margin-top: 10rpx;">请上传活动封面</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- components:{
- },
- data() {
- return {
- form:{
- title:''
- }
- };
- },
- onLoad() {
-
- },
- methods:{
-
- }
- };
- </script>
- <style lang="scss" scoped>
- .cover{
- background-color: #FFFFFF;
- border-radius: 20rpx;
- margin: 20rpx;
- padding: 100rpx;
- }
- </style>
|