29 lines
538 B
Vue
29 lines
538 B
Vue
|
|
<template>
|
||
|
|
<div class="page">
|
||
|
|
<img src="./image/icon@2x.png" class="icon">
|
||
|
|
<p class="title">系统暂未对移动设备提供支持</p>
|
||
|
|
<p class="sub-title">请使用PC访问</p>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import '~@/assets/style/public.scss';
|
||
|
|
.page {
|
||
|
|
@extend %full;
|
||
|
|
@extend %flex-center-col;
|
||
|
|
background-color: #EDF4FA;
|
||
|
|
.icon {
|
||
|
|
width: 42px;
|
||
|
|
}
|
||
|
|
.title {
|
||
|
|
font-size: 14px;
|
||
|
|
color: #35495E;
|
||
|
|
}
|
||
|
|
.sub-title {
|
||
|
|
font-size: 12px;
|
||
|
|
color: #35495E;
|
||
|
|
margin: 0px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|