home.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. <template>
  2. <el-container class="home">
  3. <!-- 顶部导航栏 -->
  4. <el-header class="header">
  5. <Select
  6. width="200"
  7. radius
  8. v-model="sprojectId"
  9. @change="getProject"
  10. :selectdata="ProjectData"
  11. :placeholder="'请选择'"
  12. :hideClear="true"
  13. />
  14. <el-popover
  15. placement="top"
  16. width="320"
  17. v-model="popVisible"
  18. popper-class="createPopper"
  19. trigger="manual"
  20. >
  21. <p>点击这里即可快速创建拓扑图。</p>
  22. <div style="text-align: right; margin: 0">
  23. <el-button size="mini" type="text" @click="popVisible = false"
  24. >我知道了</el-button
  25. >
  26. </div>
  27. <el-button
  28. @click="createProject"
  29. slot="reference"
  30. size="small"
  31. type="primary"
  32. >新建拓扑图</el-button
  33. >
  34. </el-popover>
  35. </el-header>
  36. <!-- body部分 -->
  37. <el-container class="bodys">
  38. <!-- 左侧树状导航栏部分 -->
  39. <el-aside class="aside" width="200px">
  40. <leftAsideTree
  41. ref="leftAsideTree"
  42. @changeNode="changeNode"
  43. @noTree="(noTreeFlag = false), (popVisible = true)"
  44. @getDataSuc="getTreeSuc"
  45. ></leftAsideTree>
  46. <div
  47. class="recycle"
  48. :style="!isShowDelete ? 'cursor:not-allowed' : ''"
  49. @click="showRecycleDialog"
  50. >
  51. <img :src="require('@/assets/images/recycle.png')" />
  52. <span>回收站</span>
  53. </div>
  54. </el-aside>
  55. <!-- 展示部分 -->
  56. <el-main class="main">
  57. <div class="main-head" v-if="noTreeFlag">
  58. <div class="showType" v-show="!selectCard.length">
  59. <el-radio-group v-model="isPub" size="small" @change="changePub">
  60. <el-radio-button :label="1">已发布</el-radio-button>
  61. <el-radio-button :label="0">未发布</el-radio-button>
  62. </el-radio-group>
  63. <div class="head-right">
  64. <el-input
  65. placeholder="搜索"
  66. prefix-icon="el-icon-search"
  67. size="small"
  68. v-model="queryText"
  69. @keyup.native.enter="changeQueryText"
  70. clearable
  71. @clear="changeQueryText"
  72. >
  73. </el-input>
  74. <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
  75. <span class="drop-text">{{ selText }}</span>
  76. </Dropdown>
  77. </div>
  78. </div>
  79. <div class="showAction" v-show="selectCard.length">
  80. <el-checkbox
  81. v-model="checkAll"
  82. :indeterminate="isIndeterminate"
  83. @change="handleCheckAllChange"
  84. >全选</el-checkbox
  85. >
  86. <span style="margin-left: 10px">|</span>
  87. <span class="sum"
  88. >已选择<span style="color: #252b30; margin: 0 5px">{{
  89. selectCard.length
  90. }}</span
  91. >项目</span
  92. >
  93. <el-button size="mini" @click="groupMove">移动到</el-button>
  94. <el-button size="mini" @click="groupDownload" v-if="isPub"
  95. >下载</el-button
  96. >
  97. <el-button size="mini" @click="groupDelete">删除</el-button>
  98. <i
  99. class="el-icon-close"
  100. style="float: right; line-height: 28px; margin-right: 5px"
  101. @click="handleCheckAllChange(false)"
  102. ></i>
  103. </div>
  104. </div>
  105. <div class="main-body" v-loading="cardLoading">
  106. <div class="has-data-body" v-if="noTreeFlag && cardList.length">
  107. <template v-for="t in cardList">
  108. <topoImageCard
  109. :isPub="isPub"
  110. :data="t"
  111. :key="t.id"
  112. @changeCheck="changeCheck"
  113. @rename="rename"
  114. @publishSuc="updateSuc"
  115. @moveTo="moveTo"
  116. @delete="deleteGraph"
  117. @editTag="editTag"
  118. @toEdit="toEdit"
  119. @download="download"
  120. ></topoImageCard>
  121. </template>
  122. </div>
  123. <div class="no-data-body" v-else style="margin-top: 112px">
  124. <img
  125. src="@/assets/images/no-data.png"
  126. style="width: 116px; height: 116px"
  127. />
  128. <p style="font-size: 16px; margin-top: 15px">暂无数据</p>
  129. </div>
  130. </div>
  131. </el-main>
  132. </el-container>
  133. <!-- 创建弹框 -->
  134. <createGraphDialog ref="createGraphDialog"></createGraphDialog>
  135. <!-- 重命名 -->
  136. <rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
  137. <!-- 移动到 -->
  138. <move ref="move" :isPub="isPub" @moveSuc="moveSuc"></move>
  139. <!-- 删除二次确认 -->
  140. <deleteDialog
  141. ref="deleteDialog"
  142. :isPub="isPub"
  143. @deleteSuc="deleteSuc"
  144. ></deleteDialog>
  145. <!-- 修改标签 -->
  146. <tagDialog
  147. ref="tagDialog"
  148. :isPub="isPub"
  149. @updateSuc="updateSuc"
  150. ></tagDialog>
  151. <!-- 回收站全屏弹窗 -->
  152. <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
  153. </el-container>
  154. </template>
  155. <script>
  156. import { Select, Dropdown } from "meri-design";
  157. import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
  158. import topoImageCard from "@/components/homeView/topoImageCard.vue";
  159. import { queryDraftsGraph, queryPubGraph } from "@/api/home";
  160. import rename from "@/components/homeView/rename";
  161. import move from "@/components/homeView/move";
  162. import deleteDialog from "@/components/homeView/deleteDialog";
  163. import tagDialog from "@/components/homeView/tagDialog";
  164. import recycle from "@/components/homeView/recycle";
  165. import createGraphDialog from "@/components/homeView/createGraphDialog";
  166. import { SNetUtil } from "@persagy-web/base";
  167. import { mapMutations, mapState, mapActions } from "vuex";
  168. ////////////////////////////////
  169. // 常量
  170. // 图服务路径
  171. const imgBaseUrl = window.__systemConf.imgServeUri;
  172. const ProjectData = window.__systemConf.ProjectData;
  173. export default {
  174. name: "home",
  175. data() {
  176. return {
  177. ProjectData,
  178. selVal: "lastUpdate", // 排序方式
  179. selText: "按最后修改", // 排序方式文字
  180. dataSelect: [
  181. { id: "lastUpdate", name: "按最后修改" },
  182. { id: "name", name: "按字母顺序" },
  183. { id: "createTime", name: "按创建时间" },
  184. ], // 排序选项
  185. queryText: "", // 搜索文字
  186. isPub: 1, // 发布类型()
  187. cardList: [], // 当前显示的卡片列表
  188. checkAll: false, // 全选
  189. selectCard: [], // 当前选中的卡片列表
  190. isIndeterminate: true, // 全选按钮
  191. curCategory: {}, // 当前选中的树节点
  192. noTreeFlag: true, // 左侧树是否有数据-默认有
  193. popVisible: false,
  194. categoryName: "", // 跳转编辑页面时分类名称
  195. cardLoading: false,
  196. sprojectId: "",
  197. isShowDelete: true, //是否允许打开回收站
  198. };
  199. },
  200. computed: {
  201. ...mapState(["projectId"]),
  202. },
  203. methods: {
  204. ...mapMutations(["SETPROJECTID"]),
  205. ...mapActions(['getAllCategoryType']),
  206. getProject(data) {
  207. this.SETPROJECTID(data.id);
  208. // 判断垃圾箱是否可以点击
  209. this.getRecycleData();
  210. },
  211. // 创建拓扑图
  212. createProject() {
  213. this.$refs.createGraphDialog.showDialog();
  214. },
  215. // 选项改变
  216. changeCheck(v) {
  217. const index = this.selectCard.indexOf(v);
  218. if (index > -1) {
  219. this.selectCard.splice(index, 1);
  220. } else {
  221. this.selectCard.push(v);
  222. }
  223. this.cardList.map(t => {
  224. t.showCheckFlag = this.selectCard.length > 0;
  225. })
  226. },
  227. // 全选按钮
  228. handleCheckAllChange(val) {
  229. this.cardList = this.cardList.map((t) => {
  230. t.checked = val;
  231. t.showCheckFlag = val;
  232. return t;
  233. });
  234. this.selectCard = val
  235. ? this.cardList.map((t) => {
  236. t.checked = true;
  237. return t;
  238. })
  239. : [];
  240. this.isIndeterminate = false;
  241. },
  242. // 批量移动到
  243. groupMove() {
  244. this.$refs.move.showDialog(this.selectCard);
  245. },
  246. // 批量下载
  247. groupDownload() {
  248. if (this.selectCard.length) {
  249. this.selectCard.forEach((t) => {
  250. this.download(t);
  251. });
  252. }
  253. },
  254. // 单独下载
  255. download(data) {
  256. if (data.pic) {
  257. SNetUtil.downLoad(data.name + ".png", imgBaseUrl + data.pic);
  258. } else {
  259. // this.$message.warning(`${data.name}未绘制`)
  260. }
  261. },
  262. // 删除
  263. groupDelete() {
  264. // 判断垃圾箱是否可以点击
  265. this.getRecycleData();
  266. this.$refs.deleteDialog.showDialog(this.selectCard);
  267. },
  268. // 重命名
  269. rename(data) {
  270. this.$refs.rename.showDialog(data);
  271. },
  272. // 移动到
  273. moveTo(data) {
  274. this.$refs.move.showDialog([data]);
  275. },
  276. // 单独删除
  277. deleteGraph(data) {
  278. // 判断垃圾箱是否可以点击
  279. this.getRecycleData();
  280. this.$refs.deleteDialog.showDialog([data]);
  281. },
  282. // 更新成功-发布成功
  283. updateSuc() {
  284. this.queryGraph();
  285. },
  286. // 移动成功
  287. moveSuc() {
  288. this.queryGraph();
  289. this.$refs.leftAsideTree.getCategoryGraph();
  290. },
  291. // 删除成功
  292. deleteSuc() {
  293. this.$refs.leftAsideTree.getCategoryGraph();
  294. },
  295. // 选中节点变化
  296. changeNode(data) {
  297. this.noTreeFlag = true
  298. this.curCategory = data;
  299. this.categoryName = data.name;
  300. this.queryGraph();
  301. },
  302. // 树数据获取成功
  303. getTreeSuc() {
  304. this.noTreeFlag = true;
  305. this.cardList = [];
  306. this.queryGraph();
  307. },
  308. // 发布修改
  309. changePub() {
  310. this.queryGraph();
  311. },
  312. // 修改标签
  313. editTag(data) {
  314. this.$refs.tagDialog.showDialog(data);
  315. },
  316. // 输入内容变化
  317. changeQueryText() {
  318. this.queryGraph();
  319. },
  320. // 回收站点击
  321. showRecycleDialog() {
  322. // 判断回收站是否打开
  323. if (this.isShowDelete) {
  324. this.$refs.recycle.showDialog();
  325. }
  326. },
  327. // 回收站关闭
  328. recycleDialogClose() {
  329. this.$refs.leftAsideTree.getCategoryGraph();
  330. },
  331. // 新建拓扑图成功
  332. toEdit(data) {
  333. // 如果跳入草稿则直接跳入、如果调已发布图判断是否是有草稿、有则提示是否要跳入草稿
  334. if (this.isPub) {
  335. this.getDraft(data).then((res) => {
  336. // 是否有对应草稿 如果有出弹窗
  337. if (res) {
  338. this.$confirm("该图片已存在最新版草稿,是否选择编辑已有草稿", {
  339. confirmButtonText: "确定",
  340. cancelButtonText: "取消",
  341. })
  342. .then(() => {
  343. let routeUrl = this.$router.resolve({
  344. name: "Editer",
  345. query: {
  346. graphId: res.graphId,
  347. id: res.id,
  348. categoryName: encodeURI(this.categoryName),
  349. isPub: 0,
  350. projectId: this.projectId,
  351. },
  352. });
  353. window.open(routeUrl.href, "_blank");
  354. })
  355. .catch(() => {});
  356. } else {
  357. let routeUrl = this.$router.resolve({
  358. name: "Editer",
  359. query: {
  360. graphId: data.graphId,
  361. id: data.id,
  362. categoryName: encodeURI(this.categoryName),
  363. isPub: this.isPub,
  364. projectId: this.projectId,
  365. },
  366. });
  367. window.open(routeUrl.href, "_blank");
  368. }
  369. });
  370. } else {
  371. // 进入草稿
  372. let routeUrl = this.$router.resolve({
  373. name: "Editer",
  374. query: {
  375. graphId: data.graphId,
  376. id: data.id,
  377. categoryName: encodeURI(this.categoryName),
  378. isPub: this.isPub,
  379. projectId: this.projectId,
  380. },
  381. });
  382. window.open(routeUrl.href, "_blank");
  383. }
  384. },
  385. /////////////////接口
  386. // 查询图形信息
  387. queryGraph() {
  388. if (!this.curCategory.code) {
  389. return;
  390. }
  391. this.cardLoading = true;
  392. this.selectCard = [];
  393. const pa = {
  394. filters: `categoryId="${this.curCategory.code}"`
  395. };
  396. if (this.selVal == 'name') {
  397. pa.orders = `${this.selVal} asc`;
  398. } else {
  399. pa.orders = `${this.selVal} desc`;
  400. }
  401. if (this.queryText) {
  402. pa.filters += `;name contain "${this.queryText}"`;
  403. }
  404. if (this.isPub) {
  405. queryPubGraph(pa).then((res) => {
  406. this.cardList = res.content.map((t) => {
  407. t.checked = false;
  408. t.showCheckFlag = false;
  409. return t;
  410. });
  411. this.cardLoading = false;
  412. });
  413. } else {
  414. pa.filters += ";state=1";
  415. queryDraftsGraph(pa).then((res) => {
  416. this.cardList = res.content.map((t) => {
  417. t.checked = false;
  418. t.showCheckFlag = false;
  419. return t;
  420. });
  421. this.cardLoading = false;
  422. });
  423. }
  424. },
  425. // 查询是否存在对应的得草稿图
  426. getDraft(data) {
  427. if (!this.curCategory.code) {
  428. return;
  429. }
  430. const pa = {
  431. filters: `categoryId="${this.curCategory.code}"`
  432. };
  433. if (this.selVal == 'name') {
  434. pa.orders = `${this.selVal} asc`;
  435. } else {
  436. pa.orders = `${this.selVal} desc`;
  437. }
  438. if (this.queryText) {
  439. pa.filters += `;name contain ""`;
  440. }
  441. pa.filters += ";state=1";
  442. pa.filters += `;id='${data.id}';graphId='${data.graphId}'`;
  443. const cardList = [];
  444. return new Promise((resolve, reject) => {
  445. queryDraftsGraph(pa)
  446. .then((res) => {
  447. if (res.content.length) {
  448. resolve(res.content[0]);
  449. } else {
  450. resolve(false);
  451. }
  452. })
  453. .catch((err) => {
  454. reject(err);
  455. });
  456. });
  457. },
  458. // 请求回收站相关数据
  459. getRecycleData() {
  460. const pa = {
  461. Filters: `state=4`,
  462. };
  463. queryDraftsGraph(pa).then((res) => {
  464. if (res.content && res.content.length) {
  465. this.isShowDelete = true;
  466. } else {
  467. this.isShowDelete = false;
  468. }
  469. });
  470. },
  471. },
  472. components: {
  473. Select,
  474. leftAsideTree,
  475. Dropdown,
  476. topoImageCard,
  477. rename,
  478. move,
  479. deleteDialog,
  480. recycle,
  481. tagDialog,
  482. createGraphDialog,
  483. },
  484. watch: {
  485. // 排序方式修改
  486. selVal(n, o) {
  487. if (n === o) return;
  488. this.selText = this.dataSelect.find((d) => d.id === n).name;
  489. this.selectCard = [];
  490. this.queryGraph();
  491. },
  492. },
  493. beforeCreate() {},
  494. created() {
  495. // 如果传参获取项目、则项目id为该项目
  496. const urlData = this.$route.query;
  497. if (Object.keys(urlData).length == 0) {
  498. this.sprojectId = this.projectId;
  499. } else {
  500. this.ProjectData = [{ id: urlData.projectId, name: urlData.projectName }];
  501. this.SETPROJECTID(urlData.projectId);
  502. this.sprojectId = urlData.projectId;
  503. }
  504. // 判断垃圾箱是否可以点击
  505. this.getRecycleData();
  506. this.getAllCategoryType()
  507. },
  508. };
  509. </script>
  510. <style lang="less" scoped>
  511. .home {
  512. width: 100%;
  513. height: 100%;
  514. .header {
  515. width: 100%;
  516. height: 60px;
  517. background: #f7f9fa;
  518. padding: 0 16px 0 16px;
  519. box-sizing: border-box;
  520. display: flex;
  521. align-items: center;
  522. justify-content: space-between;
  523. }
  524. .bodys {
  525. width: 100%;
  526. height: calc(100% - 60px);
  527. .aside {
  528. .recycle {
  529. line-height: 48px;
  530. border-top: 1px solid #e4e5e7ff;
  531. box-sizing: border-box;
  532. background: #f7f9fa;
  533. padding-left: 16px;
  534. cursor: pointer;
  535. img {
  536. width: 16px;
  537. height: 16px;
  538. margin: -3px 8px 0 0;
  539. }
  540. }
  541. }
  542. .main {
  543. width: 100%;
  544. height: 100%;
  545. background: #fff;
  546. padding: 5px 20px;
  547. box-sizing: border-box;
  548. .main-head {
  549. position: relative;
  550. width: 100%;
  551. height: 46px;
  552. margin-bottom: 5px;
  553. .showType {
  554. width: 100%;
  555. padding: 7px 0;
  556. display: flex;
  557. align-items: center;
  558. justify-content: space-between;
  559. /deep/
  560. .el-radio-button__orig-radio:checked
  561. + .el-radio-button__inner {
  562. color: #0091ff;
  563. border-color: #0091ff;
  564. background: #e1f2ff;
  565. }
  566. .head-right {
  567. display: flex;
  568. align-items: center;
  569. .Dropdown {
  570. min-width: 100px;
  571. margin-left: 20px;
  572. .drop-text {
  573. font-size: 14px;
  574. color: #1f2329;
  575. line-height: 16px;
  576. }
  577. }
  578. }
  579. }
  580. .showAction {
  581. background: #e1f2ff;
  582. border-radius: 4px;
  583. border: 1px solid #82c7fc;
  584. padding: 8px;
  585. span.sum {
  586. margin: 0 10px;
  587. color: #778089;
  588. }
  589. }
  590. }
  591. .main-body {
  592. display: block;
  593. height: calc(100% - 51px);
  594. overflow: auto;
  595. & > div {
  596. display: flex;
  597. flex-wrap: wrap;
  598. }
  599. .no-data-body {
  600. flex-direction: column;
  601. // justify-content: center;
  602. align-items: center;
  603. }
  604. }
  605. }
  606. }
  607. .create-dialog {
  608. .dialog-bodys {
  609. width: 367px;
  610. margin: 0 auto;
  611. }
  612. }
  613. .create-dialog-inner {
  614. .inner-dialog-body {
  615. width: 100%;
  616. display: flex;
  617. .left {
  618. flex: 1;
  619. border-right: 1px solid #ccc;
  620. }
  621. }
  622. }
  623. }
  624. </style>
  625. <style lang="less">
  626. .createPopper.el-popover {
  627. background: #0091ffff;
  628. color: #fff;
  629. border-color: #0091ffff;
  630. .el-button {
  631. background: #ffffff;
  632. border-radius: 4px;
  633. padding: 5px 8px;
  634. }
  635. .popper__arrow::after {
  636. border-bottom-color: #0091ffff;
  637. }
  638. }
  639. </style>