From 2b846abaa082b83a028aa691e710d6e560db2ad2 Mon Sep 17 00:00:00 2001 From: wyx Date: Sun, 26 Feb 2023 16:22:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E8=AE=A8=E8=AE=BA=E5=8F=91=E5=B8=96?= =?UTF-8?q?=E8=A7=86=E9=A2=91=E4=B8=8A=E4=BC=A0=E9=9A=90=E8=97=8F=E3=80=81?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/discuss/DiscussPage.vue | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/views/discuss/DiscussPage.vue b/src/views/discuss/DiscussPage.vue index 859a8d2..af29e71 100644 --- a/src/views/discuss/DiscussPage.vue +++ b/src/views/discuss/DiscussPage.vue @@ -305,6 +305,11 @@ function collection(d) { // 发表帖子弹框显示 function showPostModal() { dialogVisible.value = true; + // 隐藏视频上传 + setTimeout(() => { + let nodeChilds = document.getElementsByClassName('w-e-bar-item'); + nodeChilds[31].style.display = 'none'; + }, 200); } // 取消发布 function cancelPost() { @@ -364,7 +369,37 @@ const postAdd = () => { display: table; clear: both; } +.preNext { + position: absolute; + right: 0px; + .content { + font-size: 14px; + color: #fff; + width: 43px; + height: 14px; + display: inline-block; + position: relative; + top: -6px; + cursor: pointer; + } + + .btn { + width: 23px; + height: 23px; + border-radius: 50%; + border: 0; + cursor: pointer; + } + + .btn01 { + background-image: url("../../assets/image/prev.png"); + } + + .btn02 { + background-image: url("../../assets/image/next.png"); + } + } .active { color: #2478ff; }