1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div>
- <van-popup v-model="show" round position="bottom">
- <div class="title">支付记录</div>
- </van-popup>
- </div>
- </template>
- <script>
- export default {
- props: {
- discernReceipt: {
- type: Array,
- default: () => []
- }
- },
- data () {
- return {
- show: false
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .van-popup {
- min-height: 30vw;
- .title {
- text-align: center;
- font-size: 4vw;
- font-weight: 600;
- margin: 4vw 0;
- }
- }
- </style>
|