discern-popup.vue 507 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div>
  3. <van-popup v-model="show" round position="bottom">
  4. <div class="title">支付记录</div>
  5. </van-popup>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. props: {
  11. discernReceipt: {
  12. type: Array,
  13. default: () => []
  14. }
  15. },
  16. data () {
  17. return {
  18. show: false
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .van-popup {
  25. min-height: 30vw;
  26. .title {
  27. text-align: center;
  28. font-size: 4vw;
  29. font-weight: 600;
  30. margin: 4vw 0;
  31. }
  32. }
  33. </style>