index.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. <template>
  2. <!-- 公告信息 -->
  3. <div class="content-container">
  4. <el-row class="search">
  5. <el-col :span="5" class="left-box">
  6. <el-input
  7. placeholder="输入关键字进行过滤"
  8. v-model="filterText"
  9. size="small"
  10. clearable
  11. ></el-input>
  12. <el-tree
  13. class="filter-tree"
  14. :data="data"
  15. :props="defaultProps"
  16. default-expand-all
  17. node-key="id"
  18. :filter-node-method="filterNode"
  19. highlight-current
  20. :current-node-key="111"
  21. @node-click="nodeClick"
  22. :expand-on-click-node="false"
  23. ref="tree"
  24. >
  25. <span class="custom-tree-node" slot-scope="{ node, data }">
  26. <span> {{ node.label }}</span>
  27. <span>
  28. <el-button
  29. v-if="data.rank == 0"
  30. type="text"
  31. size="mini"
  32. icon="el-icon-circle-plus-outline"
  33. @click="opendialog(data, 1)"
  34. ></el-button>
  35. <el-button
  36. v-if="data.rank != 0"
  37. type="text"
  38. size="mini"
  39. icon="el-icon-edit"
  40. @click="opendialog(data, 2)"
  41. ></el-button>
  42. <el-button
  43. v-if="data.rank != 0"
  44. type="text"
  45. size="mini"
  46. icon="el-icon-delete"
  47. style="color: #f40"
  48. @click="deleteBasetype(data)"
  49. ></el-button>
  50. </span>
  51. </span>
  52. </el-tree>
  53. </el-col>
  54. <el-col :span="19" class="right-box">
  55. <div class="top">
  56. <el-form
  57. ref="form"
  58. :inline="true"
  59. label-width="auto"
  60. :model="form"
  61. style="float: left; height: 45px"
  62. >
  63. <el-form-item label="公告名称">
  64. <el-input
  65. v-model="form.theme"
  66. size="small"
  67. placeholder="请输入公告名称"
  68. style="width: 260px"
  69. ></el-input>
  70. <el-button
  71. type="primary"
  72. icon="el-icon-search"
  73. @click="getNoticePage()"
  74. size="small"
  75. style="height: 30px"
  76. >搜索</el-button
  77. >
  78. </el-form-item>
  79. </el-form>
  80. <el-button
  81. type="primary"
  82. @click="addNoticeInfo"
  83. size="small"
  84. icon="el-icon-plus"
  85. style="height: 30px"
  86. >新增</el-button
  87. >
  88. <!-- <el-button
  89. type="primary"
  90. size="small"
  91. icon="el-icon-edit"
  92. @click="editDialogVisible = true"
  93. style="height: 30px"
  94. >修改</el-button
  95. >
  96. <el-button
  97. type="danger"
  98. size="small"
  99. icon="el-icon-delete"
  100. style="height: 30px"
  101. >删除</el-button
  102. > -->
  103. </div>
  104. <div class="table-div">
  105. <el-table
  106. :data="tableData"
  107. :style="{ width: '100%' }"
  108. height="100%"
  109. stripe
  110. border
  111. :header-cell-style="{
  112. background: 'rgba(250,250,250)',
  113. color: 'rgb(50,59,65)',
  114. height: '38px',
  115. textAlign: 'center',
  116. }"
  117. >
  118. <template slot="empty">
  119. <img src="@/assets/icon/null.png" alt="" />
  120. <p class="empty-p">暂无数据</p>
  121. </template>
  122. <el-table-column type="selection" align="center"></el-table-column>
  123. <el-table-column
  124. type="index"
  125. label="序号"
  126. width="50"
  127. ></el-table-column>
  128. <!-- <el-table-column
  129. prop="id"
  130. label="编码"
  131. align="center"
  132. ></el-table-column> -->
  133. <el-table-column
  134. prop="theme"
  135. label="公告名称"
  136. align="center"
  137. ></el-table-column>
  138. <el-table-column
  139. prop="folderName"
  140. label="公告分区"
  141. align="center"
  142. ></el-table-column>
  143. <el-table-column
  144. prop="documentStateName"
  145. label="是否发布"
  146. align="center"
  147. ></el-table-column>
  148. <el-table-column
  149. prop="createUserName"
  150. label="创建人"
  151. align="center"
  152. ></el-table-column>
  153. <el-table-column
  154. prop="createTime"
  155. label="创建时间"
  156. align="center"
  157. ></el-table-column>
  158. <el-table-column
  159. prop="content"
  160. label="公告内容"
  161. width="160"
  162. align="center"
  163. ></el-table-column>
  164. <el-table-column label="操作" align="center">
  165. <template slot-scope="scope">
  166. <el-button
  167. @click="queryDetail(scope.row)"
  168. type="text"
  169. size="small"
  170. >详细</el-button
  171. >
  172. <el-button
  173. v-if="scope.row.documentState === 0"
  174. @click="deleteNotice(scope.row)"
  175. type="text"
  176. size="small"
  177. >删除</el-button
  178. >
  179. </template>
  180. </el-table-column>
  181. </el-table>
  182. </div>
  183. <el-pagination
  184. :current-page="pagination.current"
  185. :page-sizes="[20, 30, 40, 50, 100, 200]"
  186. :page-size="pagination.size"
  187. :total="pagination.total"
  188. layout="total, sizes, prev, pager, next, jumper"
  189. ></el-pagination>
  190. </el-col>
  191. </el-row>
  192. <!-- 新增文档 -->
  193. <el-dialog
  194. title="新增文档"
  195. :visible.sync="dialogFormVisible"
  196. label-width="auto"
  197. width="35%"
  198. >
  199. <el-form ref="folderForm" :model="folderForm" label-width="auto">
  200. <el-form-item label="分区名称:" prop="folderName">
  201. <el-input
  202. v-model="folderForm.folderName"
  203. placeholder="请输入分区名称"
  204. ></el-input>
  205. </el-form-item>
  206. </el-form>
  207. <div slot="footer" class="dialog-footer">
  208. <el-button @click="dialogFormVisible = false">取 消</el-button>
  209. <el-button type="primary" @click="submitFolder()">确 定</el-button>
  210. </div>
  211. </el-dialog>
  212. <!-- 新增公告 -->
  213. <el-dialog
  214. title="新增公告"
  215. :visible.sync="newDialogVisible"
  216. label-width="auto"
  217. destroy-on-close
  218. width="30%"
  219. >
  220. <el-form
  221. ref="noticeForm"
  222. :model="noticeForm"
  223. :rules="rules"
  224. label-width="auto"
  225. size="mini"
  226. >
  227. <el-row :gutter="24">
  228. <el-col :span="12">
  229. <el-form-item label="公告名称:" prop="theme">
  230. <el-input
  231. v-model="noticeForm.theme"
  232. maxlength="20"
  233. placeholder="请输入内容"
  234. :disabled="optionType == 0"
  235. size="small"
  236. ></el-input>
  237. </el-form-item>
  238. </el-col>
  239. <el-col :span="24">
  240. <el-form-item label="公告内容:" prop="content">
  241. <el-input
  242. v-model="noticeForm.content"
  243. type="textarea"
  244. :rows="2"
  245. :disabled="optionType == 0"
  246. placeholder="请输入内容"
  247. size="small"
  248. ></el-input>
  249. </el-form-item>
  250. </el-col>
  251. <el-col :span="24">
  252. <el-row :gutter="24">
  253. <el-col
  254. v-for="(file, index) in existsFiles"
  255. :key="index"
  256. class="tf-col"
  257. :span="8"
  258. >
  259. <div class="file">
  260. <div
  261. class="file-name"
  262. @click="downloadFile(file)"
  263. :style="optionType != 0 ? '' : 'width:100%;'"
  264. >
  265. {{ file.fileName }}
  266. </div>
  267. <div
  268. v-if="optionType != 0"
  269. class="btn-file"
  270. @click="deleteFile(file)"
  271. >
  272. x
  273. </div>
  274. </div>
  275. </el-col>
  276. </el-row>
  277. <upload
  278. ref="upload"
  279. :files="files"
  280. v-if="optionType == 0 ? false : true"
  281. ></upload>
  282. </el-col>
  283. </el-row>
  284. </el-form>
  285. <div slot="footer" class="dialog-footer">
  286. <el-button @click="cancelFn">取 消</el-button>
  287. <el-button v-if="optionType != 0" type="primary" @click="commitNotice"
  288. >确 定</el-button
  289. >
  290. </div>
  291. </el-dialog>
  292. <!-- 新建分区 -->
  293. <el-dialog
  294. title="新建分区"
  295. :visible.sync="diamDialogVisible"
  296. label-width="auto"
  297. width="25%"
  298. >
  299. <el-form :model="form" label-width="auto" size="mini">
  300. <el-row :gutter="24">
  301. <el-col :span="24">
  302. <el-form-item label="分区名称:">
  303. <el-input v-model="input" placeholder="请输入内容"></el-input>
  304. </el-form-item>
  305. </el-col>
  306. <el-col :span="24">
  307. <el-form-item label="分区类型:">
  308. <el-input v-model="input" placeholder="请输入内容"></el-input>
  309. </el-form-item>
  310. </el-col>
  311. </el-row>
  312. </el-form>
  313. <div slot="footer" class="dialog-footer">
  314. <el-button @click="diamDialogVisible = false">取 消</el-button>
  315. <el-button type="primary" @click="diamDialogVisible = false"
  316. >确 定</el-button
  317. >
  318. </div>
  319. </el-dialog>
  320. <!-- 编辑公告 -->
  321. <el-dialog
  322. title="编辑公告"
  323. custom-class="custom-dialog"
  324. :visible.sync="editDialogVisible"
  325. width="96%"
  326. >
  327. <el-form ref="form" :model="sizeForm" label-width="100px" size="mini">
  328. <el-row :gutter="24">
  329. <el-col :span="12">
  330. <el-form-item label="标题:" required>
  331. <el-input v-model="sizeForm.theme"></el-input>
  332. </el-form-item>
  333. </el-col>
  334. <el-col :span="12">
  335. <el-form-item label="概要:">
  336. <el-input v-model="sizeForm.outline"></el-input>
  337. </el-form-item>
  338. </el-col>
  339. <el-col :span="8">
  340. <el-form-item label="公告分区:">
  341. <el-input v-model="sizeForm.moduleType"></el-input>
  342. </el-form-item>
  343. </el-col>
  344. <el-col :span="8">
  345. <el-form-item label="是否发布:" required>
  346. <el-input v-model="sizeForm.isRelease"></el-input>
  347. </el-form-item>
  348. </el-col>
  349. <el-col :span="8">
  350. <el-form-item label="链接地址:">
  351. <el-input v-model="sizeForm.linkUrl"></el-input>
  352. </el-form-item>
  353. </el-col>
  354. </el-row>
  355. <div class="txt" id="editor">
  356. <el-input
  357. type="textarea"
  358. :rows="2"
  359. placeholder="请输入内容"
  360. v-model="sizeForm.content"
  361. :autosize="{ minRows: 12 }"
  362. >
  363. </el-input>
  364. </div>
  365. </el-form>
  366. <div slot="footer" class="dialog-footer">
  367. <el-button @click="editDialogVisible = false">取 消</el-button>
  368. <el-button type="primary" @click="releaseClick">确 定</el-button>
  369. </div>
  370. </el-dialog>
  371. </div>
  372. </template>
  373. <script>
  374. import {
  375. getListByPage,
  376. portalmoduleApi,
  377. getfolderTree,
  378. addfolderApi,
  379. editfolderApi,
  380. deleteFolder,
  381. getNoticeById,
  382. getNoticePage,
  383. addNotice,
  384. editNotice,
  385. deleteNotice,
  386. } from "@/api/mbsys/collaborative";
  387. import upload from "@/views/mbsys/components/upload.vue";
  388. import { getFiles } from "@/api/base";
  389. export default {
  390. components: { upload },
  391. data() {
  392. return {
  393. data: [
  394. {
  395. id: 0,
  396. folderName: "公告分区",
  397. rank: 0,
  398. fts: [],
  399. },
  400. ],
  401. defaultProps: {
  402. children: "fts",
  403. label: "folderName",
  404. },
  405. fileList: [],
  406. files: [], //上传附件
  407. existsFiles: [], //已上传附件
  408. form: {
  409. content: "",
  410. },
  411. limit: 5, //限制文件个数
  412. maxFileSize: 10, //最大文件大小
  413. optionType: 0, //操作类型 0:查看,1:新增,2:修改
  414. formFiles: [],
  415. noticeForm: {
  416. documentType: -1, //当前选中结点ID,文档类型
  417. documentState: 0, //状态0:草稿、1:提交(发布
  418. degreeSecrets: 1, //密级
  419. degreeUrgency: 1, //紧急程度
  420. fontSize: 14, //字号
  421. theme: "", //公告名称
  422. content: "", //公告内容
  423. },
  424. // 增加文档输入框
  425. input: "",
  426. tableData: [],
  427. pagination: { current: 1, size: 40, total: 0 },
  428. dialogFormVisible: false,
  429. newDialogVisible: false,
  430. diamDialogVisible: false,
  431. editDialogVisible: false,
  432. options: [],
  433. filterText: "",
  434. textarea: "",
  435. startDate: "",
  436. sizeForm: {
  437. theme: "",
  438. outline: "",
  439. moduleFunction: 1,
  440. moduleType: 1,
  441. isRelease: 1,
  442. linkUrl: "",
  443. content: "",
  444. remark: "", // 备注
  445. },
  446. documentStates: [
  447. { key: 0, value: "未发布" },
  448. { key: 1, value: "已发布" },
  449. ],
  450. value2: [],
  451. value1: "",
  452. folderForm: { dataType: 0, moduleType: 1, folderName: "" },
  453. opType: null,
  454. noticeType: [],
  455. rules: {
  456. theme: [{ required: true, message: "填写公告名称" }],
  457. content: [{ required: true, message: "填写公告内容" }],
  458. },
  459. };
  460. },
  461. watch: {
  462. filterText(val) {
  463. this.$refs.tree.filter(val);
  464. },
  465. },
  466. created() {
  467. this.getfolderTree();
  468. this.getNoticePage();
  469. },
  470. methods: {
  471. formatData(data, rank) {
  472. for (var i = 0; i < data.length; i++) {
  473. if (data[i].fts.length < 1) {
  474. data[i].fts = undefined;
  475. data[i]["rank"] = rank + 1;
  476. } else {
  477. this.formatData(data[i].fts, rank + 1);
  478. data[i]["rank"] = rank + 1;
  479. }
  480. }
  481. return data;
  482. },
  483. // 获取树形控件的数据
  484. getfolderTree() {
  485. getfolderTree({ moduleType: 1 }).then((res) => {
  486. if (res.result.foldes.length > 0) {
  487. this.data[0].fts = this.formatData(res.result.foldes[0].fts, 0);
  488. this.noticeType = this.data[0].fts;
  489. } else {
  490. this.data[0].fts = [];
  491. }
  492. });
  493. },
  494. /*
  495. 添加文档
  496. */
  497. submitFolder() {
  498. this.$refs.folderForm.validate((valid) => {
  499. if (valid) {
  500. if (this.opType == 1) this.addfolderApi();
  501. else this.editfolderApi();
  502. } else {
  503. return false;
  504. }
  505. });
  506. },
  507. /**
  508. * 新增分区
  509. */
  510. addfolderApi() {
  511. addfolderApi(this.folderForm).then((res) => {
  512. if (res.code == 1) {
  513. this.getfolderTree();
  514. this.dialogFormVisible = false;
  515. this.$message.success("添加文档成功");
  516. }
  517. });
  518. },
  519. /**
  520. * 编辑文件夹
  521. */
  522. editfolderApi() {
  523. editfolderApi(this.folderForm).then((res) => {
  524. if (res.code == 1) {
  525. this.getfolderTree();
  526. this.dialogFormVisible = false;
  527. this.$message.success("编辑文档成功");
  528. }
  529. });
  530. },
  531. /*
  532. 删除文件夹
  533. */
  534. deleteBasetype(data) {
  535. this.$confirm("删除该类型?", "提示", {
  536. confirmButtonText: "确定",
  537. cancelButtonText: "取消",
  538. type: "warning",
  539. })
  540. .then(() => {
  541. deleteFolder(data.id).then((res) => {
  542. if (res.code == 1) {
  543. this.$message.success("删除成功");
  544. this.getfolderTree();
  545. }
  546. });
  547. })
  548. .catch(() => {});
  549. },
  550. /*
  551. 添加文档
  552. */
  553. addNoticeInfo() {
  554. this.optionType = 1;
  555. this.existsFiles = [];
  556. this.noticeForm.theme = "";
  557. this.noticeForm.content = "";
  558. // {
  559. // documentType: -1, //当前选中结点ID,文档类型
  560. // documentState: 0, //状态0:草稿、1:提交(发布
  561. // degreeSecrets: 1, //密级
  562. // degreeUrgency: 1, //紧急程度
  563. // fontSize: 14, //字号
  564. // theme: "", //公告名称
  565. // content: "", //公告内容
  566. // },
  567. if (this.noticeForm.documentType > 0) {
  568. this.newDialogVisible = true;
  569. } else {
  570. this.$message.warning("请先选择分区");
  571. }
  572. },
  573. cancelFn() {
  574. this.newDialogVisible = false;
  575. this.optionType = 1;
  576. },
  577. // 文章发布点击确定
  578. releaseClick() {
  579. portalmoduleApi(this.sizeForm).then((res) => {
  580. console.log("luo999", res);
  581. });
  582. this.editDialogVisible = false;
  583. },
  584. filterNode(value, data) {
  585. if (!value) return true;
  586. return data.folderName.indexOf(value) !== -1;
  587. },
  588. // 点击节点时
  589. nodeClick(data, node, self) {
  590. //记录当前ID
  591. this.noticeForm.documentType = data.id;
  592. //根据id分页查询
  593. this.getNoticePage();
  594. },
  595. /**
  596. * 分页查询公告
  597. */
  598. getNoticePage() {
  599. let param = Object.assign({}, this.pagination); //{ current: 1, size: 40, total: 0 }
  600. // Object.assign(param, {
  601. // moduleType: 1,
  602. // });
  603. if (this.noticeForm.documentType > 0) {
  604. Object.assign(param, { documentType: this.noticeForm.documentType });
  605. }
  606. if (this.form.theme != "")
  607. Object.assign(param, { theme: this.form.theme });
  608. console.log("参数", param);
  609. getNoticePage(param).then((res) => {
  610. if (res.code == 1) {
  611. let tableData = res.result.records;
  612. this.pagination.total = res.result.total;
  613. tableData.forEach((item) => {
  614. const obj = this.noticeType.find((o) => o.id == item.documentType);
  615. if (obj) item["folderName"] = obj.folderName;
  616. item["documentStateName"] = item.hasOwnProperty("documentState")
  617. ? item.documentState == 0
  618. ? "未发布"
  619. : "已发布"
  620. : "未发布";
  621. });
  622. this.tableData = tableData;
  623. console.log(this.tableData);
  624. }
  625. });
  626. },
  627. //提交公告
  628. commitNotice() {
  629. let flag = false;
  630. this.$refs["noticeForm"].validate((valid) => {
  631. flag = valid;
  632. if (valid) {
  633. return true;
  634. } else {
  635. return false;
  636. }
  637. });
  638. if (flag) {
  639. let params = this.noticeForm;
  640. let formData = new FormData();
  641. this.optionType = 1;
  642. for (let param in params) {
  643. formData.append(param, params[param]);
  644. }
  645. //文件
  646. this.formFiles.forEach((file, index) => {
  647. formData.append("fileList", file.file);
  648. });
  649. addNotice(formData)
  650. .then((res) => {
  651. if (res.code == 1) {
  652. this.newDialogVisible = false;
  653. this.getNoticePage();
  654. this.$message.success("新增成功!");
  655. }
  656. })
  657. .catch((ex) => {
  658. this.$message.error("操作出错!");
  659. })
  660. .finally(() => {
  661. this.newDialogVisible = false;
  662. });
  663. }
  664. },
  665. /**
  666. * 添加分区
  667. */
  668. append() {
  669. this.diamDialogVisible = true;
  670. },
  671. //删除
  672. deleteNotice(row) {
  673. console.log(row);
  674. this.$confirm("确定删除该公告?", "提示", {
  675. confirmButtonText: "确定",
  676. cancelButtonText: "取消",
  677. type: "warning",
  678. })
  679. .then(() => {
  680. deleteNotice(row.id).then((res) => {
  681. if (res.code == 1) {
  682. this.$message.success("删除成功");
  683. this.getNoticePage();
  684. }
  685. });
  686. })
  687. .catch(() => {});
  688. },
  689. //查询公告详情
  690. queryDetail(row) {
  691. this.newDialogVisible = true;
  692. this.optionType = 0;
  693. this.existsFiles = [];
  694. getNoticeById(row.id).then((res) => {
  695. console.log("公告详情", res.result);
  696. let {
  697. documentType,
  698. documentState,
  699. degreeUrgency,
  700. fontSize,
  701. theme,
  702. content,
  703. } = res.result;
  704. this.noticeForm = {
  705. documentType,
  706. documentState,
  707. degreeUrgency,
  708. fontSize,
  709. theme,
  710. content,
  711. };
  712. //附件
  713. if (res.result.hasOwnProperty("files")) {
  714. const files = res.result.files;
  715. if (files) {
  716. files.forEach((file) => {
  717. this.existsFiles.push(file);
  718. });
  719. }
  720. }
  721. });
  722. },
  723. /*
  724. 打开对话框
  725. */
  726. opendialog(data, opType) {
  727. this.opType = opType;
  728. if (opType == 1) {
  729. if (data.id == 0) {
  730. this.folderForm = { dataType: 0 };
  731. } else {
  732. this.folderForm = { dataType: 0, parentId: data.id };
  733. }
  734. } else {
  735. this.folderForm["id"] = data.id;
  736. this.$set(this.folderForm, "folderName", data.folderName);
  737. }
  738. this.folderForm["moduleType"] = 1;
  739. this.dialogFormVisible = true;
  740. },
  741. /**
  742. * 获取上传的附件
  743. */ getFiles() {
  744. return this.$refs["upload"].submitFiles();
  745. },
  746. /**
  747. * 删除文件
  748. * @file 文件信息
  749. */
  750. deleteFile(file) {
  751. this.$confirm(
  752. "此操作将永久删除【" + file.fileName + "】文件, 是否继续?",
  753. "提示",
  754. {
  755. confirmButtonText: "确定",
  756. cancelButtonText: "取消",
  757. type: "warning",
  758. }
  759. )
  760. .then(() => {
  761. this.existsFiles = this.existsFiles.filter(
  762. (item) => item.id != file.id
  763. );
  764. })
  765. .catch(() => {
  766. this.$message({
  767. type: "info",
  768. message: "已取消删除",
  769. });
  770. });
  771. },
  772. /**
  773. * 下载文件
  774. * @file 文件信息
  775. */ downloadFile(file) {
  776. if (
  777. file &&
  778. file.hasOwnProperty("filePath") &&
  779. file.hasOwnProperty("fileName")
  780. ) {
  781. const token = this.$store.state.user.token;
  782. const fileName = file.fileName;
  783. getFiles({
  784. access_token: token,
  785. fileName: fileName,
  786. remotePath: file.filePath,
  787. }).then((src) => {
  788. const reader = new FileReader();
  789. reader.readAsDataURL(src);
  790. reader.onload = (e) => {
  791. const a = document.createElement("a");
  792. a.download = fileName;
  793. // 后端设置的文件名称在res.headers的 "content-disposition": "form-data; name=\"attachment\"; filename=\"20181211191944.zip\"",
  794. a.href = e.target.result;
  795. document.body.appendChild(a);
  796. a.click();
  797. document.body.removeChild(a);
  798. };
  799. });
  800. }
  801. },
  802. },
  803. };
  804. </script>
  805. <style lang="scss" scoped>
  806. .content-container {
  807. width: 100%;
  808. box-sizing: border-box;
  809. padding: 10px;
  810. position: absolute;
  811. top: 43px;
  812. bottom: 0;
  813. .custom-tree-node {
  814. flex: 1;
  815. display: flex;
  816. align-items: center;
  817. justify-content: space-between;
  818. font-size: 14px;
  819. padding-right: 8px;
  820. }
  821. .filter-tree {
  822. margin-top: 10px;
  823. }
  824. .el-row {
  825. width: 100%;
  826. height: 100%;
  827. .left-box {
  828. height: 100%;
  829. border-right: 1px solid #ebeef5;
  830. overflow-y: auto;
  831. box-sizing: border-box;
  832. padding-right: 10px;
  833. }
  834. .right-box {
  835. height: 100%;
  836. overflow-y: auto;
  837. box-sizing: border-box;
  838. padding: 0 15px;
  839. .top {
  840. height: 33px;
  841. text-align: right;
  842. .upload-demo {
  843. display: inline-block;
  844. }
  845. }
  846. .table-div {
  847. height: calc(100% - 81px);
  848. }
  849. .el-pagination {
  850. margin-top: 16px;
  851. }
  852. }
  853. }
  854. }
  855. .custom-dialog {
  856. background-color: #f3f3f3;
  857. }
  858. </style>