chargeCode.vue 941 Bytes
Newer Older
xd's avatar
xd committed
1
<template>
xd's avatar
xd committed
2 3 4 5 6 7
    <div class="bg">
        <div class="bd">
            <div class="title">收款码</div>
            <div class="img"><img src="../../../public/img/code.jpg" alt=""></div>
        </div>
        <!-- <div>收款码</div> -->
xd's avatar
xd committed
8 9 10 11 12 13 14 15 16
    </div>
</template>

<script>
export default {

}
</script>

xd's avatar
xd committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
<style scoped>
    .bg {
        background-color: #a7cfff;
        display: flex;
        justify-content: center;
        height: 100%;
    }
    .bd {
        margin-top: 25px;
        width: 90%;
        height: 50%;
        background-color: #fff;
        box-shadow: 0px 2px 4px 0px rgba(221, 221, 221, 1);
    }
    .title {
        background-color: #f1f1f1;
        height: 18%;
        justify-content: center;
        display: flex;
        align-items: center;
        font-size: 22px;
    }
    .img {
        justify-content: center;
        display: flex;
        align-items: center;
        height: 82%;
    }
</style>
xd's avatar
xd committed
46