index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. <template>
  2. <div class="file-details">
  3. <customHeader >文件共享中心</customHeader>
  4. <div class="content">
  5. <div class="left-box">
  6. <!-- 左侧树菜单 -->
  7. <fileSystem :selected="selected" :list="listArr" :draggable="true" @delete-node="onDeltet" @on-click="onClick"
  8. @change-name="onChangeName" @addNode="onAddNode">
  9. <template #icon="{ item }">
  10. <template v-if="item.isFolder">
  11. <!-- <icon v-if="item.expanded" class="iconfont" iconName="icon-24gf-folderOpen" /> -->
  12. <SvgIcon v-if="item.expanded" size="18" name="file-open" />
  13. <!-- <icon v-else class="iconfont" iconName="icon-bg-folder" /> -->
  14. <SvgIcon v-else size="18" name="file-close" />
  15. </template>
  16. <treeIcon class="iconfont" :title="item.title" v-else />
  17. </template>
  18. <template #operation="{ type }">
  19. <!-- <i class="iconfont icon-add_file" v-if="type == 'addFolder'"></i> -->
  20. <i class="iconfont icon-xinzeng" v-if="type == 'addDocument'"></i>
  21. <i class="iconfont icon-bianji" v-if="type == 'Editable'"></i>
  22. <a-popconfirm v-if="type == 'deleteNode'" title="是否确认删除!" ok-text="确定" cancel-text="取消" @confirm="confirmDel" >
  23. <i class="iconfont icon-guanbi"></i>
  24. </a-popconfirm>
  25. </template>
  26. </fileSystem>
  27. </div>
  28. <div class="right-box">
  29. <div class="search">
  30. <a-input v-model:value="fileName" placeholder="请输入文件名称" />
  31. <a-button type="primary" preIcon="ant-design:search-outlined" @click="onSearch">查询</a-button>
  32. <a-button type="primary" style="float: right; margin-right: 20px" @click="openModal(true)">文件上传</a-button>
  33. </div>
  34. <div class="list">
  35. <!-- <div class="bd-t"></div> -->
  36. <NormalTable v-if="alive" :selfParam="selfParam" :searchParam="fileName" :nodeParam="nodeParam"
  37. :columns="columns" :list="getTree" :deleteById="deleteById" :downLoad="downLoad" designScope="file-detail"
  38. title="文件详情" />
  39. <!-- <div class="bd-b"></div> -->
  40. </div>
  41. </div>
  42. </div>
  43. <!-- 上传谈弹窗 -->
  44. <a-modal v-model:visible="visible" centered :width="600" title="上传文件" @ok="handleOk" @cancel="handleCancel">
  45. <a-form :model="formState" labelAlign="right" :label-col="{ span: 6 }" :wrapper-col="{ span: 16 }">
  46. <a-form-item label="是否审批">
  47. <a-radio-group v-model:value="formState.isApprove">
  48. <a-radio :value="true">是</a-radio>
  49. <a-radio :value="false">否</a-radio>
  50. </a-radio-group>
  51. </a-form-item>
  52. <a-form-item label="文件类型" >
  53. <JDictSelectTag v-model:value="formState.fileType" placeholder="请选择文件类型" dictCode="file_type"
  54. style="width: 500px;" />
  55. </a-form-item>
  56. <a-form-item label="文件上传">
  57. <a-upload :before-upload="beforeUpload" @remove="handleRemove" :multiple="false" :file-list="fileList">
  58. <a-button type="primary" preIcon="ant-design:cloud-upload-outlined">选择文件</a-button>
  59. </a-upload>
  60. </a-form-item>
  61. </a-form>
  62. </a-modal>
  63. </div>
  64. </template>
  65. <script lang="ts" setup name="system-user">
  66. import customHeader from '/@/views/vent/comment/components/customHeader.vue';
  67. import { useRouter } from 'vue-router';
  68. import { useMessage } from '/@/hooks/web/useMessage';
  69. import fileSystem from './commen/fileSystem.vue';
  70. import { SvgIcon } from '/@/components/Icon';
  71. import treeIcon from './commen/Icon/treeIcon.vue';
  72. import { ref, onMounted, reactive, nextTick, watch } from 'vue';
  73. import NormalTable from '../comment/NormalTable.vue';
  74. import { columns } from './fileDetail.data';
  75. import { getTree, createFile, editMenu, delMenu, uploadApi, downLoad, deleteById } from './fileDetail.api';
  76. import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
  77. let selfParam = reactive({//各矿参数
  78. sysOrgCode: '',
  79. bpmStatus: null,
  80. flag: false
  81. })
  82. let router = useRouter(); //路由
  83. const { createMessage } = useMessage();
  84. let fileName = ref('');
  85. let fileList = reactive<any[]>([]); //上传文件列表
  86. // let uploadParam = reactive({}); //上传文件参数
  87. let nodeParam = reactive({}); //点击树节点时传递的参数
  88. let alive = ref(true); //点击树节点刷新表格数据
  89. let visible = ref(false)//控制上传弹窗的显示
  90. let formState = reactive({//上传文件类型,是否审批
  91. isApprove: null,
  92. fileType: '',
  93. })
  94. let startUpload: any = ref(null)
  95. //lxh 当前选中树节点
  96. let selected = reactive<any>({
  97. id: null,
  98. pid: null,
  99. title: '',
  100. isFolder: false,
  101. });
  102. let flag = ref('')
  103. //左侧菜单列表
  104. let listArr = reactive<any[]>([]);
  105. //获取要删除的节点数据
  106. let delNode=reactive({})
  107. //上传文件
  108. let openModal = (val) => {
  109. formState.isApprove = null
  110. formState.fileType = ''
  111. fileList.length = 0
  112. visible.value = val
  113. }
  114. //开始上传
  115. let handleOk = () => {
  116. uploadApi(startUpload.value).then((res) => {
  117. console.log(res, '上传返回');
  118. alive.value = false;
  119. nextTick(() => {
  120. alive.value = true;
  121. visible.value = false
  122. });
  123. });
  124. }
  125. //取消上传
  126. let handleCancel = () => {
  127. visible.value = false
  128. }
  129. let list2trees = (data) => {
  130. // 删除 所有 children,以防止多次调用
  131. data.forEach(function (item) {
  132. delete item.children;
  133. });
  134. // 将数据存储为 以 id 为 KEY 的 map 索引数据列
  135. let map = {};
  136. data.forEach(function (item) {
  137. map[item.id] = item;
  138. });
  139. var val = [];
  140. data.forEach(function (item) {
  141. item.isFolder = true;
  142. item.title = item.fileName;
  143. item.pid = item.parentId;
  144. // 以当前遍历项,的pid,去map对象中找到索引的id
  145. var parent = map[item.pid];
  146. // 好绕啊,如果找到索引,那么说明此项不在顶级当中,那么需要把此项添加到,他对应的父级中
  147. if (parent) {
  148. (parent.children || (parent.children = [])).push(item);
  149. } else {
  150. //如果没有在map中找到对应的索引ID,那么直接把 当前的item添加到 val结果集中,作为顶级
  151. val.push(item);
  152. }
  153. });
  154. return val;
  155. };
  156. //获取左侧菜单树数据
  157. let getTreeList = async () => {
  158. listArr.length = 0;
  159. let data = await getTree({ parentId: '' });
  160. let datas = data.records.filter(v => v.fileType == null)
  161. let list = list2trees(datas);
  162. listArr.push(...list);
  163. console.log(listArr, '树节点数据');
  164. selected.id = listArr[0].id
  165. selected.pid = listArr[0].pid
  166. selected.title = listArr[0].title
  167. selected.isFolder = listArr[0].isFolder
  168. };
  169. //点击目录
  170. const onClick = (node) => {
  171. selected = node;
  172. console.log(node, '点击树节点');
  173. if (flag.value != node.title) {
  174. alive.value = false;
  175. nextTick(() => {
  176. alive.value = true;
  177. nodeParam = node;
  178. flag.value = node.title
  179. });
  180. }
  181. };
  182. // // 拖拽结束
  183. // const drop = (node) => {
  184. // console.log(node);
  185. // };
  186. //添加文件
  187. const onAddNode = async (node) => {
  188. let data = await createFile({ fileName: node.newName, type: 'FOL', parentId: node.id });
  189. console.log(data, '新增文件返回');
  190. getTreeList();
  191. };
  192. // 修改名字
  193. const onChangeName = (node) => {
  194. console.log(node, '修改菜单名称');
  195. editMenu({
  196. id: node.id,
  197. fileName: node.newName,
  198. parentId: node.pid,
  199. }).then((res) => {
  200. console.log(res, '修改文件返回');
  201. getTreeList();
  202. });
  203. };
  204. // 删除
  205. let onDeltet = (node) => {
  206. delNode={...node}
  207. console.log('点击删除',delNode)
  208. };
  209. //确定删除
  210. let confirmDel=()=>{
  211. console.log(delNode, '确定删除')
  212. if (delNode.pid == 'root') {
  213. createMessage.warning('根节点不能被删除!');
  214. } else if (delNode.children) {
  215. createMessage.warning('该节点无法被删除,请先删除该节点下的子节点!');
  216. } else {
  217. delMenu({ id: delNode.id }).then((res) => {
  218. console.log(res, '删除文件');
  219. getTreeList();
  220. });
  221. }
  222. }
  223. //取消删除
  224. //查询列表
  225. let onSearch = () => {
  226. console.log(fileName.value, '查询参数');
  227. alive.value = false;
  228. nextTick(() => {
  229. alive.value = true;
  230. });
  231. };
  232. //上传文件
  233. let beforeUpload = (file) => {
  234. console.log(file, '选中文件');
  235. fileList.length = 0;
  236. let index = file.name.indexOf('.')
  237. let name = file.name.substring(index + 1)
  238. if (name == 'png' || name == 'jpg' || name == 'gif' || name == 'psd' || name == 'webp') {
  239. createMessage.warning('禁止上传图片类型的文件!');
  240. } else {
  241. const formData = new FormData();
  242. formData.append('file', file);
  243. formData.append('parentId', selected.id);
  244. formData.append('isApprove', formState.isApprove);
  245. formData.append('fileType', formState.fileType);
  246. startUpload.value = formData
  247. fileList.push(file)
  248. }
  249. };
  250. // 文件移除
  251. let handleRemove = (file) => {
  252. const index = fileList.indexOf(file);
  253. const newFileList = fileList.slice();
  254. newFileList.splice(index, 1);
  255. fileList = newFileList;
  256. };
  257. watch(()=>router.currentRoute.value,(val)=>{
  258. console.log('各矿传参',val)
  259. selfParam.bpmStatus = val.query.bpmStatus
  260. selfParam.sysOrgCode = val.query.sysOrgCode
  261. selfParam.flag = val.query.flag
  262. },{immediate:true})
  263. onMounted(() => {
  264. getTreeList();
  265. });
  266. </script>
  267. <style lang="less" scoped>
  268. @ventSpace: zxm;
  269. .file-details {
  270. width: calc(100% - 10px);
  271. height: calc(100% - 100px);
  272. padding: 15px;
  273. position: relative;
  274. margin-top: 100px;
  275. // background: url(../../../../assets/images/files/homes/bd.png) no-repeat center;
  276. // background-size: contain;
  277. &::after{
  278. display: block;
  279. content: '';
  280. height: 200px;
  281. width: 100%;
  282. position: absolute;
  283. background-image: linear-gradient( #2eb2ff05, #2EA2FF00);
  284. border-top: 1px solid #2eb2ff20;
  285. top: 0px;
  286. left: 0px;
  287. }
  288. .content {
  289. width: 100%;
  290. height: calc(100% - 30px);
  291. display: flex;
  292. flex-direction: row;
  293. justify-content: space-between;
  294. align-items: flex-start;
  295. position: relative;
  296. z-index: 999;
  297. .left-box {
  298. // width: 15%;
  299. // height: calc(100% - 20px);
  300. // margin-bottom: 20px;
  301. // padding: 20px;
  302. // border: 1px solid #91e9fe;
  303. // box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  304. // -moz-box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  305. // -webkit-box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  306. width: 15%;
  307. height: calc(100% - 20px);
  308. margin-bottom: 20px;
  309. padding: 20px;
  310. border: 1px solid #99e8ff66;
  311. background: #27546e1a;
  312. box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  313. -moz-box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  314. -webkit-box-shadow: 0px 0px 50px 1px rgb(149 235 255 / 5%) inset;
  315. // border: 2px solid #268bc1;
  316. // box-shadow: 0px 0px 20px 7px rgba(30, 119, 186, 0.7) inset;
  317. // -moz-box-shadow: 0px 0px 20px 7px rgba(30, 119, 186, 0.7) inset;
  318. // -webkit-box-shadow: 0px 0px 20px 7px rgba(30, 119, 186, 0.7) inset;
  319. // lxh
  320. .iconfont {
  321. color: #fff;
  322. font-size: 12px;
  323. margin-left: 5px;
  324. }
  325. }
  326. .right-box {
  327. width: 85%;
  328. height: calc(100% - 20px);
  329. padding: 0px 0px 0px 15px;
  330. box-sizing: border-box;
  331. .search {
  332. height: 34px;
  333. line-height: 34px;
  334. margin-bottom: 15px;
  335. // background: url(../../../../assets/images/files/details/cz-b.png) no-repeat;
  336. // background-size: 100% 100%;
  337. }
  338. }
  339. .list {
  340. height: calc(100% - 49px);
  341. position: relative;
  342. .bd-t {
  343. height: 4px;
  344. width: 100%;
  345. position: absolute;
  346. top: 0px;
  347. background: url(../../../../assets/images/files/details/lb-b.png) no-repeat;
  348. background-size: 100% 100%;
  349. }
  350. .bd-b {
  351. height: 4px;
  352. width: 100%;
  353. position: absolute;
  354. bottom: 0px;
  355. background: url(../../../../assets/images/files/details/lb-b.png) no-repeat;
  356. background-size: 100% 100%;
  357. }
  358. }
  359. }
  360. .zxm-form {
  361. padding: 10px !important;
  362. }
  363. }
  364. ::v-deep .jeecg-svg-icon {
  365. margin-right: 5px;
  366. }
  367. ::v-deep .jeecg-basic-table-form-container {
  368. padding: 0px 0px;
  369. }
  370. ::v-deep .zxm-btn-primary {
  371. background-color: transparent;
  372. border: none;
  373. background: url(../../../../assets/images/files/details/btn.png) no-repeat !important;
  374. background-size: 100% 100% !important;
  375. }
  376. ::v-deep .zxm-tree-switcher {
  377. background: transparent;
  378. }
  379. ::v-deep .zxm-input {
  380. width: 220px;
  381. height: 28px;
  382. background: transparent;
  383. border: 1px solid #31bccc;
  384. color: #fff;
  385. margin: 0px 20px;
  386. border-radius: 5px;
  387. }
  388. ::v-deep .zxm-btn-group {
  389. margin-right: 25px;
  390. }
  391. ::v-deep .zxm-upload-list-item-name {
  392. color: #fff;
  393. }
  394. ::v-deep .zxm-upload-list-item-name:hover {
  395. color: #000;
  396. }
  397. :deep(.@{ventSpace}-table-cell-row-hover) {
  398. background: #264d8833 !important;
  399. }
  400. :deep(.@{ventSpace}-table-row-selected) {
  401. background: #268bc522 !important;
  402. }
  403. :deep(.@{ventSpace}-select-dropdown) {
  404. border: 1px solid #ececec66;
  405. background: #004362 !important;
  406. left: 0px !important;
  407. backdrop-filter: blur(50px);
  408. .@{ventSpace}-select-item {
  409. color: #fff !important;
  410. }
  411. .@{ventSpace}-select-item-option-selected,
  412. .@{ventSpace}-select-item-option-active {
  413. background-color: #00678b66 !important;
  414. }
  415. .@{ventSpace}-select-item:hover {
  416. background-color: #008fc366 !important;
  417. }
  418. }
  419. ::v-deep .zxm-form-item-control-input {
  420. width: 90%;
  421. }
  422. </style>