1234567891011121314151617181920212223242526 |
- <template>
- <view class="copyright">
- <image :src="statics.copyright"></image>
- </view>
- </template>
- <script>
- export default{
- data(){
- return {
-
- }
- }
- }
- </script>
- <style>
- .copyright{
- padding: 48rpx;
- text-align: center;
- }
- .copyright image{
- width: 208rpx;
- height: 76rpx;
- }
- </style>
|