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.
57 lines
1.1 KiB
57 lines
1.1 KiB
<template>
|
|
<view class="flex justify-center align-center" style="height: 100vh;background-color: #fff;">
|
|
<view>
|
|
<image src="../../static/image/123.gif" mode="widthFix"></image>
|
|
<view style="text-align: center;">
|
|
<view class="text1">抱歉!</view>
|
|
<view style="margin-bottom: 40rpx;">{{globalConfig.sysInfo.closeTips}}</view>
|
|
<view style="display: flex;justify-content: center;">
|
|
<a class="bullshit-return-home" href="/">返回首页</a>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import pinia from '@/store/index'
|
|
import { useloginStore } from '@/store/login';
|
|
const userStore = useloginStore(pinia);
|
|
export default {
|
|
data() {
|
|
return {
|
|
globalConfig:userStore.globalConfig,
|
|
}
|
|
},
|
|
created() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.text1{
|
|
margin-bottom: 40rpx;
|
|
font-size: 64rpx;
|
|
font-weight: bold;
|
|
line-height: 80rpx;
|
|
color: #175CFF;
|
|
}
|
|
.bullshit-return-home{
|
|
display:block;
|
|
float:left;
|
|
width:110px;
|
|
height:36px;
|
|
font-size:14px;
|
|
line-height:36px;
|
|
color:#fff;
|
|
text-align:center;
|
|
cursor:pointer;
|
|
background:#175cff;
|
|
border-radius:100px;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
|