12345678910111213141516171819202122232425 |
- <!-- 帮助说明 -->
- <template>
- <view class="content flex-center">
- <image class="img" src="@/static/images/help/banner@2x.png" mode="widthFix"></image>
- <image class="img" src="@/static/images/help/tu1@2x.png" mode="widthFix"></image>
- <image class="img" src="@/static/images/help/zy.png" mode="widthFix"></image>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- .img{
- width: 100%;
- }
- </style>
|