1234567891011121314151617181920212223242526272829303132333435363738 |
- <!-- 帮助说明 -->
- <template>
- <view class="content">
- <image src="@/static/images/mine/banner@2x.png" mode="widthFix" class="banner"></image>
- <view class="content1">
- <image src="@/static/images/mine/content.png" mode="widthFix" class="content-img"></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background: white;
- }
- .banner {
- width: 100%;
- }
- .content1 {
- margin: 20rpx;
- padding: 20rpx;
- background: #F4F8FF;
- border-radius: 20rpx;
- display: flex;
- justify-content: center;
- }
- </style>
|