index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930
  1. <template>
  2. <div class="airportInfoDetails">
  3. <Minheader
  4. :is-auth="true"
  5. :is-statuser="true"
  6. powerData="new_airport_button"
  7. @addForm="addForm"
  8. >
  9. <template #header>
  10. <div class="status flex-wrap">
  11. <div class="manageTitle">机场信息维护</div>
  12. </div>
  13. </template>
  14. </Minheader>
  15. <div class="airportInfo-content">
  16. <el-row :gutter="24">
  17. <el-col :span="6" style="background: #fff">
  18. <div class="tree_left">
  19. <el-scrollbar style="height: 100%">
  20. <div class="corporate">{{ company }}</div>
  21. <el-tree
  22. :data="data"
  23. :props="defaultProps"
  24. accordion
  25. @node-click="handleNodeClick"
  26. >
  27. </el-tree>
  28. </el-scrollbar>
  29. </div>
  30. </el-col>
  31. <el-col :span="18">
  32. <div class="app-containers">
  33. <DataTable
  34. :btnGroupWidth="btnGroupWidth"
  35. :tableHeader="tableCols"
  36. :tableData="tableData"
  37. :tableBtnGroup="tableBtnGroup"
  38. :tableProperty="{ rowKey: 'ID' }"
  39. @btnClick="btnClick"
  40. />
  41. </div>
  42. </el-col>
  43. </el-row>
  44. </div>
  45. <Dialog
  46. width="600px"
  47. :flag="flag"
  48. :type="type"
  49. :msgTitle="msgTitle"
  50. :delName="tableForm.airportName"
  51. @resetForm="resetForm"
  52. @delRest="delRest"
  53. @submitForm="submitForm"
  54. @delRemove="delRemove"
  55. >
  56. <div class="diacont">
  57. <el-form :model="tableForm" :rules="formRules" ref="airportInfoForm">
  58. <el-row :gutter="24">
  59. <el-col :span="12">
  60. <el-form-item
  61. label="机场ID"
  62. size="default"
  63. prop="airportID"
  64. :rules="formRules.isNotNull"
  65. >
  66. <el-input
  67. v-model="tableForm.airportID"
  68. placeholder="请输入机场ID"
  69. />
  70. </el-form-item>
  71. </el-col>
  72. <el-col :span="12">
  73. <el-form-item
  74. label="中文全称"
  75. size="default"
  76. prop="airportName"
  77. :rules="formRules.isNotNull"
  78. >
  79. <el-input
  80. v-model="tableForm.airportName"
  81. placeholder="请输入机场名称"
  82. />
  83. </el-form-item>
  84. </el-col>
  85. <el-col :span="12">
  86. <el-form-item
  87. label="中文简称"
  88. size="default"
  89. prop="abbreviation"
  90. :rules="formRules.isNotNull"
  91. >
  92. <el-input
  93. v-model="tableForm.abbreviation"
  94. placeholder="请输入中文简称"
  95. />
  96. </el-form-item>
  97. </el-col>
  98. <el-col :span="12">
  99. <el-form-item label="英文简称" size="default">
  100. <el-input
  101. v-model="tableForm.englishAbbreviation"
  102. placeholder="请输入英文简称"
  103. />
  104. </el-form-item>
  105. </el-col>
  106. <el-col :span="12">
  107. <el-form-item label="英文全称" size="default">
  108. <el-input
  109. v-model="tableForm.fullName"
  110. placeholder="请输入英文全称"
  111. />
  112. </el-form-item>
  113. </el-col>
  114. <el-col :span="12">
  115. <el-form-item
  116. label="三字码"
  117. size="default"
  118. prop="IATACode"
  119. :rules="formRules.isNotNull"
  120. >
  121. <el-input
  122. v-model="tableForm.IATACode"
  123. placeholder="请输入三字码"
  124. />
  125. </el-form-item>
  126. </el-col>
  127. <el-col :span="12">
  128. <el-form-item
  129. label="四字码"
  130. size="default"
  131. prop="ICAOCode"
  132. :rules="formRules.isNotNull"
  133. >
  134. <el-input
  135. v-model="tableForm.ICAOCode"
  136. placeholder="请输入四字码"
  137. />
  138. </el-form-item>
  139. </el-col>
  140. <el-col :span="12">
  141. <el-form-item
  142. label="时区"
  143. size="default"
  144. prop="airportTimeZone"
  145. :rules="formRules.isNotNull"
  146. >
  147. <!-- <el-input v-model="tableForm.china" /> -->
  148. <el-select
  149. style="width: 100%"
  150. v-model="tableForm.airportTimeZone"
  151. class="input-shadow"
  152. filterable
  153. default-first-option
  154. clearable
  155. placeholder="请选择时区"
  156. >
  157. <el-option
  158. v-for="item in tableOptionser"
  159. :key="item.v ? item.v : item.planDepartureApt"
  160. :label="item.k ? item.k : item.planDepartureApt"
  161. :value="item.v ? item.v : item.planDepartureApt"
  162. >
  163. </el-option>
  164. </el-select>
  165. </el-form-item>
  166. </el-col>
  167. <el-col :span="12">
  168. <el-form-item
  169. label="公司名称"
  170. size="default"
  171. prop="companyName"
  172. :rules="formRules.isNotNull"
  173. >
  174. <el-input
  175. disabled
  176. v-model="tableForm.companyName"
  177. placeholder="请输入公司名称"
  178. />
  179. </el-form-item>
  180. </el-col>
  181. <el-col :span="12">
  182. <el-form-item
  183. label="公司ID"
  184. size="default"
  185. prop="companyID"
  186. :rules="formRules.isNotNull"
  187. >
  188. <el-input
  189. disabled
  190. v-model="tableForm.companyID"
  191. placeholder="请输入公司ID"
  192. />
  193. </el-form-item>
  194. </el-col>
  195. <el-col :span="24">
  196. <el-form-item label="备注" size="default">
  197. <el-input
  198. type="textarea"
  199. v-model="tableForm.remarks"
  200. placeholder="请输入备注"
  201. />
  202. </el-form-item>
  203. </el-col>
  204. </el-row>
  205. </el-form>
  206. </div>
  207. </Dialog>
  208. </div>
  209. </template>
  210. <script setup lang="ts">
  211. import DataTable from "@/components/tableTemp/index.vue";
  212. import Dialog from "@/components/dialog/index.vue";
  213. import { translateDataToTreeAll } from "@/utils/validate";
  214. import { Query, GeneralDataReception } from "@/api/webApi";
  215. import { ElMessage } from "element-plus";
  216. import Cookies from "js-cookie";
  217. const formRules = useElement().formRules;
  218. const router = useRouter();
  219. const tableBtnGroup = ref<any>([
  220. {
  221. name: "编辑",
  222. className: "editBtn",
  223. param: 2,
  224. is: "airport_editor_button",
  225. },
  226. {
  227. name: "区域设置",
  228. className: "editBtn",
  229. param: 4,
  230. is: "terminal_setting_page",
  231. },
  232. {
  233. name: "删除",
  234. className: "delBtn",
  235. param: 3,
  236. is: "airport_deletion_button",
  237. },
  238. ]); //单独的编辑
  239. const page = ref<number>(0); //分页参数
  240. const dataContent = ref<object>({});
  241. const noMore = ref<boolean>(false);
  242. const rowTitle = ref<string>("");
  243. const tableCols = ref<any>([]); //表头数据
  244. const serviceId = ref<any>("");
  245. const tableObj = ref({}); //增删改数据缓存
  246. const defaultProps = ref({
  247. children: "children",
  248. label: "companyName",
  249. });
  250. const companyID = ref(""); //机场id
  251. const btnGroupWidth = ref<string>("");
  252. const flag = ref<boolean>(false); //弹窗开关
  253. const type = ref<string>(""); //判断是否删除
  254. const msgTitle = ref<string>("新增机场信息维护"); //弹窗标题
  255. const tableOptionser = ref<any>([
  256. {
  257. k: "UTC",
  258. v: "1",
  259. },
  260. {
  261. k: "UTC+1",
  262. v: "+1",
  263. },
  264. {
  265. k: "UTC+2",
  266. v: "+2",
  267. },
  268. {
  269. k: "UTC+3",
  270. v: "+3",
  271. },
  272. {
  273. k: "UTC+4",
  274. v: "+4",
  275. },
  276. {
  277. k: "UTC+5",
  278. v: "+5",
  279. },
  280. {
  281. k: "UTC+6",
  282. v: "+6",
  283. },
  284. {
  285. k: "UTC+7",
  286. v: "+7",
  287. },
  288. {
  289. k: "UTC+8",
  290. v: "+8",
  291. },
  292. {
  293. k: "UTC+9",
  294. v: "+9",
  295. },
  296. {
  297. k: "UTC+10",
  298. v: "+10",
  299. },
  300. {
  301. k: "UTC+11",
  302. v: "+11",
  303. },
  304. {
  305. k: "UTC-1",
  306. v: "-1",
  307. },
  308. {
  309. k: "UTC-2",
  310. v: "-2",
  311. },
  312. {
  313. k: "UTC-3",
  314. v: "-3",
  315. },
  316. {
  317. k: "UTC-4",
  318. v: "-4",
  319. },
  320. {
  321. k: "UTC-5",
  322. v: "-5",
  323. },
  324. {
  325. k: "UTC-6",
  326. v: "-6",
  327. },
  328. {
  329. k: "UTC-7",
  330. v: "-7",
  331. },
  332. {
  333. k: "UTC-8",
  334. v: "-8",
  335. },
  336. {
  337. k: "UTC-9",
  338. v: "-9",
  339. },
  340. {
  341. k: "UTC-10",
  342. v: "-10",
  343. },
  344. {
  345. k: "UTC-11",
  346. v: "-11",
  347. },
  348. ]); //弹窗下拉
  349. const tableColsCopys = reactive<Object>({}); //弹窗
  350. const tableForm = reactive<any>({
  351. airportID: "",
  352. airportName: "",
  353. IATACode: "",
  354. ICAOCode: "",
  355. abbreviation: "",
  356. englishAbbreviation: "",
  357. fullName: "",
  358. companyID: "",
  359. airportTimeZone: "",
  360. companyName: "",
  361. remarks: "",
  362. event: "",
  363. }); //弹窗内容
  364. const tableColumnProperty = reactive({
  365. width: "120px",
  366. fixed: "",
  367. sortable: false,
  368. showOverflowTooltip: false,
  369. align: "center",
  370. headerAlign: "",
  371. }); //弹窗内容
  372. //列表
  373. const tableData = ref<any>([]);
  374. //表头
  375. const state = reactive({
  376. list: [
  377. { label: "名称", key: "name" },
  378. { label: "三字码", key: "china" },
  379. { label: "四字码", key: "englin" },
  380. { label: "中文简称", key: "two" },
  381. { label: "英文简称", key: "three" },
  382. { label: "全称", key: "text" },
  383. { label: "时区", key: "text1" },
  384. { label: "公司名称", key: "text2" },
  385. ],
  386. listLoading: true,
  387. });
  388. const company = ref("所属公司");
  389. const data = ref([]);
  390. //新增
  391. const addForm = () => {
  392. msgTitle.value = "新增机场信息维护";
  393. flag.value = true;
  394. type.value = "";
  395. for (const key in tableForm) {
  396. tableForm[key] = "";
  397. }
  398. tableForm.event = 1;
  399. tableForm.companyID = companyID;
  400. };
  401. //取消
  402. const resetForm = () => {
  403. airportInfoForm.value?.resetFields();
  404. flag.value = false;
  405. // tableForm.airportID = "";
  406. // tableForm.airportName = "";
  407. // tableForm.IATACode = "";
  408. // tableForm.ICAOCode = "";
  409. // tableForm.abbreviation = "";
  410. // tableForm.englishAbbreviation = "";
  411. // tableForm.fullName = "";
  412. // tableForm.companyID = "";
  413. // tableForm.airportTimeZone = "";
  414. // tableForm.companyName = "";
  415. // tableForm.event = "";
  416. // tableForm.remarks = "";
  417. };
  418. //编辑
  419. const editDialog = (data) => {
  420. msgTitle.value = "编辑机场信息维护";
  421. flag.value = true;
  422. type.value = "";
  423. tableForm.name = data.name;
  424. tableForm.china = data.china;
  425. tableForm.englin = data.englin;
  426. tableForm.two = data.two;
  427. tableForm.three = data.three;
  428. tableForm.text = data.text;
  429. tableForm.text1 = data.text1;
  430. tableForm.text2 = data.text2;
  431. };
  432. //删除
  433. const eleDialog = () => {
  434. msgTitle.value = "删除机场信息维护";
  435. flag.value = true;
  436. type.value = "del";
  437. };
  438. //删除取消
  439. const delRest = () => {
  440. flag.value = false;
  441. };
  442. //区域跳转
  443. const aloneDialog = () => {
  444. router.push({ path: "/BasicsData/airportInfoChild" });
  445. };
  446. //编辑-删除
  447. const btnClick = (row, index, param) => {
  448. if (param === 2) {
  449. msgTitle.value = "编辑机场信息维护";
  450. flag.value = true;
  451. type.value = "";
  452. for (const key in index) {
  453. tableForm[key] = index[key];
  454. }
  455. tableForm.event = 2;
  456. } else if (param === 3) {
  457. msgTitle.value = "删除机场信息维护";
  458. flag.value = true;
  459. type.value = "del";
  460. tableForm.event = 3;
  461. for (const key in index) {
  462. tableForm[key] = index[key];
  463. }
  464. if (tableForm.companyName != undefined) {
  465. delete tableForm.companyName;
  466. }
  467. } else if (param === 4) {
  468. Cookies.set("IATACode", index.IATACode);
  469. Cookies.set("abbreviation", index.abbreviation);
  470. router.push({
  471. path: "/BasicsData/airportInfoChild",
  472. query: {
  473. IATACode: index.IATACode,
  474. abbreviation: index.abbreviation,
  475. },
  476. });
  477. }
  478. };
  479. //点击树事件
  480. const handleNodeClick = (data) => {
  481. // console.log(data);
  482. company.value = data.companyName;
  483. tableForm.companyName = data.companyName;
  484. companyID.value = data.companyID;
  485. tableData.value = [];
  486. page.value = 0;
  487. getQuery();
  488. };
  489. //获取表格数据
  490. const getQuery = async () => {
  491. try {
  492. const { code, returnData } = await Query({
  493. id: DATACONTENT_ID.airportTableId,
  494. needPage: ++page.value,
  495. dataContent: [JSON.stringify(companyID.value)],
  496. });
  497. if (code === "0") {
  498. if (returnData.listValues.length === 0) {
  499. page.value--;
  500. noMore.value = true;
  501. }
  502. const titleColumn = returnData.columnSet.find(
  503. (item) => item.needShow == 1
  504. );
  505. if (titleColumn) {
  506. rowTitle.value = titleColumn.columnName;
  507. }
  508. tableData.value.push(...returnData.listValues);
  509. if (returnData.columnSet) {
  510. btnGroupWidth.value = "300px";
  511. } else {
  512. btnGroupWidth.value = "";
  513. }
  514. tableCols.value = returnData.columnSet;
  515. tableCols.value.forEach((element) => {
  516. element.label = element.columnLabel;
  517. element.key = element.columnName;
  518. // if (element.columnName === "queryTemplate") {
  519. // element.width = "300px";
  520. // }
  521. });
  522. serviceId.value = returnData.submitID;
  523. } else {
  524. page.value--;
  525. }
  526. } catch (error) {
  527. page.value--;
  528. }
  529. };
  530. //公司列表
  531. const getAirlines = async () => {
  532. try {
  533. const res = await Query({
  534. id: DATACONTENT_ID.airportTreeId,
  535. dataContent: [],
  536. });
  537. if (res.code === "0") {
  538. let arr: any = [];
  539. arr = translateDataToTreeAll(
  540. res.returnData.listValues,
  541. "parentID",
  542. "companyID"
  543. );
  544. data.value = arr;
  545. companyID.value = data.value[0].companyID;
  546. company.value = data.value[0].companyName;
  547. tableForm.companyName = data.value[0].companyName;
  548. getQuery();
  549. // if (!company.length) {
  550. // company.value = arr[0].companyID;
  551. // company.value = arr[0].companyName;
  552. // }
  553. } else {
  554. // this.$message.error(res.message ?? "失败");
  555. }
  556. } catch (error) {
  557. // this.$message.error("失败");
  558. }
  559. };
  560. //确认提交
  561. const airportInfoForm: any = ref(null);
  562. const submitForm = () => {
  563. airportInfoForm.value.validate((valid: any) => {
  564. if (valid) {
  565. generalDataReception(tableForm);
  566. } else {
  567. return false;
  568. }
  569. });
  570. };
  571. const resetTable = () => {
  572. page.value = 0;
  573. noMore.value = false;
  574. tableData.value = [];
  575. };
  576. //新增-编辑-删除
  577. const generalDataReception = async (data) => {
  578. try {
  579. data = {
  580. ...data,
  581. };
  582. const { code } = await GeneralDataReception({
  583. serviceId: serviceId.value,
  584. dataContent: JSON.stringify(data),
  585. });
  586. if (code == 0) {
  587. ElMessage.success(`操作成功`);
  588. // this.$message.success("操作成功");
  589. resetTable();
  590. getQuery();
  591. resetForm();
  592. flag.value = false;
  593. // rmFlag.value = false;
  594. tableObj.value = {};
  595. // this.$router.go(0);
  596. } else {
  597. ElMessage.error(`操作失败`);
  598. // this.$message.error("操作失败");
  599. // this.flag = false;
  600. // this.rmFlag = false;
  601. tableObj.value = {};
  602. resetForm();
  603. }
  604. } catch (error) {
  605. flag.value = false;
  606. // rmFlag.value = false;
  607. tableObj.value = {};
  608. resetForm();
  609. }
  610. };
  611. const delRemove = () => {
  612. tableForm.event = 3;
  613. generalDataReception(tableForm);
  614. };
  615. getAirlines();
  616. </script>
  617. <style lang="scss" scoped>
  618. ::v-deep .el-form-item__label {
  619. width: 80px;
  620. }
  621. .airportInfoDetails {
  622. .airportInfoDetails-head {
  623. padding: 32px 40px 0px 32px;
  624. background: #ffffff;
  625. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  626. border-radius: 4px;
  627. .airportInfoDetails-head-content {
  628. margin-top: 30px;
  629. .el-input {
  630. min-width: 240px;
  631. }
  632. .el-form--inline .el-form-item {
  633. margin-bottom: 24px;
  634. margin-right: 50px;
  635. }
  636. }
  637. }
  638. .corporate {
  639. margin-top: 24px;
  640. margin-left: 24px;
  641. margin-bottom: 23px;
  642. font-size: 16px;
  643. font-family: Microsoft YaHei;
  644. font-weight: bold;
  645. color: #101116;
  646. }
  647. .log {
  648. width: 26px;
  649. height: 26px;
  650. background: #eb2f3b;
  651. border-radius: 50%;
  652. margin-right: 15px;
  653. background: url("../../../../assets/index/ic_close_hint.png") no-repeat;
  654. background-size: 100% 100%;
  655. }
  656. .airportInfoDialog {
  657. ::v-deep .el-form-item__content {
  658. margin-left: 120px !important;
  659. }
  660. ::v-deep .el-form-item__label {
  661. width: 120px !important;
  662. }
  663. ::v-deep .el-form-item {
  664. margin-bottom: 20px;
  665. }
  666. }
  667. .airportInfo-content {
  668. margin-top: 30px;
  669. img {
  670. margin: 0 auto;
  671. margin-top: 10%;
  672. display: -webkit-box;
  673. -webkit-box-pack: center;
  674. -webkit-box-align: center;
  675. -webkit-box-orient: vertical;
  676. text-align: center;
  677. }
  678. .grid-content {
  679. padding: 24px;
  680. margin-bottom: 24px;
  681. height: 144px;
  682. .edit_log {
  683. position: relative;
  684. // top: -2px;
  685. }
  686. .icon {
  687. cursor: pointer;
  688. }
  689. .desc {
  690. margin-top: 60px;
  691. font-size: 14px;
  692. font-family: Microsoft YaHei;
  693. font-weight: 400;
  694. color: #afb4bf;
  695. overflow: hidden;
  696. text-overflow: ellipsis;
  697. white-space: nowrap;
  698. }
  699. }
  700. }
  701. ::v-deep .el-input__suffix {
  702. right: 30px;
  703. }
  704. ::v-deep .el-input__inner {
  705. height: 32px;
  706. border-radius: 2px;
  707. }
  708. .flxdes {
  709. padding: 10px 0px 10px 20px;
  710. font-size: 16px;
  711. font-family: Microsoft YaHei;
  712. font-weight: bold;
  713. height: 36px;
  714. background: #eb2f3b;
  715. color: #ffffff;
  716. margin-bottom: 46px;
  717. width: 100%;
  718. }
  719. .airportInfoDetails-content {
  720. height: 60vh;
  721. overflow-x: hidden;
  722. overflow-y: auto;
  723. padding: 32px 0x 0 0;
  724. // background: #ffffff;
  725. // box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  726. border-radius: 4px;
  727. // margin-top: 24px;
  728. .terminal-info {
  729. margin-top: 20px;
  730. margin-bottom: 20px;
  731. .terminal-info-add {
  732. width: 216px;
  733. height: 120px;
  734. background: #f5f7fa;
  735. border: 1px dashed #d7dae3;
  736. border-radius: 8px;
  737. display: flex;
  738. justify-content: center;
  739. align-items: center;
  740. cursor: pointer;
  741. .icon {
  742. font-size: 31px;
  743. color: #d7dae3;
  744. }
  745. }
  746. .terminal-info-team {
  747. .terminal-info-list {
  748. width: 216px;
  749. height: 120px;
  750. margin-bottom: 24px;
  751. background: #f5f7fa;
  752. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  753. border-radius: 8px;
  754. padding: 24px;
  755. position: relative;
  756. margin-right: 24px;
  757. cursor: pointer;
  758. .name {
  759. font-size: 18px;
  760. font-family: Microsoft YaHei;
  761. font-weight: bold;
  762. color: #303133;
  763. white-space: nowrap;
  764. overflow: hidden;
  765. text-overflow: ellipsis;
  766. }
  767. .edit {
  768. margin-top: 32px;
  769. .round {
  770. display: inline-block;
  771. width: 28px;
  772. height: 28px;
  773. background: #6e82a7;
  774. border-radius: 50%;
  775. line-height: 28px;
  776. text-align: center;
  777. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  778. display: flex;
  779. align-items: center;
  780. justify-content: center;
  781. position: absolute;
  782. right: 0;
  783. i {
  784. color: #fff;
  785. }
  786. }
  787. }
  788. .close {
  789. width: 24px;
  790. height: 24px;
  791. background: #000000;
  792. opacity: 0.8;
  793. border-radius: 50%;
  794. position: absolute;
  795. right: -12px;
  796. line-height: 24px;
  797. text-align: center;
  798. top: -12px;
  799. i {
  800. color: #fff;
  801. }
  802. }
  803. &:last-child {
  804. margin-right: 0;
  805. }
  806. }
  807. .active {
  808. border: 2px solid #9ebbf7;
  809. .name {
  810. color: #fff;
  811. }
  812. .edit {
  813. .round {
  814. background: #fff;
  815. i {
  816. color: #6e82a7;
  817. }
  818. }
  819. }
  820. }
  821. }
  822. }
  823. .locationBox {
  824. // padding: 0 0 0 32px;
  825. // background: #ffffff;
  826. margin-top: 30px;
  827. }
  828. .LBox {
  829. display: flex;
  830. flex-wrap: wrap;
  831. width: 100%;
  832. margin-top: 40px;
  833. margin-bottom: 20px;
  834. }
  835. .lbox-add {
  836. width: 100%;
  837. height: 144px;
  838. background: #f5f7fa;
  839. border: 1px dashed #9ebbf7;
  840. border-radius: 8px;
  841. display: flex;
  842. justify-content: center;
  843. align-items: center;
  844. cursor: pointer;
  845. .icon {
  846. font-size: 31px;
  847. color: #9ebbf7;
  848. }
  849. }
  850. .forBox {
  851. width: 230px;
  852. height: 120px;
  853. margin-bottom: 24px;
  854. background: #f5f7fa;
  855. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  856. border-radius: 8px;
  857. padding: 24px;
  858. position: relative;
  859. margin-right: 24px;
  860. cursor: pointer;
  861. .name {
  862. font-size: 18px;
  863. font-family: Microsoft YaHei;
  864. font-weight: bold;
  865. color: #303133;
  866. white-space: nowrap;
  867. overflow: hidden;
  868. text-overflow: ellipsis;
  869. }
  870. .edit {
  871. margin-top: 32px;
  872. .round {
  873. display: inline-block;
  874. width: 28px;
  875. height: 28px;
  876. // background: #f5f7fa;
  877. border-radius: 50%;
  878. line-height: 28px;
  879. text-align: center;
  880. // box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  881. display: flex;
  882. align-items: center;
  883. justify-content: center;
  884. position: absolute;
  885. right: 20px;
  886. i {
  887. color: #fff;
  888. }
  889. }
  890. }
  891. .close {
  892. width: 24px;
  893. height: 24px;
  894. background: #000000;
  895. opacity: 0.8;
  896. border-radius: 50%;
  897. position: absolute;
  898. right: -12px;
  899. line-height: 24px;
  900. text-align: center;
  901. top: -12px;
  902. i {
  903. color: #fff;
  904. }
  905. }
  906. &:last-child {
  907. margin-right: 0;
  908. }
  909. }
  910. .active {
  911. // background: #6e82a7;
  912. border: 2px solid #9ebbf7;
  913. .name {
  914. // color: #fff;
  915. }
  916. .edit {
  917. .round {
  918. background: #fff;
  919. i {
  920. color: #6e82a7;
  921. }
  922. }
  923. }
  924. }
  925. }
  926. }
  927. </style>