1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view class="container">
- <view class="jc">
- <view class="list">
- <image class="xc" src="../../static/img/xc.png" mode=""></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onShow() {
-
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss">
- .container {
- // height: 100%;
- min-height: 1500rpx;
- background-color: #fff;
- .jc {
- margin-top: 20rpx;
- background-color: #fff;
- .xc {
- width: 360rpx;
- height: 477rpx;
- // padding: 15rpx 23rpx;
- padding: 20rpx 10rpx 10rpx 20rpx;
- }
- }
- }
- </style>
|