rg.vue 417 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="content">
  3. <view class="top"><image src="../../static/img/rg.png" mode=""></image></view>
  4. <view class="main" v-for="(item, index) in 10"></view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {};
  11. },
  12. onLoad() {},
  13. onShow() {},
  14. methods: {}
  15. };
  16. </script>
  17. <style lang="scss">
  18. .top {
  19. width: 750rpx;
  20. height: 750rpx;
  21. image {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. }
  26. </style>