You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.1 KiB
72 lines
1.1 KiB
<template> |
|
<view class="body"> |
|
<image class="qie" src="../../static/images/qie.svg"></image> |
|
<text class="iconfont iconalipaylogo i-iconalipaylogo"></text> |
|
<text class="iconfont iconwechatlogo i-iconwechatlogo"></text> |
|
<text class="alert">请使用微信或者支付宝扫码</text> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
|
|
// document.title = '访问错误' |
|
|
|
export default { |
|
data() { |
|
return { |
|
|
|
} |
|
}, |
|
methods: { |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style> |
|
|
|
.body{ |
|
position: relative; |
|
} |
|
|
|
.qie{ |
|
position: absolute; |
|
width: 283.33upx; |
|
height: 200upx; |
|
left: 193.75upx; |
|
top: 277.08upx; |
|
} |
|
|
|
.i-iconalipaylogo { |
|
font-size: 72.91upx; |
|
position: absolute; |
|
left: 416.66upx; |
|
top: 120.83upx; |
|
color: #079ADF; |
|
} |
|
|
|
.i-iconwechatlogo { |
|
font-size: 58.33upx; |
|
position: absolute; |
|
left: 550upx; |
|
top: 277.08upx; |
|
color: #30AD37; |
|
} |
|
|
|
.alert { |
|
width:485.41upx; |
|
height:54.16upx; |
|
font-size:37.5upx; |
|
font-family:PingFangSC-Regular; |
|
font-weight:400; |
|
color:rgba(102,102,102,1); |
|
line-height:54.16upx; |
|
position: absolute; |
|
margin: 0 auto; |
|
left: 0; |
|
right: 0; |
|
text-align: center; |
|
top: 591.66upx; |
|
} |
|
|
|
</style>
|
|
|