jiance.vue 766 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="container">
  3. <view class="jc">
  4. <view class="list">
  5. <image class="xc" src="../../static/img/xc.png" mode=""></image>
  6. <image class="xc" src="../../static/img/xc.png" mode=""></image>
  7. <image class="xc" src="../../static/img/xc.png" mode=""></image>
  8. <image class="xc" src="../../static/img/xc.png" mode=""></image>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. onShow() {
  20. },
  21. methods: {
  22. }
  23. };
  24. </script>
  25. <style lang="scss">
  26. .container {
  27. min-height: 1500rpx;
  28. background-color: #fff;
  29. .jc {
  30. margin-top: 20rpx;
  31. background-color: #fff;
  32. .xc {
  33. width: 360rpx;
  34. height: 477rpx;
  35. padding: 20rpx 10rpx 10rpx 20rpx;
  36. }
  37. }
  38. }
  39. </style>