12345678910111213141516171819202122232425262728 |
- <template>
- <view class="content">
- <view class="top"><image src="../../static/img/rg.png" mode=""></image></view>
- <view class="main" v-for="(item, index) in 10"></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad() {},
- onShow() {},
- methods: {}
- };
- </script>
- <style lang="scss">
- .top {
- width: 750rpx;
- height: 750rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|