popup.vue 289 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class='wrap'>
  3. <view class='content'>确认行程已结束?</view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style scoped>
  17. .wrap{
  18. padding:50rpx;
  19. }
  20. .content{
  21. font-size:50rpx;
  22. }
  23. </style>