index.vue 21 KB

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