mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 13:26:44 +08:00
52 lines
902 B
Vue
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> |