hxb.vue 571 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="box-top">
  3. <view class="bg3">
  4. <image src="../static/index/img14.png" mode=""></image>
  5. </view>
  6. <view class="bg3 two">
  7. <image src="../static/index/img08.png" mode=""></image>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: "hxb",
  14. data() {
  15. return {
  16. };
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .box-top {
  22. display: flex;
  23. padding: 36rpx 41rpx 72rpx 41rpx;
  24. .bg3 {
  25. width: 56rpx;
  26. height: 62rpx;
  27. image:{
  28. height: 100%;
  29. width: 100%;
  30. }
  31. }
  32. }
  33. .two {
  34. margin-left: 36rpx;
  35. }
  36. </style>