Jing Ma 7 лет назад
Родитель
Сommit
184834b3b2
1 измененных файлов с 7 добавлено и 1 удалено
  1. 7 1
      src/pages/404.js

+ 7 - 1
src/pages/404.js

@@ -1,7 +1,13 @@
 import React from 'react';
 import Link from 'umi/link';
+import { formatMessage } from "umi/locale";
 import Exception from '@/components/Exception';
 
 export default () => (
-  <Exception type="404" style={{ minHeight: 500, height: '100%' }} linkElement={Link} />
+  <Exception
+    type="404"
+    linkElement={Link}
+    desc={formatMessage({id: 'app.exception.description.404'})}
+    backText={formatMessage({id: 'app.exception.back'})}
+  />
 );