diff --git a/client/components/Reader/LoaderPage/LoaderPage.vue b/client/components/Reader/LoaderPage/LoaderPage.vue
index 3f647e78..d0512d47 100644
--- a/client/components/Reader/LoaderPage/LoaderPage.vue
+++ b/client/components/Reader/LoaderPage/LoaderPage.vue
@@ -7,10 +7,16 @@
-
+
+
+
+ Загрузить файл
+
+ Справка
+ {{ version }}
@@ -31,9 +37,6 @@ class LoaderPage extends Vue {
this.config = this.$store.state.config;
}
- mounted() {
- }
-
activated() {
this.$refs.input.focus();
}
@@ -45,12 +48,22 @@ class LoaderPage extends Vue {
}
+ get version() {
+ return `v${this.config.version}`;
+ }
+
submitUrl() {
if (this.bookUrl)
//loadUrl()
;
}
+ loadFle() {
+ }
+
+ openHelp() {
+ }
+
keyHook(event) {
//недостатки сторонних ui
if (document.activeElement == this.$refs.input.$refs.input && event.type == 'keyup' && event.key == 'Enter')
@@ -83,6 +96,12 @@ class LoaderPage extends Vue {
font-weight: bold;
}
+.clickable {
+ color: blue;
+ text-decoration: underline;
+ cursor: pointer;
+}
+
.center {
justify-content: flex-start;
padding: 0 5px 0 5px;
@@ -92,7 +111,16 @@ class LoaderPage extends Vue {
justify-content: flex-end;
}
+.bottom-span {
+ font-size: 70%;
+ margin-bottom: 10px;
+}
+
.el-input {
max-width: 600px;
}
+
+.space {
+ height: 20px;
+}
\ No newline at end of file