home.vue 28 KB

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