iot-gateway_fontend/src/views/exception/500/index.vue

42 lines
875 B
Vue
Raw Normal View History

2024-11-12 15:44:05 +08:00
<template>
<div class="container">
<Breadcrumb :items="['500', '500']" />
2024-11-12 15:44:05 +08:00
<div class="content">
<a-result
class="result"
status="500"
:subtitle="$t('exception.result.500.description')"
/>
<a-button key="back" type="primary">
{{ $t('exception.result.500.back') }}
</a-button>
</div>
</div>
</template>
<script lang="ts" setup></script>
<script lang="ts">
export default {
name: '500',
};
</script>
<style scoped lang="less">
.container {
padding: 0 20px 20px 20px;
height: calc(100% - 40px);
:deep(.content) {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
text-align: center;
background-color: var(--color-bg-1);
border-radius: 4px;
}
}
</style>