27 lines
530 B
Vue
27 lines
530 B
Vue
![]() |
<template>
|
||
|
<view class="error-page tn-flex tn-flex-center-center">
|
||
|
<view class="warn">
|
||
|
<view class="icon">
|
||
|
<TnIcon name="tip-fill" color="#ff9900" size="200"/>
|
||
|
</view>
|
||
|
<view class="text tn-mt-xl">
|
||
|
<view class="tn-text-bold tn-text-center tn-text-2xl">请在微信客户端打开</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.error-page{
|
||
|
height: 70vh;
|
||
|
.warn{
|
||
|
.icon{
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|