paySuccessAll.vue 561 B

123456789101112131415161718192021222324252627
  1. <!-- 蛋破壳弹窗 -->
  2. <template>
  3. <uni-popup ref="paySuccessPopup" :animation="false" :is-mask-click="false"
  4. mask-background-color="rgba(51, 137, 217, 0.65);">
  5. <view class="ezy-pay-success-all-dialog"> </view>
  6. </uni-popup>
  7. </template>
  8. <script setup>
  9. import { ref } from 'vue';
  10. const paySuccessPopup = ref(null); // 索引
  11. // 打开弹窗
  12. function handleShow() {
  13. paySuccessPopup.value.open();
  14. }
  15. // 取消
  16. function handleClose() {
  17. paySuccessPopup.value.close();
  18. }
  19. defineExpose({
  20. handleShow,
  21. handleClose
  22. })
  23. </script>
  24. <style>
  25. </style>