paySuccess.vue 394 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. components: {
  8. },
  9. data() {
  10. return {
  11. };
  12. },
  13. onLoad(options) {
  14. uni.showModal({
  15. title: '返回内容',
  16. content: options.data,
  17. showCancel: false,
  18. });
  19. },
  20. methods: {
  21. }
  22. };
  23. </script>
  24. <style lang="scss">
  25. page,
  26. .content {
  27. background: $page-color-base;
  28. height: 100%;
  29. }
  30. </style>