home.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. <template>
  2. <el-container class="home">
  3. <!-- 顶部导航栏 -->
  4. <el-header class="header">
  5. <Select width="200" radius @change="testClick" :selectdata="dataSelect3" :placeholder="'请选择'" :hideClear="true" />
  6. <DropDownButton
  7. @click="createCanvas"
  8. type="primary"
  9. drop-down-type="split-drop"
  10. interactive="tap"
  11. :drop-down-list="dropDownList"
  12. @input="batchCreateCanvas"
  13. >新建画布</DropDownButton
  14. >
  15. <!-- <el-popover placement="bottom" width="320" v-model="popVisible" popper-class="createPopper" trigger="manual">
  16. <p>点击这里即可快速创建画布。</p>
  17. <div style="text-align: right; margin: 0">
  18. <el-button size="mini" type="text" @click="popVisible=false">我知道了</el-button>
  19. </div>
  20. </el-popover> -->
  21. </el-header>
  22. <!-- body部分 -->
  23. <el-container class="bodys">
  24. <!-- 左侧树状导航栏部分 -->
  25. <el-aside class="aside" width="240px">
  26. <left-folder ref="leftFolder" @changeFolder="changeFolder"></left-folder>
  27. <!-- <leftAsideTree ref="leftAsideTree" @changeNode="changeNode" @noTree="(noTreeFlag = false), (popVisible = true)"></leftAsideTree>
  28. <div class="recycle" @click="showRecycleDialog">
  29. <img :src="require('@/assets/images/recycle.png')" />
  30. <span>回收站</span>
  31. </div> -->
  32. </el-aside>
  33. <!-- 展示部分 -->
  34. <el-main class="main">
  35. <div class="main-head" v-if="noTreeFlag">
  36. <div class="showType" v-show="!selectCard.length">
  37. <el-radio-group v-model="isPub" size="small" @change="changePub">
  38. <el-radio-button :label="1">已发布</el-radio-button>
  39. <el-radio-button :label="0">未发布</el-radio-button>
  40. </el-radio-group>
  41. <div class="head-right">
  42. <el-input
  43. placeholder="搜索"
  44. prefix-icon="el-icon-search"
  45. size="small"
  46. v-model="queryText"
  47. @keyup.native.enter="changeQueryText"
  48. clearable
  49. @clear="changeQueryText"
  50. >
  51. </el-input>
  52. <!-- 不显示筛选下拉框 -->
  53. <!-- <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
  54. <span class="drop-text">{{ selText }}</span>
  55. </Dropdown> -->
  56. </div>
  57. </div>
  58. <div class="showAction" v-show="selectCard.length">
  59. <el-checkbox v-model="checkAll" :indeterminate="isIndeterminate" @change="handleCheckAllChange">全选</el-checkbox>
  60. <span style="margin-left: 10px">|</span>
  61. <span class="sum"
  62. >已选择<span style="color: #252b30; margin: 0 5px">{{ selectCard.length }}</span
  63. >项目</span
  64. >
  65. <el-button size="mini" @click="groupMove">移动到</el-button>
  66. <el-button size="mini" @click="groupDownload" v-if="isPub">下载</el-button>
  67. <el-button size="mini" @click="groupDelete">删除</el-button>
  68. <i class="el-icon-close" style="float: right; line-height: 28px; margin-right: 5px" @click="handleCheckAllChange(false)"></i>
  69. </div>
  70. </div>
  71. <div class="main-body" v-loading="cardLoading">
  72. <div class="has-data-body" v-if="cardTree.length">
  73. <div class="building" v-for="buildingData in cardTree" :key="buildingData.buildingId">
  74. <!-- 建筑名称 -->
  75. <p class="buinding-name"><span class="border-left"></span> {{ buildingData.localName }}</p>
  76. <div class="floor" v-for="floor in buildingData.floorList" :key="floor.floorId">
  77. <!-- 楼层名称 -->
  78. <p class="floor-name">{{ floor.localName }}</p>
  79. <template v-for="t in floor.planarGraphList">
  80. <planImageCard
  81. :isPub="isPub"
  82. :data="t"
  83. :key="`${Math.random()}_${t.id}`"
  84. @changeCheck="changeCheck"
  85. @rename="rename"
  86. @publishSuc="updateSuc"
  87. @moveTo="moveTo"
  88. @delete="deleteGraph"
  89. @editTag="editTag"
  90. @toEdit="toEdit(t, floor.localName, floor.infos || {})"
  91. @download="download"
  92. ></planImageCard>
  93. </template>
  94. </div>
  95. </div>
  96. </div>
  97. <div class="no-data-body" v-else style="margin-top: 112px">
  98. <img src="@/assets/images/no-data.png" style="width: 116px; height: 116px" />
  99. <p style="font-size: 16px; margin-top: 15px">暂无数据</p>
  100. </div>
  101. </div>
  102. </el-main>
  103. </el-container>
  104. <!-- 创建画布 -->
  105. <createPlanarDialog ref="createPlanarDialog" @createPlanar="createPlanarCallback"></createPlanarDialog>
  106. <!-- <createGraphDialog ref="createGraphDialog"></createGraphDialog> -->
  107. <!-- 重命名 -->
  108. <rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
  109. <!-- 移动到 -->
  110. <move ref="move" :isPub="isPub" @moveSuc="moveSuc"></move>
  111. <!-- 删除二次确认 -->
  112. <deleteDialog ref="deleteDialog" :isPub="isPub" @deleteSuc="deleteSuc"></deleteDialog>
  113. <!-- 修改标签 -->
  114. <tagDialog ref="tagDialog" :isPub="isPub" @updateSuc="updateSuc"></tagDialog>
  115. <!-- 回收站全屏弹窗 -->
  116. <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
  117. <!-- <equipment-deatil /> -->
  118. </el-container>
  119. </template>
  120. <script>
  121. import { Select, DropDownButton } from "meri-design";
  122. // import { Dropdown } from "meri-design";
  123. import leftFolder from "@/components/homeView/leftFolder.vue";
  124. // import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
  125. import planImageCard from "@/components/homeView/planImageCard.vue";
  126. // import { queryDraftsGraph, queryPubGraph } from "@/api/home";
  127. import { planerQuery, pubPlanerQuery, planerRead, pubPlanerRead, planerSave } from "@/api/labsl";
  128. import rename from "@/components/homeView/rename";
  129. import move from "@/components/homeView/move";
  130. import deleteDialog from "@/components/homeView/deleteDialog";
  131. import tagDialog from "@/components/homeView/tagDialog";
  132. import recycle from "@/components/homeView/recycle";
  133. // import createGraphDialog from "@/components/homeView/createGraphDialog";
  134. import createPlanarDialog from "@/components/homeView/createPlanarDialog";
  135. import { SNetUtil } from "@persagy-web/base";
  136. // import equipmentDeatil from "@/components/editview/equipmentDeatilDialog";
  137. export default {
  138. name: "home",
  139. // components: { leftAsideTree, createGraphDialog },
  140. components: {
  141. Select,
  142. // Dropdown,
  143. DropDownButton,
  144. planImageCard,
  145. rename,
  146. move,
  147. deleteDialog,
  148. recycle,
  149. tagDialog,
  150. createPlanarDialog,
  151. leftFolder,
  152. // equipmentDeatil,
  153. },
  154. data() {
  155. return {
  156. dataSelect3: [
  157. { id: "test1", name: "选择项", sub: "hello111" },
  158. { id: "test2", name: "单平米", sub: "hola111" },
  159. {
  160. id: "test3",
  161. name: "下级分项",
  162. sub: "bonjour",
  163. divider: true,
  164. },
  165. { id: "test4", name: "滑动平均滑动平均", sub: "hi" },
  166. ], // 项目列表
  167. dropDownList: [
  168. {
  169. id: "batch",
  170. name: "批量新建",
  171. disabled: true,
  172. },
  173. ],
  174. selVal: "lastUpdate", // 排序方式
  175. selText: "按最后修改", // 排序方式文字
  176. dataSelect: [
  177. { id: "lastUpdate", name: "按最后修改" },
  178. { id: "name", name: "按字母顺序" },
  179. { id: "createTime", name: "按创建时间" },
  180. ], // 排序选项
  181. queryText: "", // 搜索文字
  182. isPub: 1, // 发布类型()
  183. cardTree: [], // 当前显示的卡片树
  184. cardList: [], //卡片平铺树
  185. checkAll: false, // 全选
  186. selectCard: [], // 当前选中的卡片列表
  187. isIndeterminate: true, // 全选按钮
  188. curCategory: {}, // 当前选中的树节点
  189. noTreeFlag: true, // 左侧树是否有数据-默认有
  190. popVisible: true,
  191. categoryName: "", // 跳转编辑页面时分类名称
  192. imgUrl: "/image-service/common/image_get?systemId=dataPlatform&key=",
  193. cardLoading: false,
  194. folderId: "", //文件夹id
  195. folderName: "", //文件夹名称
  196. };
  197. },
  198. created() {},
  199. methods: {
  200. testClick(data) {
  201. console.log(data);
  202. },
  203. // 创建画布
  204. createCanvas() {
  205. this.$refs.createPlanarDialog.showDialog();
  206. },
  207. // 新建画布成功回调
  208. createPlanarCallback(folder) {
  209. console.log("=============");
  210. console.log(folder);
  211. console.log("=============");
  212. /**
  213. * 1.
  214. * folderId: "894983e26c20464e8c2e7d349d5bbc48"
  215. folderName: undefined
  216. 2.
  217. folderId: "1cb3aa7281724617b05e60f494dd58e0"
  218. folderName: "dfas"
  219. */
  220. // TODO: 编辑器开发完后后解开注释
  221. /* this.$router.push({
  222. name: "Editer",
  223. query: {
  224. graphId: folder.graphId,
  225. id: folder.id,
  226. // categoryName: encodeURI(this.categoryName),
  227. isPub: 0, //新建的是未发布的
  228. },
  229. });
  230. // 不进行文件夹的定位
  231. return true; */
  232. if (folder.folderId) {
  233. this.folderId = folder.folderId;
  234. // 是否新建文件夹
  235. if (folder.folderName) {
  236. this.folderName = folder.folderName;
  237. // 新建文件夹
  238. this.$refs.leftFolder.getFolderData(folder.folderId);
  239. } else {
  240. this.$refs.leftFolder.handleCheckFolder(folder.folderId);
  241. }
  242. // 选中未发布,查询列表
  243. this.isPub = 0;
  244. this.queryGraph();
  245. }
  246. },
  247. // 批量新建画布
  248. batchCreateCanvas(val) {
  249. alert(`批量创建画布${val}`);
  250. },
  251. // 创建拓扑图
  252. createProject() {
  253. this.$refs.createGraphDialog.showDialog();
  254. },
  255. // 选项改变
  256. changeCheck(v) {
  257. // 获取该对象在选中数组中的下标(按照id匹配)
  258. const index = this._.findIndex(this.selectCard, ["id", v.id]);
  259. if (index !== -1) {
  260. this.selectCard.splice(index, 1);
  261. } else {
  262. this.selectCard.push(v);
  263. }
  264. this.isIndeterminate = Boolean(this.selectCard.length) && this.selectCard.length < this.cardList.length;
  265. this.checkAll = this.selectCard.length === this.cardList.length;
  266. },
  267. // 全选按钮
  268. handleCheckAllChange(val) {
  269. let cardTree = [];
  270. cardTree = this.cardTree.map((building) => {
  271. building?.floorList?.map((_floor) => {
  272. _floor?.planarGraphList?.map((card) => {
  273. card.checked = val;
  274. });
  275. return _floor;
  276. });
  277. return building;
  278. });
  279. this.cardTree = cardTree;
  280. if (val) {
  281. this.selectCard = this._.cloneDeep(this.cardList);
  282. } else {
  283. this.selectCard = [];
  284. }
  285. this.isIndeterminate = false;
  286. },
  287. // 批量移动到
  288. groupMove() {
  289. this.$refs.move.showDialog(this.selectCard);
  290. },
  291. // 批量下载
  292. groupDownload() {
  293. if (this.selectCard.length) {
  294. this.selectCard.forEach((t) => {
  295. this.download(t);
  296. });
  297. }
  298. },
  299. // 单独下载
  300. download(data) {
  301. if (data.pic) {
  302. SNetUtil.downLoad(data.name + ".png", this.imgUrl + data.pic);
  303. } else {
  304. // this.$message.warning(`${data.name}未绘制`)
  305. }
  306. },
  307. // 删除
  308. groupDelete() {
  309. this.$refs.deleteDialog.showDialog(this.selectCard);
  310. },
  311. // 重命名
  312. rename(data) {
  313. this.$refs.rename.showDialog(data);
  314. },
  315. // 移动到
  316. moveTo(data) {
  317. this.$refs.move.showDialog([data]);
  318. },
  319. // 单独删除
  320. deleteGraph(data) {
  321. this.$refs.deleteDialog.showDialog([data]);
  322. },
  323. // 更新成功-发布成功
  324. updateSuc() {
  325. this.queryGraph();
  326. },
  327. // 卡片移动事件
  328. moveSuc() {
  329. this.queryGraph();
  330. // this.$refs.leftAsideTree.getCategoryGraph();
  331. },
  332. // 删除成功
  333. deleteSuc() {
  334. this.queryGraph();
  335. // this.$refs.leftAsideTree.getCategoryGraph();
  336. },
  337. /**
  338. * 更改选中的文件夹
  339. */
  340. changeFolder(data) {
  341. console.log(data);
  342. // 清空搜索值
  343. this.queryText = "";
  344. // 如果没有文件夹数据,清空页面数据
  345. if (!data) {
  346. this.cardTree = [];
  347. this.cardList = [];
  348. this.folderId = "";
  349. return true;
  350. }
  351. this.folderId = data.id;
  352. this.folderName = data.name;
  353. this.queryGraph();
  354. },
  355. // 发布修改
  356. changePub() {
  357. this.queryGraph();
  358. },
  359. // 修改标签
  360. editTag(data) {
  361. this.$refs.tagDialog.showDialog(data);
  362. },
  363. // 输入内容变化
  364. changeQueryText() {
  365. this.queryGraph();
  366. },
  367. // 回收站点击
  368. showRecycleDialog() {
  369. this.$refs.recycle.showDialog();
  370. },
  371. // 回收站关闭
  372. recycleDialogClose() {
  373. this.queryGraph();
  374. this.$refs.leftAsideTree.getCategoryGraph();
  375. },
  376. /**
  377. * 跳转编辑器
  378. */
  379. toEdit(data, floorLocalName, infos) {
  380. const { name, id, graphId, buildingId, floorId, version, state } = data,
  381. { floorMap = "" } = infos,
  382. { folderId, folderName } = this;
  383. // 已发布
  384. if (state === "Publish") {
  385. return this.handlePubImgCard(id, graphId, floorLocalName, floorMap);
  386. }
  387. // 未发布,直接跳转编辑器
  388. this.$router.push({
  389. name: "Editer",
  390. query: {
  391. folderId,
  392. folderName,
  393. buildingId,
  394. floorId,
  395. floorLocalName,
  396. name,
  397. id,
  398. graphId,
  399. floorMap,
  400. version,
  401. },
  402. });
  403. },
  404. /**
  405. * 点击已发布卡片.逻辑处理:
  406. * 如果在未发布中,有当前已发布的图的草稿,使用改未发布的草稿进行跳转
  407. * 没有的话,调用保存接口,生成一张未发布的草稿,使用该草稿进行跳转
  408. *
  409. * @param {string} id 图id
  410. * @param {string} graphId 图graphId
  411. * @param {string} floorLocalName 楼层本地名称
  412. * @param {string} floorMap floorMap
  413. */
  414. async handlePubImgCard(id, graphId, floorLocalName, floorMap) {
  415. // 留 id,floorLocalName,floorMap
  416. const { folderId, folderName } = this;
  417. const postParams = {
  418. filters: `folderId='${folderId}';state='Draft';id='${id}'`,
  419. PageNumber: 1,
  420. PageSize: 1000,
  421. };
  422. const res = await planerQuery(postParams);
  423. if (res.result !== "success") {
  424. this.$message(res.result);
  425. }
  426. // 判断 未发布中,是否有该张图的备份草稿,
  427. let flag = false;
  428. let DraftPlanarGraph = "";
  429. if (res.content?.length) {
  430. flag = true;
  431. DraftPlanarGraph = res.content[0].floorList[0].planarGraphList[0];
  432. } else {
  433. flag = false;
  434. }
  435. // 未发布中有该张图的备份草稿
  436. if (flag) {
  437. // 点击确认后,会继续后续流程
  438. let confirmRes;
  439. try {
  440. confirmRes = await this.$confirm("未发布中有该张图,将使用未发布中的图进行编辑", "提示", {
  441. confirmButtonText: "确定",
  442. cancelButtonText: "取消",
  443. type: "warning",
  444. });
  445. } catch (error) {
  446. console.log("点击取消");
  447. }
  448. // 点击确定,跳转编辑器
  449. // 点击确定 confirmRes返回 confirm, 点击取消,confirmRes返回 undefined
  450. if (confirmRes) {
  451. console.log(DraftPlanarGraph);
  452. const { folderId, buildingId, floorId, id, graphId, name, version } = DraftPlanarGraph;
  453. this.finalToEdit({ folderId, folderName, buildingId, floorId, floorLocalName, name, id, graphId, floorMap, version });
  454. }
  455. } else {
  456. // 未发布中,没有该张图的备份草稿
  457. // 读取该已发布的图信息
  458. const readRes = await pubPlanerRead({ graphId, id });
  459. if (readRes.result !== "success") {
  460. this.$message(readRes.result);
  461. }
  462. // 保存该图,在未发布中,生成一张草稿
  463. const resSave = await planerSave(readRes.content);
  464. // 取出新建图的版本号
  465. if (resSave.result === "success") {
  466. const resSaveData = resSave.entityList[0];
  467. const { folderId, buildingId, floorId, name, id, graphId, version } = resSaveData;
  468. this.finalToEdit({ folderName, floorLocalName, folderId, buildingId, floorId, name, id, graphId, version, floorMap });
  469. } else {
  470. this.$message(resSave.result);
  471. }
  472. }
  473. },
  474. /**
  475. * 点击已发布,最终跳转编辑器
  476. */
  477. finalToEdit(query) {
  478. this.$router.push({ name: "Editer", query });
  479. },
  480. /**
  481. * 查询图形信息
  482. * @param { string } floderId 传入的文件ID,新建画布成功之后,会调用该接口
  483. * 如果传入floderId,使用该id,不传的话,使用全局的this.folderId
  484. */
  485. async queryGraph(floderId) {
  486. if (!(floderId || this.folderId)) {
  487. return false;
  488. }
  489. this.cardLoading = true;
  490. this.selectCard = [];
  491. // createTime: "2020-12-02 20:05:51"
  492. // id: "eba700e7ae7e452fb2341172d1350b77"
  493. // lastUpdate: "2020-12-02 20:05:51"
  494. // name: "能源系统"
  495. // projectId: "Pj1101050029"
  496. // statistics: {}
  497. const postParams = {
  498. filters: `folderId='${floderId || this.folderId}'`,
  499. PageNumber: 1,
  500. PageSize: 1000,
  501. };
  502. if (this.queryText) {
  503. postParams.filters += `;name contain '${this.queryText}'`;
  504. }
  505. /**
  506. * 已发布,未发布 1:已发布 0:未发布
  507. */
  508. let res;
  509. if (this.isPub) {
  510. res = await pubPlanerQuery(postParams);
  511. } else {
  512. // state Draft(未发布),state Recyle(回收站)
  513. postParams.filters += ";state='Draft'";
  514. res = await planerQuery(postParams);
  515. }
  516. if (res.result !== "success") {
  517. this.cardTree = [];
  518. this.cardList = [];
  519. this.cardLoading = false;
  520. return false;
  521. }
  522. let cardTree = [];
  523. const cardList = [];
  524. cardTree = res?.content?.map((building) => {
  525. building?.floorList?.map((_floor) => {
  526. _floor?.planarGraphList?.map((card) => {
  527. card.checked = false;
  528. // 保存建筑,楼层,卡片信息
  529. cardList.push({
  530. _buildingId: building.id,
  531. _buildingLocalId: building.localId,
  532. _buildingName: building.name,
  533. _buildingLocalName: building.localName,
  534. _floorId: _floor.id,
  535. _floorLocalId: _floor.localId,
  536. _floorName: _floor.name,
  537. _floorLocalName: _floor.localName,
  538. ...card,
  539. });
  540. return card;
  541. });
  542. return _floor;
  543. });
  544. return building;
  545. });
  546. this.cardTree = cardTree;
  547. this.cardList = cardList;
  548. this.cardLoading = false;
  549. },
  550. },
  551. watch: {
  552. // 排序方式修改
  553. selVal(n, o) {
  554. if (n === o) return;
  555. this.selText = this.dataSelect.find((d) => d.id === n).name;
  556. this.selectCard = [];
  557. this.queryGraph();
  558. },
  559. },
  560. };
  561. </script>
  562. <style lang="less" scoped>
  563. .home {
  564. width: 100%;
  565. height: 100%;
  566. .header {
  567. width: 100%;
  568. height: 60px;
  569. background: #f7f9fa;
  570. padding: 0 16px 0 16px;
  571. border-bottom: 1px solid #e4e5e7;
  572. box-sizing: border-box;
  573. display: flex;
  574. align-items: center;
  575. justify-content: space-between;
  576. }
  577. .bodys {
  578. width: 100%;
  579. height: calc(100% - 60px);
  580. .aside {
  581. .recycle {
  582. line-height: 48px;
  583. border-top: 1px solid #e4e5e7ff;
  584. box-sizing: border-box;
  585. background: #f7f9fa;
  586. padding-left: 16px;
  587. cursor: pointer;
  588. img {
  589. width: 16px;
  590. height: 16px;
  591. margin: -3px 8px 0 0;
  592. }
  593. }
  594. }
  595. .main {
  596. width: 100%;
  597. height: 100%;
  598. background: #fff;
  599. padding: 5px 20px;
  600. box-sizing: border-box;
  601. .main-head {
  602. position: relative;
  603. width: 100%;
  604. height: 46px;
  605. margin-bottom: 5px;
  606. .showType {
  607. width: 100%;
  608. padding: 7px 0;
  609. display: flex;
  610. align-items: center;
  611. justify-content: space-between;
  612. /deep/ .el-radio-button__orig-radio:checked + .el-radio-button__inner {
  613. color: #0091ff;
  614. border-color: #0091ff;
  615. background: #e1f2ff;
  616. }
  617. .head-right {
  618. display: flex;
  619. align-items: center;
  620. .Dropdown {
  621. min-width: 100px;
  622. margin-left: 20px;
  623. .drop-text {
  624. font-size: 14px;
  625. color: #1f2329;
  626. line-height: 16px;
  627. }
  628. }
  629. }
  630. }
  631. .showAction {
  632. background: #e1f2ff;
  633. border-radius: 4px;
  634. border: 1px solid #82c7fc;
  635. padding: 8px;
  636. span.sum {
  637. margin: 0 10px;
  638. color: #778089;
  639. }
  640. }
  641. }
  642. .main-body {
  643. display: block;
  644. height: calc(100% - 51px);
  645. overflow: auto;
  646. .has-data-body {
  647. // 建筑样式
  648. .building {
  649. // 建筑名称
  650. .buinding-name {
  651. display: flex;
  652. align-items: center;
  653. height: 30px;
  654. font-size: 16px;
  655. font-family: MicrosoftYaHei;
  656. color: #1f2329;
  657. line-height: 30px;
  658. margin-bottom: 12px;
  659. // 左边框竖线
  660. span.border-left {
  661. display: inline-block;
  662. width: 2px;
  663. height: 20px;
  664. background: #0091ff;
  665. margin-right: 4px;
  666. }
  667. }
  668. // 楼层样式
  669. .floor {
  670. // padding-left: 9px;
  671. display: flex;
  672. flex-wrap: wrap;
  673. padding-left: 20px;
  674. .floor-name {
  675. position: relative;
  676. left: -12px;
  677. width: 100%;
  678. height: 31px;
  679. font-size: 16px;
  680. font-family: PingFangSC-Regular, PingFang SC;
  681. font-weight: 400;
  682. color: #646c73;
  683. line-height: 31px;
  684. margin-bottom: 8px;
  685. }
  686. }
  687. }
  688. }
  689. .no-data-body {
  690. display: flex;
  691. flex-direction: column;
  692. // justify-content: center;
  693. align-items: center;
  694. }
  695. }
  696. }
  697. }
  698. .create-dialog {
  699. .dialog-bodys {
  700. width: 367px;
  701. margin: 0 auto;
  702. }
  703. }
  704. .create-dialog-inner {
  705. .inner-dialog-body {
  706. width: 100%;
  707. display: flex;
  708. .left {
  709. flex: 1;
  710. border-right: 1px solid #ccc;
  711. }
  712. }
  713. }
  714. }
  715. </style>
  716. <style lang="less">
  717. .createPopper.el-popover {
  718. background: #0091ffff;
  719. color: #fff;
  720. border-color: #0091ffff;
  721. .el-button {
  722. background: #ffffff;
  723. border-radius: 4px;
  724. padding: 5px 8px;
  725. }
  726. .popper__arrow::after {
  727. border-bottom-color: #0091ffff;
  728. }
  729. }
  730. </style>