jiance.vue 607 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. </view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. onShow() {
  17. },
  18. methods: {
  19. }
  20. };
  21. </script>
  22. <style lang="scss">
  23. .container {
  24. // height: 100%;
  25. min-height: 1500rpx;
  26. background-color: #fff;
  27. .jc {
  28. margin-top: 20rpx;
  29. background-color: #fff;
  30. .xc {
  31. width: 360rpx;
  32. height: 477rpx;
  33. // padding: 15rpx 23rpx;
  34. padding: 20rpx 10rpx 10rpx 20rpx;
  35. }
  36. }
  37. }
  38. </style>