123456789101112131415161718192021222324252627 |
- <template>
- <view class='wrap'>
- <view class='content'>确认行程已结束?</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style scoped>
- .wrap{
- padding:50rpx;
- }
- .content{
- font-size:50rpx;
- }
- </style>
|