diff --git a/client/components/App.vue b/client/components/App.vue
index 04015123..a71f2f55 100644
--- a/client/components/App.vue
+++ b/client/components/App.vue
@@ -39,16 +39,6 @@ class App {
_options = componentOptions;
showPage = false;
- itemRuText = {
- '/cardindex': 'Картотека',
- '/reader': 'Читалка',
- '/forum': 'Форум-чат',
- '/income': 'Поступления',
- '/sources': 'Источники',
- '/settings': 'Параметры',
- '/help': 'Справка',
- };
-
created() {
this.commit = this.$store.commit;
this.state = this.$store.state;
@@ -202,7 +192,7 @@ class App {
} else if (this.mode == 'omnireader') {
document.title = `Omni Reader - всегда с вами`;
} else if (this.config && this.mode !== null) {
- document.title = `${this.config.name} - ${this.itemRuText[this.rootRoute]}`;
+ document.title = `Универсальная читалка книг и ресурсов интернета`;
}
} else {
document.title = title;
diff --git a/client/components/CardIndex/Book/Book.vue b/client/components/CardIndex/Book/Book.vue
deleted file mode 100644
index beef252c..00000000
--- a/client/components/CardIndex/Book/Book.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел Book в разработке
-
-
-
-
diff --git a/client/components/CardIndex/Card/Card.vue b/client/components/CardIndex/Card/Card.vue
deleted file mode 100644
index 6da789f0..00000000
--- a/client/components/CardIndex/Card/Card.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел Card в разработке
-
-
-
-
diff --git a/client/components/CardIndex/CardIndex.vue b/client/components/CardIndex/CardIndex.vue
deleted file mode 100644
index 4c525b0c..00000000
--- a/client/components/CardIndex/CardIndex.vue
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client/components/CardIndex/History/History.vue b/client/components/CardIndex/History/History.vue
deleted file mode 100644
index 9950a8c3..00000000
--- a/client/components/CardIndex/History/History.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел History в разработке
-
-
-
-
diff --git a/client/components/CardIndex/Search/Search.vue b/client/components/CardIndex/Search/Search.vue
deleted file mode 100644
index 1e5072c9..00000000
--- a/client/components/CardIndex/Search/Search.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел Search в разработке
-
-
-
-
diff --git a/client/components/Help/Help.vue b/client/components/Help/Help.vue
deleted file mode 100644
index de1da849..00000000
--- a/client/components/Help/Help.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел Help в разработке
-
-
-
-
diff --git a/client/components/Income/Income.vue b/client/components/Income/Income.vue
deleted file mode 100644
index 737aeb59..00000000
--- a/client/components/Income/Income.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел Income в разработке
-
-
-
-
diff --git a/client/components/NotFound404/NotFound404.vue b/client/components/NotFound404/NotFound404.vue
deleted file mode 100644
index 336348d1..00000000
--- a/client/components/NotFound404/NotFound404.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Страница не найдена
-
-
-
-
diff --git a/client/components/Settings/Settings.vue b/client/components/Settings/Settings.vue
deleted file mode 100644
index ca842378..00000000
--- a/client/components/Settings/Settings.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел Settings в разработке
-
-
-
-
diff --git a/client/components/Sources/Sources.vue b/client/components/Sources/Sources.vue
deleted file mode 100644
index f9758e56..00000000
--- a/client/components/Sources/Sources.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- Раздел Sources в разработке
-
-
-
-
diff --git a/client/router.js b/client/router.js
index 0f89c1d2..30fc949b 100644
--- a/client/router.js
+++ b/client/router.js
@@ -1,41 +1,16 @@
import { createRouter, createWebHashHistory } from 'vue-router';
import _ from 'lodash';
-const CardIndex = () => import('./components/CardIndex/CardIndex.vue');
-const Search = () => import('./components/CardIndex/Search/Search.vue');
-const Card = () => import('./components/CardIndex/Card/Card.vue');
-const Book = () => import('./components/CardIndex/Book/Book.vue');
-const History = () => import('./components/CardIndex/History/History.vue');
-
//немедленная загрузка
//import Reader from './components/Reader/Reader.vue';
const Reader = () => import('./components/Reader/Reader.vue');
const ExternalLibs = () => import('./components/ExternalLibs/ExternalLibs.vue');
-const Income = () => import('./components/Income/Income.vue');
-const Sources = () => import('./components/Sources/Sources.vue');
-const Settings = () => import('./components/Settings/Settings.vue');
-const Help = () => import('./components/Help/Help.vue');
-const NotFound404 = () => import('./components/NotFound404/NotFound404.vue');
-
const myRoutes = [
- ['/', null, null, '/cardindex'],
- ['/cardindex', CardIndex],
- ['/cardindex~search', Search],
- ['/cardindex~card', Card],
- ['/cardindex~card/:authorId', Card],
- ['/cardindex~book', Book],
- ['/cardindex~book/:bookId', Book],
- ['/cardindex~history', History],
-
+ ['/', null, null, '/reader'],
['/reader', Reader],
['/external-libs', ExternalLibs],
- ['/income', Income],
- ['/sources', Sources],
- ['/settings', Settings],
- ['/help', Help],
- ['/404', NotFound404],
- ['/:pathMatch(.*)*', null, null, '/cardindex'],
+ ['/:pathMatch(.*)*', null, null, '/reader'],
];
let routes = {};