success.vue 487 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class='app-container'>
  3. <uni-icons type="checkbox-filled" color="#FFF" size="68" />
  4. <span>支付成功</span>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. onLoad() {
  14. payStatus.postMessage('{"status": 1}')
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .app-container {
  20. height: 100%;
  21. box-sizing: border-box;
  22. display: flex;
  23. flex-direction: column;
  24. justify-content: center;
  25. align-items: center;
  26. }
  27. </style>