123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415 |
- <template>
- <div class="bigBox">
- <!-- 功能 -->
- <div class="tabBox">
- <el-tabs v-model="activeName" v-el-table-infinite-scroll="setPackScroll" :infinite-scroll-distance="30" :infinite-scroll-disabled="packTotal" class="demo-tabs" @tab-click="handleClick" tab-position="top">
- <el-tab-pane label="我发起的" name="first" style="min-height:300px">
- <div>
- <!-- <el-button @click="newFileAdd">新建文件</el-button> -->
- </div>
- <div>
- <el-table @row-contextmenu="handleRowClick" height="calc(100vh - 40px - 15px)" :data="myPack" style="width: 100%;cursor: pointer;" @row-click="rowJoinClickFN">
- <!-- <el-table-column type="selection" width="55" /> -->
- <el-table-column label="名称" width="280">
- <template #default="scope">
- <span style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="juzhong">
- <img :src="getImage(scope.row.fileType)" alt="" class="juli">
- <el-tooltip class="box-item" effect="dark" placement="top"
- :show-after="1000" :content="scope.row.fileName">
- <span>{{ scope.row.fileName }}</span>
- </el-tooltip>
- </span>
- </template>
- </el-table-column>
- <el-table-column prop="createTime" label="时间" sortable width="280" />
- <el-table-column prop="fileType" label="类型" />
- <el-table-column label="大小">
- <template #default="scope">
- <span>
- {{ formatFileSize(scope.row.fileSize) }}
- </span>
- </template>
- </el-table-column>
- <el-table-column label="是否归档">
- <template #default="scope">
- <span>
- {{ scope.row.isFiled === "Y"?'已归档':'未归档' }}
- </span>
- </template>
- </el-table-column>
- </el-table>
- <div class="setCli" v-if="cliCC" :style="{ left: xz - 100+ 'px', top: yz -150 + 'px' }">
- <template v-for="(item, index) in rightMenuData" :key="index">
- <p @click="chooseSet(item, index, 1)" class="chooseSet">
- <img :src="item.img" alt="">
- {{ item.name }}
- </p>
- </template>
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane label="我参与的" name="second">
- <el-table :data="myEjoy" style="width: 100%;cursor: pointer;" @row-click="rowJoinClickFN">
- <!-- <el-table-column type="selection" width="55" /> -->
- <el-table-column label="名称" width="280">
- <template #default="scope">
- <span style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="juzhong">
- <img :src="getImage(scope.row.fileType)" alt="" class="juli">
-
- <el-tooltip class="box-item" effect="dark" placement="top"
- :show-after="1000" :content="scope.row.fileName">
- <span>{{ scope.row.fileName }}</span>
- </el-tooltip>
- </span>
- </template>
- </el-table-column>
- <el-table-column prop="createTime" label="时间" sortable width="280" />
- <el-table-column prop="fileType" label="类型" />
- <el-table-column label="大小">
- <template #default="scope">
- <span>
- {{ formatFileSize(scope.row.fileSize) }}
- </span>
- </template>
- </el-table-column>
- <el-table-column label="是否归档">
- <template #default="scope">
- <span>
- {{ scope.row.isFiled === "Y"?'已归档':'未归档' }}
- </span>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- </el-tabs>
- </div>
- <!-- 新增文件盒子 -->
- <div>
- <AddFile v-if="newAdd" :newAdd="newAdd" @threeBe="threeBe"></AddFile>
- </div>
- </div>
- </template>
- <script>
- import { ref, onMounted ,inject} from 'vue'
- import fileCount from '../../api/fileCount/fileCount';
- import ImgFile from '../myfile/jsComponents/ImgFile';
- import { toRaw } from "@vue/reactivity";
- import AddFile from './components/AddFile.vue'
- import FileEdit from "@/views/myfile/components/FileEdit.vue";
- import { ElMessage } from 'element-plus';
- import archiveTray from "@/assets/images/archiveTray.png";
- import {documentation}from "@/api/biz/actor.js"
- import {getInfo}from "@/api/biz/info.js"
- import elTableInfiniteScroll from 'el-table-infinite-scroll'
- import { setIcon } from "@/utils/index.js";
- export default {
- directives: {
- 'el-table-infinite-scroll': elTableInfiniteScroll
- },
- setup() {
- const activeName = ref('first')
- let collectImg = ref(true)
- let myEjoy = ref([])
- let myPack = ref([])
- let newAdd = ref(false)
- const historycopyRow = ref(false);
- const historyPrew = ref();
- const clickRowId = ref();
- const copyRow = ref();
- const onlyView = ref(false);
- const showEdit = ref(false)
- const thisLClickRow = ref()//当前左键的文件
- const addFileTab = inject("addFileTab");
- const ejoyPageNum = ref(1)
- const packPageNum = ref(1)
- const ejoyTotal = ref(true)
- const packTotal = ref(true)
- const clickRow = ref()
- let xz = ref(0)
- let yz = ref(0)
- const cliCC = ref(false)
- const rightMenuData = ref([
- {
- name:'归档',
- img:archiveTray
- }
- ])
- const rowClickFN = (row,col,e)=>{
- // console.log('row',row);
- thisLClickRow.value = row
- clickRowId.value = row.docId
- copyRow.value = toRaw(row)
- const itemData = {
- name: copyRow.value.fileName,
- path: `${window.location.origin}/fileEdit?clickRowId=${copyRow.value.docId}&canEdit=1&canCopy=1&history=0&fileId=0`
- }
- // sessionStorage.setItem('newTab',JSON.stringify(itemData))
- window.parent.$setOpenTab(itemData)
- // addFileTab(copyRow.value,1);
- // showEdit.value = true
- }
- const rowJoinClickFN = (row,col,e)=>{
- getInfo(row.docId).then((res)=>{
- // console.log('res',res);
- row = res.data
- if(row.isFiled === "Y"){
- return ElMessage({ message: '该文件已归档 不可再次编辑', type: 'error' })
- }
- thisLClickRow.value = row
- clickRowId.value = row.docId
- copyRow.value = toRaw(row)
- const itemData = {
- name: copyRow.value.fileName,
- path: `${window.location.origin}/fileEdit?clickRowId=${copyRow.value.docId}&canEdit=1&canCopy=1&history=0&fileId=0`
- }
- // sessionStorage.setItem('newTab',JSON.stringify(itemData))
- window.parent.$setOpenTab(itemData)
- // addFileTab(copyRow.value,1);
- })
-
- }
- function getCountPeople() {
- packTotal.value = true
- packPageNum.value = 1
- const query = `pageSize=20&pageNum=${packPageNum.value}`
- fileCount.myCount(query).then(res => {
- myPack.value = res.rows
- if(res.rows.length <res.total){
- packTotal.value = false
- }
- })
- }
- function getMyJoin() {
- ejoyTotal.value = true
- ejoyPageNum.value = 1
- const query = `pageSize=20&pageNum=${ejoyPageNum.value}`
- fileCount.myJoin(query).then(res => {
- myEjoy.value = res.rows
- if(res.rows.length <res.total){
- ejoyTotal.value = false
- }
- })
- }
- const setJoinScroll = ()=>{
- // console.log('btm');
- ejoyPageNum.value = ejoyPageNum.value + 1
- const query = `pageSize=20&pageNum=${ejoyPageNum.value}`
- // -------------先禁止掉事件 定时器1秒钟后才能再次触发
- ejoyTotal.value = true
- fileCount.myJoin(query).then(res => {
- const newarr = toRaw(myEjoy.value).concat(res.rows)
- myEjoy.value = JSON.parse(JSON.stringify(newarr))
- if(newarr.length <res.total){
- //获取后的数量<total就可以再次获取
- setTimeout(()=>{
- ejoyTotal.value = false
- },1000)
- }
- })
- }
- const setPackScroll = ()=>{
- // console.log('btm');
- packPageNum.value = packPageNum.value + 1
- const query = `pageSize=20&pageNum=${packPageNum.value}`
- // -------------先禁止掉事件 定时器1秒钟后才能再次触发
- packTotal.value = true
- fileCount.myCount(query).then(res => {
- const newarr = toRaw(myPack.value).concat(res.rows)
- myPack.value = JSON.parse(JSON.stringify(newarr))
- if(newarr.length <res.total){
- //获取后的数量<total就可以再次获取
- setTimeout(()=>{
- packTotal.value = false
- },1000)
- }
- })
-
- }
- function handleClick(data, e) {
- // console.log(data, e, 'tab');
- }
- function getImage(file) {
- return setIcon(file);
- }
- function formatFileSize(fileSize) {
- if (fileSize >= 1024 * 1024 * 1024) {
- // 大于等于1GB,显示GB
- return (fileSize / (1024 * 1024 * 1024)).toFixed(2) + 'GB';
- } else if (fileSize >= 1024 * 1024) {
- // 大于等于1MB,显示MB
- return (fileSize / (1024 * 1024)).toFixed(2) + 'MB';
- } else if (fileSize >= 1024) {
- // 大于等于1KB,显示KB
- return (fileSize / 1024).toFixed(2) + 'KB';
- } else {
- // 小于1KB,显示字节
- return fileSize + 'B';
- }
- }
- function newFileAdd(){
- newAdd.value = true
- }
- function threeBe(data){
- newAdd.value = data
- }
- // 我发起的右键事件
- // 文件名表格每一行点击事件
- function handleRowClick(row, col, e) {
- clickRow.value = row
- e.preventDefault();
- e.stopPropagation();
- xz.value = e.pageX
- yz.value = e.pageY
- if (cliCC.value === true) {
- cliCC.value = false
- } else {
- cliCC.value = true
- }
- }
- // 关闭文件夹右键菜单
- const closeRMenu = () => {
- // console.log("close");
- cliCC.value = false;
- };
- const chooseSet =async (row, index, num)=>{
- if (row.name == '归档') {
- if(clickRow.value.isFiled == 'Y'){
- return ElMessage({
- type: "error",
- message: "文件已归档,请勿重复操作"
- })
- }
- const res = await documentation(clickRow.value.docId)
- if(res.code == 200){
- ElMessage({
- type: "success",
- message: "成功归档"
- })
- getCountPeople()
- }
- cliCC.value = false
- }
- }
- onMounted(() => {
- getCountPeople()
- getMyJoin()
- window.addEventListener("click", closeRMenu, true);
- })
- return {
- activeName,
- handleClick,
- myEjoy,
- myPack,
- getCountPeople,
- getMyJoin,
- collectImg,
- getImage,
- formatFileSize,
- newAdd,
- newFileAdd,
- threeBe,
- historycopyRow,
- historyPrew,
- onlyView,
- rowClickFN,
- thisLClickRow,
- copyRow,
- clickRowId,
- showEdit,
- addFileTab,
- handleRowClick,
- clickRow,
- xz,
- yz,
- rightMenuData,
- archiveTray,
- closeRMenu,
- cliCC,
- chooseSet,
- rowJoinClickFN,
- ejoyPageNum,
- packPageNum,
- ejoyTotal,
- packTotal,
- setJoinScroll,
- setPackScroll
- }
- },
- components:{
- AddFile,
- FileEdit
- }
- }
- </script>
- <style scoped lang="scss">
- @import "@/assets/styles/my-common.scss";
- .bigBox {
- width: 100%;
- height: 100vh;
- margin: 0 auto;
- background-color: white;
- }
- .tabBox {
- width: 100%;
- height: 40px;
- margin: 0 auto;
- background-color: #F5F7F9;
- position: relative;
- }
- .juli{
- width: 22px;
- height: 22px;
- }
- .preview {
- width: 100%;
- height: 100%;
- background-color: #fff;
- overflow: hidden;
- }
- .setCli {
- width: 156px;
- max-height: auto;
- position: absolute;
- // top: -70px;
- // left: 300px;
- flex-wrap: 400;
- background-color: white;
- border: 1px solid gray;
- border-radius: 4px;
- z-index: 300000000;
- overflow-y: auto;
- // font-size: 16px;
- }
- .chooseSet {
- width: 140px;
- height: 30px;
- line-height: 30px;
- margin: 5px auto;
- font-size: 13px;
- cursor: pointer;
- // display: flex;
- // align-items: center;
- // position: relative;
- img {
- margin-right: 4px;
- vertical-align: middle;
- }
- }
- .chooseSet:hover {
- width: 140px;
- height: 30px;
- line-height: 30px;
- margin: 5px auto;
- font-size: 13px;
- background-color: #F5F7F9;
- /* color: white; */
- }
- :deep(.el-tabs__nav) {
- margin: 0 calc(100% - 55%);
- }
- </style>
|