| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| <template> |
| <div class="exception"> |
| <div class="img" v-if="type == '403'"> |
| <img |
| v-if="$config.error['403']" |
| :src="$config.error['403']" |
| :style="{ |
| width: $config.theme['@error-width'], |
| height: $config.theme['@error-height'] |
| }"/> |
| </div> |
| <div class="img" v-if="type == '404'"> |
| <img |
| v-if="$config.error['404']" |
| :src="$config.error['404']" |
| :style="{ |
| width: $config.theme['@error-width'], |
| height: $config.theme['@error-height'] |
| }"/> |
| </div> |
| <div class="img" v-if="type == '500'"> |
| <img |
| v-if="$config.error['500']" |
| :src="$config.error['500']" |
| :style="{ |
| width: $config.theme['@error-width'], |
| height: $config.theme['@error-height'] |
| }"/> |
| </div> |
| <div class="content"> |
| <h1>{{ config[type].title }}</h1> |
| <div class="desc">{{ config[type].desc }}</div> |
| <div class="action"> |
| <a-button type="primary" @click="handleToHome">{{ $t('label.go.back') }}</a-button> |
| </div> |
| </div> |
| </div> |
| </template> |
| |
| <script> |
| import types from './type' |
| |
| export default { |
| name: 'Exception', |
| props: { |
| type: { |
| type: String, |
| default: '404' |
| } |
| }, |
| data () { |
| return { |
| config: types |
| } |
| }, |
| methods: { |
| handleToHome () { |
| this.$router.push({ name: 'dashboard' }) |
| } |
| } |
| } |
| </script> |
| |
| <style lang="less" scoped> |
| .exception { |
| min-height: 500px; |
| height: 80%; |
| align-items: center; |
| text-align: center; |
| margin-top: 150px; |
| .img { |
| display: inline-block; |
| padding-right: 52px; |
| zoom: 1; |
| } |
| .content { |
| display: inline-block; |
| flex: auto; |
| h1 { |
| color: #434e59; |
| font-size: 72px; |
| font-weight: 600; |
| line-height: 72px; |
| margin-bottom: 24px; |
| } |
| .desc { |
| color: rgba(0, 0, 0, .45); |
| font-size: 20px; |
| line-height: 28px; |
| margin-bottom: 16px; |
| } |
| } |
| } |
| |
| .mobile { |
| .exception { |
| margin-top: 30px; |
| .img { |
| padding-right: unset; |
| |
| img { |
| max-width: 80%; |
| } |
| } |
| } |
| } |
| </style> |