Files
ebiz-h5/src/views/ebiz/cardList/PayLoser.vue
2019-12-09 15:03:17 +08:00

52 lines
902 B
Vue

<template>
<div class="PayLoser">
<div>
<img src="../../../assets/images/u10608.svg" alt="">
<p>支付失败</p>
</div>
<van-button type="info" size="large" class="payBtn">返回首页</van-button>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
*{
margin: 0;
padding: 0;
}
html,body{
margin: 0;
padding: 0;
width:100%;
height:100%;
}
.PayLoser{
display: flex;
flex-direction:column;
height: 650px;
justify-content: space-between;
align-items: center;
img{
width:100px;
height: 100px;
}
}
.PayLoser>div:nth-of-type(1){
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
box-sizing: border-box;
margin-top: 100px;
p{
margin-top: 30px;
}
}
</style>