大佛寺机器扫码h5页面
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.
 
 
 

30 lines
500 B

<template>
<view class="u-flex-col u-col-center">
<view class="title u-m-t-50">404</view>
<view class="content u-m-30">请在微信或支付宝中打开此链接</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
onLoad() {
console.log(uni.$u.config.v);
// 判断当前处于什么浏览器
},
methods: {}
};
</script>
<style lang="scss">
.title {
color: #ff0000;
font-size: 200rpx;
}
.content {
color: #ff0000;
font-size: 80rpx;
}
</style>