liuqiang 1 год назад
Родитель
Сommit
f19c331dc9

+ 5 - 1
src/components/ListShow/ListShow.vue

@@ -11,7 +11,7 @@
             size="large"
             placeholder="搜索文件"
           />
-          <el-icon class="SearchIcon" @click="fileBlur">
+          <el-icon class="SearchIcon hand" @click="fileBlur">
             <Search />
           </el-icon>
         </div>
@@ -52,6 +52,7 @@
         :data="tableData"
         style="width: 100%; height: calc(93vh - 48px)"
         ref="container"
+        class="hand"
         @row-contextmenu="rightClick"
         @selection-change="SelectionChange"
       >
@@ -623,4 +624,7 @@ watch(
   color: #505870;
   font-size: 14px;
 }
+.hand {
+  cursor: pointer;
+}
 </style>

+ 9 - 6
src/layout/NewIndex.vue

@@ -105,14 +105,14 @@ const openMaxmin = (title, path) => {
       min: (id) => {
         setTimeout(() => {
           iframeSize(id);
-        }, 1000);
+        }, 200);
         getList();
         return;
       },
       full: (id) => {
         setTimeout(() => {
           iframeSize(id);
-        }, 1500);
+        }, 200);
         return;
       },
       restore: (id) => {
@@ -149,14 +149,14 @@ const openMaxmin = (title, path) => {
       min: (id) => {
         setTimeout(() => {
           iframeSize(id);
-        }, 1500);
+        }, 200);
         getList();
         return;
       },
       full: (id) => {
         setTimeout(() => {
           iframeSize(id);
-        }, 1000);
+        }, 200);
         return;
       },
       restore: (id) => {
@@ -201,8 +201,11 @@ const hasThis = (clickRowId) => {
 // 控制iframe大小
 const iframeSize = (id) => {
   // console.log('执行ifSize',id);
-  const div = document.querySelector(`#${id}`);
-  const tagIfarme = document.querySelector(`#${id} iframe`);
+  const tagIfarme = document.querySelector(`[id='${id}'] iframe`);
+  // console.log("div", div);
+  // const tagIfarme = div.querySelector("iframe");
+  // const tagIfarme = document.querySelector(`#${id} iframe`);
+  // const tagIfarme = document.querySelectorAll(`id=[${id}] iframe`);
   // console.log("tagIfarme", tagIfarme);
   // const outIframe = outDiv.contentDocument
   // console.log("outIframe", outIframe);

+ 6 - 2
src/layout/components/DefaultPage/DefaultPage.vue

@@ -61,7 +61,7 @@
               :key="item.id"
               
             >
-              <span class="fileName" @click="toFile(item.content.docInfo)">{{ item.content.docInfo.fileName }}</span>
+              <span class="fileName hand" @click="toFile(item.content.docInfo)">{{ item.content.docInfo.fileName }}</span>
               <div class="flieTime">
                 <span>创建时间:</span>
                 <span>{{ item.content.docInfo.createTime }}</span>
@@ -90,6 +90,7 @@
             style="width: 100%"
             ref="container"
             height="584"
+            class="hand"
             scrollbar-always-on
             v-el-table-infinite-scroll="allScroll"
             :infinite-scroll-distance="10"
@@ -168,7 +169,7 @@
               <img :src="setImg(item == null ? '' : item.fileType)" alt="" />
             </div>
             <div class="rightBox">
-              <div class="text">{{ item.fileName }}</div>
+              <div class="text hand">{{ item.fileName }}</div>
               <div class="time">{{ item.createTime }}</div>
             </div>
             <img
@@ -1039,4 +1040,7 @@ onMounted(() => {
     background-color: #236ec3;
   }
 }
+.hand {
+  cursor: pointer;
+}
 </style>

+ 2 - 2
src/layout/components/TopMenu/TopMenu.vue

@@ -74,11 +74,11 @@
         />
       </div>
       <div class="menu" v-if="showMenu">
-        <div class="oneBox" @click="openTab('个人中心', '/user/profile')">
+        <div class="oneBox hand" @click="openTab('个人中心', '/user/profile')">
           <img src="@/assets/images/newIndex/userInfo.png" alt="" />
           <span>个人中心</span>
         </div>
-        <div class="oneBox" @click="logout">
+        <div class="oneBox hand" @click="logout">
           <img src="@/assets/images/newIndex/edit.png" alt="" />
           <span>退出登录</span>
         </div>

+ 1 - 0
src/views/department/MyFile.vue

@@ -2932,6 +2932,7 @@ p {
         position: absolute;
         right: calc(5% + 34px);
         top: 35%;
+        cursor: pointer;
 
     }
     .left_changeShow{

+ 5 - 2
src/views/liveChat/index.vue

@@ -593,7 +593,7 @@ onMounted(() => {
         <el-input
           v-model="searchText"
           maxlength="32"
-          class="w-50 m-2"
+          class="w-50 m-2 hand"
           size="small"
           clearable
           placeholder="搜索聊天"
@@ -921,7 +921,7 @@ onMounted(() => {
               @keydown.enter="msgSendClick2($event)"
             />
             <!-- 发送按钮 -->
-            <img :src="send" class="send-info" @click="msgSendClick2($event,true)" />
+            <img :src="send" class="send-info hand" @click="msgSendClick2($event,true)" />
           </el-footer>
         </el-container>
       </div>
@@ -966,4 +966,7 @@ onMounted(() => {
 :deep(.el-textarea__inner) {
   resize: none;
 }
+.hand {
+  cursor: pointer;
+}
 </style>

+ 2 - 1
src/views/myfile/MyFile.vue

@@ -16,7 +16,7 @@
                 <!-- 方块点击盒子 -->
                 <div style="height: 83vh;overflow-y: auto;">
                     <div class="searchBox">
-                        <div v-if="leftShowList === 2" style="width:100%">
+                        <div v-if="false" style="width:100%">
                             <el-input v-model="searchFire" @keyup.enter="fileBlur" @input="fileBlur" class="searchFire" size="large"
                                 placeholder="搜索文件夹" />
                             <el-icon class="SearchIcon" @click="fileBlur">
@@ -3243,6 +3243,7 @@ p {
         position: absolute;
         right: calc(5% + 34px);
         top: 35%;
+        cursor: pointer;
 
     }
     .left_changeShow{

+ 4 - 2
src/views/myjoin/MyJoin.vue

@@ -21,7 +21,7 @@
                                     </span>
                                 </template>
                             </el-table-column>
-                            <el-table-column prop="createTime" label="时间" sortable width="280" />
+                            <el-table-column prop="actorTime" label="发起时间" sortable width="280" />
                             <el-table-column prop="fileType" label="类型" />
                             <el-table-column label="大小">
                                 <template #default="scope">
@@ -63,7 +63,7 @@
                                 </span>
                             </template>
                         </el-table-column>
-                        <el-table-column prop="createTime" label="时间" sortable width="280" />
+                        <el-table-column prop="actorTime" label="发起时间" sortable width="280" />
                         <el-table-column prop="fileType" label="类型" />
                         <el-table-column label="大小">
                             <template #default="scope">
@@ -174,6 +174,7 @@ export default {
             packPageNum.value = 1
             const query = `pageSize=20&pageNum=${packPageNum.value}`
             fileCount.myCount(query).then(res => {
+                console.log('myCount',res);
                 myPack.value = res.rows
                 if(res.rows.length <res.total){
                     packTotal.value = false
@@ -185,6 +186,7 @@ export default {
             ejoyPageNum.value = 1
             const query = `pageSize=20&pageNum=${ejoyPageNum.value}`
             fileCount.myJoin(query).then(res => {
+                console.log('myJoin',res);
                 myEjoy.value = res.rows
                 if(res.rows.length <res.total){
                     ejoyTotal.value = false

+ 1 - 0
src/views/publicment/MyFile.vue

@@ -2912,6 +2912,7 @@ p {
         position: absolute;
         right: calc(5% + 34px);
         top: 35%;
+        cursor: pointer;
 
     }
     .left_changeShow{