浏览代码

Поправлена реакция на клик в строке статуса в режиме clickControl

Book Pauk 10 月之前
父节点
当前提交
5a910f80b3
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      client/components/Reader/TextPage/TextPage.vue

+ 4 - 1
client/components/Reader/TextPage/TextPage.vue

@@ -14,7 +14,7 @@
                 <div @copy.prevent="copyText" v-html="page2"></div>
                 <div @copy.prevent="copyText" v-html="page2"></div>
             </div>
             </div>
         </div>
         </div>
-        <div v-show="showStatusBar" ref="statusBar" class="layout">
+        <div v-show="showStatusBar" ref="statusBar" class="layout" :class="{'no-events': clickControl}">
             <div v-html="statusBar"></div>
             <div v-html="statusBar"></div>
         </div>
         </div>
         <div
         <div
@@ -1353,6 +1353,9 @@ export default vueComponent(TextPage);
     background-color: rgba(0,0,0,0);
     background-color: rgba(0,0,0,0);
 }
 }
 
 
+.no-events {
+    pointer-events: none;
+}
 </style>
 </style>
 <style>
 <style>
 .note-para {
 .note-para {