index.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952
  1. <template>
  2. <div class="base-container">
  3. <fnHeader></fnHeader>
  4. <div class="top-bg"></div>
  5. <el-upload
  6. ref="uploadRef"
  7. class="upload-demo"
  8. :limit="1"
  9. :on-exceed="handleExceed"
  10. :on-success="onSuccess"
  11. :before-upload="beforeUpload"
  12. action="https://feiniaotech-dev.sysuimars.cn/site/plugin_ownership/uploadFile"
  13. :headers="headerUpload"
  14. >
  15. <template #trigger>
  16. <div class="btn blue" :class="{ 'disabled-button': !disabledForm && isEdit }">
  17. <el-icon><Upload /></el-icon>
  18. <span>RTK点位数据导入</span>
  19. </div>
  20. </template>
  21. </el-upload>
  22. <div class="top">
  23. <!-- <div class="back btn" @click="goBack">
  24. <img class="icon" src="@/assets/images/common/back-icon.png" alt="" />
  25. <span>返回</span>
  26. </div> -->
  27. <el-select
  28. v-model="locationVal"
  29. filterable
  30. remote
  31. :disabled="!disabledForm && isEdit"
  32. effect="dark"
  33. reserve-keyword
  34. placeholder="搜索地区"
  35. :remote-method="remoteMethod"
  36. :loading="loading"
  37. @change="handleSearchRes"
  38. class="v-select"
  39. >
  40. <template #prefix>
  41. <el-icon class="el-input__icon"><search /></el-icon>
  42. </template>
  43. <el-option
  44. v-for="(item, index) in locationOptions.list"
  45. :key="index"
  46. :label="item.title"
  47. :value="item.point"
  48. >
  49. <span>{{ item.title }}</span>
  50. <span class="sub-title">{{ item.province }}{{ item.city }}{{ item.district }}</span>
  51. </el-option>
  52. </el-select>
  53. <div class="search">
  54. <div class="add btn" :class="{ 'disabled-button': !disabledForm && isEdit }" @click="handleAdd">
  55. <el-icon><Plus /></el-icon>
  56. <span>创建</span>
  57. </div>
  58. <div class="upload btn" :class="{ 'disabled-button': !disabledForm && isEdit }" @click="handleExport">
  59. <img class="icon" src="@/assets/images/common/back-icon.png" alt="" />
  60. <span>导出</span>
  61. </div>
  62. </div>
  63. </div>
  64. <div class="content">
  65. <el-form :inline="true" :model="formInlineSearch" class="search-form" ref="formInlineRef">
  66. <el-form-item label="农场地址">
  67. <el-input v-model="formInlineSearch.address" placeholder="请输入农场地址" clearable />
  68. </el-form-item>
  69. <el-form-item label="农场名称">
  70. <el-input v-model="formInlineSearch.farmName" placeholder="请输入农场名称" clearable />
  71. </el-form-item>
  72. <el-form-item label="作物物种">
  73. <el-input v-model="formInlineSearch.speciesTypeName" placeholder="请输入作物物种" clearable />
  74. </el-form-item>
  75. <el-form-item label="客户姓名">
  76. <el-input v-model="formInlineSearch.masterName" placeholder="请输入客户姓名" clearable />
  77. </el-form-item>
  78. <el-form-item label="联系电话">
  79. <el-input v-model="formInlineSearch.masterTel" placeholder="请输入联系电话" clearable />
  80. </el-form-item>
  81. <div class="button">
  82. <el-button
  83. class="btn"
  84. :class="{ 'disabled-button': !disabledForm && isEdit }"
  85. type="primary"
  86. @click="onSearch"
  87. >查询</el-button
  88. >
  89. <el-button class="btn reset" :class="{ 'disabled-button': !disabledForm && isEdit }" @click="onRest"
  90. >重置</el-button
  91. >
  92. </div>
  93. </el-form>
  94. <div class="box">
  95. <div class="map-box" :class="{ 'cursor-pointer': mouseStyle }">
  96. <div ref="mapRef" class="map"></div>
  97. </div>
  98. <div class="tool-group">
  99. <!-- <div class="btn" @click="handleCancel" v-show="isEdit&&mapData.point">
  100. <img
  101. class="icon"
  102. src="@/assets/images/common/back-black-icon.png"
  103. alt=""
  104. />
  105. <span>撤销</span>
  106. </div> -->
  107. <div class="btn" @click="handleDeletePoint" v-show="mapData.selectPointArr.length > 0 && isEdit">
  108. <el-icon size="15"><CloseBold /></el-icon>
  109. <span>删除点</span>
  110. </div>
  111. <div class="btn delete" @click="handleDelete" v-show="mapData.selectPointArr.length > 0">
  112. <el-icon size="15" color="#fff"><CloseBold /></el-icon>
  113. <span>删除地块</span>
  114. </div>
  115. </div>
  116. <div class="edit-popup" v-show="isEdit">
  117. <div class="edit-title">
  118. <div class="name">
  119. <img src="@/assets/images/common/chart-icon.png" alt="" />
  120. <span>地块属性</span>
  121. </div>
  122. <div class="btn-group">
  123. <div v-show="disabledForm" class="edit" @click="handleEdit">编辑</div>
  124. <div
  125. v-show="mapData.selectPointArr.length > 0"
  126. class="edit ml"
  127. :class="{ 'disabled-button': !disabledForm }"
  128. @click="handlePrint"
  129. >
  130. 打印
  131. </div>
  132. </div>
  133. </div>
  134. <div class="edit-cont">
  135. <el-form
  136. :inline="true"
  137. ref="ruleFormRef"
  138. :disabled="disabledForm"
  139. :model="formInline"
  140. :rules="rules"
  141. label-position="top"
  142. class="form-inline"
  143. >
  144. <el-form-item label="农场地址" prop="address">
  145. <el-input v-model="formInline.address" placeholder="请输入农场地址" clearable />
  146. </el-form-item>
  147. <el-form-item label="农场名称" prop="farmName">
  148. <el-input v-model="formInline.farmName" placeholder="请输入农场名称" clearable />
  149. </el-form-item>
  150. <el-form-item label="创建时间">
  151. <el-input v-model="formInline.createDate" clearable disabled />
  152. </el-form-item>
  153. <el-form-item label="农场面积">
  154. <el-input v-model="formInline.mu" disabled clearable />
  155. </el-form-item>
  156. <el-form-item label="作物物种" prop="speciesTypeName">
  157. <el-input v-model="formInline.speciesTypeName" placeholder="请输入作物物种" clearable />
  158. </el-form-item>
  159. <el-form-item label="客户姓名" prop="masterName">
  160. <el-input v-model="formInline.masterName" placeholder="请输入姓名" clearable />
  161. </el-form-item>
  162. <el-form-item label="联系电话" prop="masterTel">
  163. <el-input v-model="formInline.masterTel" placeholder="请输入联系电话" clearable />
  164. </el-form-item>
  165. </el-form>
  166. <div class="list-box" v-show="pointList.length > 0">
  167. <span>边界点经纬度</span>
  168. <div class="list-cont">
  169. <div class="list-item" v-for="(item, index) in pointList" :key="index">
  170. <span>A{{ index + 1 }}</span>
  171. <div class="item-box">北纬{{ item[1] }}</div>
  172. <div class="item-box">东经{{ item[0] }}</div>
  173. </div>
  174. </div>
  175. </div>
  176. </div>
  177. <div class="edit-footer">
  178. <div @click="onCancel" class="btn cancel">取消</div>
  179. <div @click="onSubmit" class="btn save">保存</div>
  180. </div>
  181. </div>
  182. </div>
  183. </div>
  184. </div>
  185. <!-- 导出弹窗 -->
  186. <el-dialog v-model="dialogVisible" width="82%" center :show-close="false" modal-class="dialog-dark">
  187. <div>
  188. <el-table :data="gridData" border max-height="600" class="table-dark">
  189. <el-table-column property="farmName" label="农场名称" show-overflow-tooltip />
  190. <el-table-column property="address" label="农场地址" width="230" show-overflow-tooltip />
  191. <el-table-column property="createDate" label="创建时间" width="170" />
  192. <el-table-column property="mu" label="农场面积">
  193. <template #default="scope">
  194. <span>{{ scope.row.mu }}亩</span>
  195. </template>
  196. </el-table-column>
  197. <el-table-column property="speciesTypeName" label="作物物种" />
  198. <el-table-column property="masterName" label="客户姓名" />
  199. <el-table-column property="masterTel" width="120" label="联系电话" />
  200. <el-table-column property="points" label="边界点经纬度" width="480" show-overflow-tooltip />
  201. </el-table>
  202. </div>
  203. <template #footer>
  204. <div class="dialog-footer">
  205. <el-button class="btn" @click="dialogVisible = false">取消</el-button>
  206. <el-button class="btn" type="primary" @click="handleDowload"> 下载 </el-button>
  207. </div>
  208. </template>
  209. </el-dialog>
  210. <Pdf
  211. :title="formInline.id + ''"
  212. :showDialog="pdfShow"
  213. @closeDialog="pdfShow = false"
  214. v-if="formInline.id && pdfShow"
  215. :rowId="formInline.id"
  216. ></Pdf>
  217. </template>
  218. <script setup>
  219. import { onMounted, ref, reactive, watchEffect, watch } from "vue";
  220. import fnHeader from "@/components/fnHeader.vue";
  221. import AuthenticMap from "./authenticMap";
  222. import { mapData } from "./authenticMap";
  223. import { useRouter } from "vue-router";
  224. import { ElMessage, ElMessageBox } from "element-plus";
  225. import { dateFormat } from "@/utils/date_util";
  226. import { exportExcel, parseMultiPolygon } from "@/utils/index";
  227. import { useStore } from "vuex";
  228. import Pdf from "./Pdf";
  229. const pdfShow = ref(false);
  230. const mouseStyle = ref(1);
  231. const router = useRouter();
  232. const store = useStore();
  233. let authenticMap = new AuthenticMap();
  234. const mapRef = ref();
  235. const userInfo = JSON.parse(sessionStorage.getItem("userinfo"));
  236. const location = ref(userInfo.location);
  237. onMounted(() => {
  238. authenticMap.initMap(location.value, mapRef.value);
  239. getList();
  240. });
  241. // 获取地块列表
  242. const plotList = ref([]);
  243. const getList = (callback) => {
  244. authenticMap.clearLayer();
  245. return VE_API.authentic.getList(formInlineSearch).then(({ code, data }) => {
  246. plotList.value = data || [];
  247. const geom = [];
  248. data.forEach((item) => {
  249. geom.push({ featureWkt: item.geom, ...item });
  250. });
  251. authenticMap.setAreaGeometry(geom);
  252. authenticMap.addPoint(data);
  253. callback && callback(geom);
  254. });
  255. };
  256. // 搜索
  257. const locationVal = ref("");
  258. const loading = ref(false);
  259. const MAP_KEY = "CZLBZ-LJICQ-R4A5J-BN62X-YXCRJ-GNBUT";
  260. const handleSearchRes = (v) => {
  261. authenticMap.setMapCenter(v);
  262. onRest();
  263. };
  264. const locationOptions = reactive({
  265. list: [],
  266. });
  267. const remoteMethod = async (keyword) => {
  268. if (keyword) {
  269. locationOptions.list = [];
  270. loading.value = true;
  271. const params = {
  272. key: MAP_KEY,
  273. keyword,
  274. // location: location.value,
  275. location: "22.574540836684672,113.1093017627431",
  276. };
  277. await VE_API.old_mini_map.getCtiyList({ word: keyword }).then(({ data }) => {
  278. if (data && data.length) {
  279. data.forEach((item) => {
  280. item.point = item.location.lat + "," + item.location.lng;
  281. locationOptions.list.push(item);
  282. });
  283. }
  284. });
  285. VE_API.old_mini_map.search(params).then(({ data }) => {
  286. loading.value = false;
  287. data.forEach((item) => {
  288. item.point = item.location.lat + "," + item.location.lng;
  289. locationOptions.list.push(item);
  290. });
  291. });
  292. } else {
  293. locationOptions.list = [];
  294. }
  295. };
  296. const validatePhoneNumber = (rule, value, callback) => {
  297. const phoneRegex = /^[1][3-9]\d{9}$/;
  298. if (!value) {
  299. callback(new Error("请输入联系电话"));
  300. } else if (!phoneRegex.test(value)) {
  301. callback(new Error("手机号码格式不正确"));
  302. } else {
  303. callback();
  304. }
  305. };
  306. const rules = {
  307. address: [{ required: true, message: "请输入农场地址", trigger: "change" }],
  308. farmName: [{ required: true, message: "请输入农场名称", trigger: "change" }],
  309. speciesTypeName: [{ required: true, message: "请输入作物物种", trigger: "change" }],
  310. masterName: [{ required: true, message: "请输入姓名", trigger: "change" }],
  311. masterTel: [{ required: true, validator: validatePhoneNumber, trigger: "change" }],
  312. };
  313. const ruleFormRef = ref(null);
  314. const initForm = {
  315. id: "",
  316. address: "",
  317. farmName: "",
  318. createDate: "",
  319. mu: "",
  320. speciesTypeName: "",
  321. masterName: "",
  322. masterTel: "",
  323. geom: "",
  324. };
  325. const formInline = reactive({
  326. ...initForm,
  327. });
  328. const disabledForm = ref(false);
  329. // 筛选
  330. const formInlineRef = ref(null);
  331. const formInlineSearch = reactive({
  332. ...initForm,
  333. });
  334. const onSearch = () => {
  335. authenticMap.search(formInlineSearch);
  336. };
  337. const onRest = () => {
  338. Object.assign(formInlineSearch, initForm);
  339. isUpdata.value = false;
  340. onCancel();
  341. };
  342. const isEdit = ref(false);
  343. // 编辑
  344. const handleEdit = () => {
  345. disabledForm.value = false;
  346. mapData.disabledForm = false;
  347. authenticMap.startModify();
  348. };
  349. // 取消
  350. const isUpdata = ref(true);
  351. const onCancel = () => {
  352. isEdit.value = false;
  353. store.commit("authentic/SET_ISEDIT_STATUS", false);
  354. if (isUpdata.value) {
  355. authenticMap.cancelDraw();
  356. } else {
  357. Object.assign(formInlineSearch, initForm);
  358. getList((geoms) => {
  359. authenticMap.allUnSelect();
  360. });
  361. }
  362. authenticMap.setPoint("point");
  363. authenticMap.clearMapData("isEdit", false, formInline.id);
  364. authenticMap.endDraw();
  365. };
  366. // 保存
  367. const onSubmit = () => {
  368. if (!ruleFormRef.value) return;
  369. ruleFormRef.value.validate((valid, fields) => {
  370. if (valid) {
  371. formInline.mu = formInline.mu.split("亩")[0];
  372. VE_API.authentic.saveData(formInline).then((res) => {
  373. store.commit("authentic/SET_ISEDIT_STATUS", false);
  374. isUpdata.value = false;
  375. disabledForm.value = true;
  376. mapData.disabledForm = true;
  377. Object.assign(formInlineSearch, initForm);
  378. authenticMap.endDraw();
  379. getList().then(() => {
  380. isRefresh.value = false;
  381. isEdit.value = false;
  382. authenticMap.allUnSelect();
  383. authenticMap.clearMapData();
  384. // authenticMap.getSelectPointArr(
  385. // point.id || plotList.value[plotList.value.length - 1].id
  386. // );
  387. });
  388. });
  389. }
  390. });
  391. };
  392. //上传
  393. const uploadRef = ref(null);
  394. const headerUpload = { token: store.getters.token };
  395. // 校验文件格式和大小
  396. const beforeUpload = (file) => {
  397. const isCsv = file.type === "application/vnd.ms-excel" || file.type === "text/csv" || file.name.endsWith(".csv");
  398. if (!isCsv) {
  399. ElMessage.error("上传文件只能是 CSV 格式!");
  400. }
  401. return isCsv;
  402. };
  403. const handleExceed = (files) => {
  404. uploadRef.value.clearFiles();
  405. const file = files[0];
  406. uploadRef.value.handleStart(file);
  407. };
  408. const heightArr = ref([])
  409. const onSuccess = (res) => {
  410. if (res.code === 0) {
  411. ElMessage.success("上传成功");
  412. store.commit("authentic/SET_ISEDIT_STATUS", true);
  413. isEdit.value = true;
  414. disabledForm.value = false;
  415. formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
  416. const geom = [{ featureWkt: res.data.geom, ...res.data }];
  417. authenticMap.setAreaGeometry(geom);
  418. authenticMap.fit([res.data.geom]);
  419. updatePointList("upload");
  420. heightArr.value = res.data.height
  421. const arr = pointList.value.map((item,index) =>{
  422. return [...item,res.data.height[index]]
  423. })
  424. getArea(arr)
  425. authenticMap.startModify('upload');
  426. uploadRef.value.clearFiles();
  427. } else {
  428. ElMessage.error("上传失败");
  429. }
  430. };
  431. // 获取面积/亩
  432. const getArea = (arr) =>{
  433. VE_API.authentic.getArea(arr).then(res =>{
  434. const area = (res.data/666.67).toFixed(2)
  435. formInline.mu = area + "亩";
  436. })
  437. }
  438. // 打印
  439. const handlePrint = () => {
  440. pdfShow.value = true;
  441. };
  442. // 返回
  443. const goBack = () => {
  444. router.go(-1);
  445. };
  446. function updateFormInline(newData, name) {
  447. Object.assign(formInline, newData);
  448. }
  449. // 删除地块
  450. const handleDelete = () => {
  451. const id = mapData.selectPointArr.map((item) => item.values_.id);
  452. if (id.length < 0) return ElMessage("请选择地块");
  453. ElMessageBox.confirm("您确定删除该地块吗?", "提示", {
  454. confirmButtonText: "确认",
  455. cancelButtonText: "取消",
  456. type: "warning",
  457. })
  458. .then(() => {
  459. VE_API.authentic.deleteData(id).then((res) => {
  460. isUpdata.value = false;
  461. onCancel();
  462. });
  463. })
  464. .catch(() => {});
  465. };
  466. // 创建
  467. const isRefresh = ref(true);
  468. const handleAdd = () => {
  469. isRefresh.value = false;
  470. isEdit.value = false;
  471. if (isUpdata.value) {
  472. authenticMap.cancelDraw();
  473. authenticMap.allUnSelect();
  474. } else {
  475. getList();
  476. isUpdata.value = true;
  477. }
  478. updateFormInline({ ...initForm });
  479. ruleFormRef.value.resetFields();
  480. pointList.value = [];
  481. authenticMap.clearMapData("curPointData", {});
  482. authenticMap.clearMapData("isEdit", false);
  483. authenticMap.setPoint("point");
  484. authenticMap.startDraw();
  485. };
  486. // 删除点
  487. const handleDeletePoint = () => {
  488. authenticMap.removePoint();
  489. };
  490. // 撤销
  491. const handleCancel = () => {
  492. authenticMap.undoLastDraw();
  493. // authenticMap.cancelDraw()
  494. };
  495. // 导出
  496. const gridData = ref([]);
  497. const dialogVisible = ref(false);
  498. const handleExport = () => {
  499. if (mapData.selectPointArr.length < 1) return ElMessage("请选择地块");
  500. const ids = mapData.selectPointArr.map((item) => item.values_.id);
  501. VE_API.authentic.exportData(ids).then(({ data }) => {
  502. gridData.value = data.map((item) => {
  503. return {
  504. ...item,
  505. createDate: dateFormat(new Date(item.createDate), "YYYY-mm-dd HH:MM:SS"),
  506. };
  507. });
  508. dialogVisible.value = true;
  509. });
  510. };
  511. // 下载
  512. const handleDowload = () => {
  513. const fieldLabels = [
  514. "农场名称",
  515. "农场地址",
  516. "创建时间",
  517. "农场面积",
  518. "作物物种",
  519. "客户姓名",
  520. "联系电话",
  521. "边界点经纬度",
  522. ];
  523. const fieldKeys = [
  524. "farmName",
  525. "address",
  526. "createDate",
  527. "mu",
  528. "speciesTypeName",
  529. "masterName",
  530. "masterTel",
  531. "points",
  532. ];
  533. const fileName = "农场数据" + dateFormat(new Date(), "YYYY-mm-dd HH:MM");
  534. exportExcel(gridData.value, fieldLabels, fieldKeys, fileName);
  535. };
  536. const pointList = ref([]);
  537. // 获取编辑回显数据
  538. const getDetailsData = (id) => {
  539. VE_API.authentic.getDetails({ id }).then(({ data }) => {
  540. isEdit.value = true;
  541. disabledForm.value = true;
  542. mapData.disabledForm = true;
  543. data.createDate = dateFormat(new Date(data.createDate), "YYYY-mm-dd HH:MM:SS");
  544. updateFormInline({ ...data });
  545. formInline.mu = data.mu + "亩";
  546. // 经纬度列表
  547. let arr = JSON.parse(data.points);
  548. // 删除最后数组最后一项闭合数据
  549. arr.pop();
  550. pointList.value = arr;
  551. });
  552. };
  553. // 添加经纬度列表
  554. const updatePointList = (type) => {
  555. const { geometryArr, area } = authenticMap.getAreaGeometry(type);
  556. const lastItem = geometryArr[geometryArr.length - 1];
  557. formInline.geom = lastItem.featureWkt;
  558. let result = parseMultiPolygon(lastItem.featureWkt);
  559. result.pop();
  560. pointList.value = result;
  561. //判断是否是导入数据,
  562. if(store.state.authentic.isEditStatus){
  563. const arr = pointList.value.map((item,index) =>{
  564. return [...item,heightArr.value[index]]
  565. })
  566. if(arr[0][2]){
  567. getArea(arr)
  568. }
  569. }else{
  570. formInline.mu = area + "亩";
  571. }
  572. };
  573. watchEffect(() => {
  574. if (mapData.isEditArea) {
  575. isUpdata.value = false;
  576. updatePointList("edit");
  577. }
  578. });
  579. watch(
  580. () => mapData.isEdit,
  581. (newVale, oldValue) => {
  582. if (newVale && mapData.selectPointArr.length < 2 && !isRefresh.value) {
  583. isEdit.value = true;
  584. disabledForm.value = false;
  585. mapData.disabledForm = false;
  586. isUpdata.value = true;
  587. formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
  588. updatePointList("add");
  589. authenticMap.startModify();
  590. }
  591. }
  592. );
  593. watch(
  594. () => mapData.selectPointArr,
  595. (newVale, oldValue) => {
  596. if (mapData.selectPointArr.length === 1) {
  597. const obj = mapData.selectPointArr[0];
  598. const id = obj.values_.id;
  599. getDetailsData(id);
  600. mapData.curPointData = obj.values_;
  601. } else {
  602. if (isRefresh.value) {
  603. isEdit.value = false;
  604. authenticMap.endDraw();
  605. isRefresh.value = true;
  606. }
  607. if (mapData.selectPointArr.length === 0 || mapData.selectPointArr.length > 1) {
  608. isEdit.value = false;
  609. }
  610. }
  611. }
  612. );
  613. </script>
  614. <style lang="scss" scoped>
  615. ::v-deep {
  616. .el-upload-list {
  617. display: none;
  618. }
  619. }
  620. .base-container {
  621. width: 100%;
  622. height: 100vh;
  623. color: #fff;
  624. box-sizing: border-box;
  625. z-index: 1;
  626. position: relative;
  627. .top-bg {
  628. position: absolute;
  629. top: 0;
  630. width: 100%;
  631. height: 74px;
  632. background: #101010;
  633. z-index: -1;
  634. }
  635. .upload-demo {
  636. display: flex;
  637. align-items: center;
  638. justify-content: flex-end;
  639. padding-right: 20px;
  640. background: #101010;
  641. }
  642. .blue {
  643. background: #2199f8;
  644. }
  645. .btn {
  646. display: flex;
  647. align-items: center;
  648. padding: 6px 16px;
  649. border-radius: 4px;
  650. cursor: pointer;
  651. .icon {
  652. width: 13px;
  653. height: 13px;
  654. }
  655. span {
  656. margin-left: 10px;
  657. }
  658. }
  659. .disabled-button {
  660. pointer-events: none;
  661. opacity: 0.5;
  662. cursor: not-allowed;
  663. }
  664. .top {
  665. display: flex;
  666. justify-content: space-between;
  667. // justify-content: flex-end;
  668. width: 100%;
  669. height: 40px;
  670. background: #101010;
  671. padding: 17px 20px 0 20px;
  672. box-sizing: border-box;
  673. display: flex;
  674. align-items: center;
  675. .back {
  676. border: 1px solid rgba(255, 255, 255, 0.4);
  677. }
  678. .v-select {
  679. width: 300px;
  680. ::v-deep {
  681. .el-select__wrapper {
  682. background: #101010;
  683. box-shadow: none;
  684. border: 1px solid rgba(255, 255, 255, 0.7);
  685. .el-select__input {
  686. color: #fff;
  687. }
  688. }
  689. }
  690. }
  691. .search {
  692. display: flex;
  693. align-items: center;
  694. justify-content: flex-end;
  695. width: 60%;
  696. .input-with-select {
  697. margin-left: 25px;
  698. }
  699. .upload {
  700. background: #2199f8;
  701. margin-left: 25px;
  702. }
  703. .add {
  704. background: #fff;
  705. color: #000;
  706. margin-left: 25px;
  707. }
  708. }
  709. }
  710. .content {
  711. width: 100%;
  712. height: calc(100% - 74px - 40px - 32px);
  713. box-sizing: border-box;
  714. background: #101010;
  715. padding: 13px 20px 20px 20px;
  716. .search-form {
  717. height: 40px;
  718. margin: 5px 0;
  719. display: flex;
  720. // justify-content: flex-end;
  721. justify-content: space-between;
  722. ::v-deep {
  723. .el-form-item__label {
  724. color: #fff;
  725. }
  726. .el-form-item__content {
  727. width: 190px;
  728. }
  729. .el-input__wrapper {
  730. background: #101010;
  731. box-shadow: none;
  732. border: 1px solid rgba(255, 255, 255, 0.7);
  733. .el-input__inner {
  734. color: #fff;
  735. }
  736. }
  737. }
  738. .button {
  739. display: flex;
  740. .btn {
  741. width: 84px;
  742. &.reset {
  743. margin-left: 25px;
  744. }
  745. }
  746. }
  747. }
  748. .box {
  749. border: 1px solid rgba(255, 255, 255, 0.4);
  750. border-radius: 8px;
  751. padding: 20px;
  752. box-sizing: border-box;
  753. background: #232323;
  754. width: 100%;
  755. height: calc(100% - 50px);
  756. position: relative;
  757. .map-box {
  758. width: 100%;
  759. height: 100%;
  760. border-radius: 4px;
  761. border: 1px solid rgba(255, 255, 255, 0.4);
  762. .map {
  763. width: 100%;
  764. height: 100%;
  765. }
  766. }
  767. .tool-group {
  768. position: absolute;
  769. display: flex;
  770. right: calc(500px + 36px);
  771. top: 42px;
  772. .btn {
  773. background: #fff;
  774. color: #000;
  775. margin-right: 10px;
  776. }
  777. .delete {
  778. background: #e45c5c;
  779. color: #fff;
  780. }
  781. }
  782. .edit-popup {
  783. width: 500px;
  784. height: calc(100% - 53px - 20px);
  785. position: absolute;
  786. top: 36px;
  787. right: 36px;
  788. border: 1px solid rgba(255, 255, 255, 0.4);
  789. border-radius: 8px;
  790. background: #232323;
  791. .edit-title {
  792. padding: 0 10px;
  793. background: rgba(68, 68, 68, 0.4);
  794. border-bottom: 1px solid rgba(68, 68, 68, 0.4);
  795. display: flex;
  796. align-items: center;
  797. justify-content: space-between;
  798. .btn-group {
  799. display: flex;
  800. .ml {
  801. margin-left: 20px;
  802. }
  803. }
  804. .name {
  805. display: flex;
  806. padding: 12px 0px;
  807. align-items: center;
  808. }
  809. span {
  810. margin-left: 8px;
  811. font-size: 18px;
  812. font-family: "SOURCEHANTIFINE";
  813. }
  814. .edit {
  815. color: #2199f8;
  816. padding: 6px 20px;
  817. border: 1px solid #2199f8;
  818. border-radius: 4px;
  819. cursor: pointer;
  820. }
  821. }
  822. .edit-cont {
  823. padding: 16px;
  824. width: calc(100% - 32px);
  825. height: calc(100% - 64px - 84px);
  826. .form-inline {
  827. height: 320px;
  828. ::v-deep {
  829. .el-input {
  830. width: 200px;
  831. --el-input-placeholder-color: #666666;
  832. }
  833. .el-form-item__label {
  834. color: #bbbbbb;
  835. }
  836. .el-input__wrapper {
  837. background: #232323;
  838. border: 1px solid #444444;
  839. box-shadow: none;
  840. .el-input__inner {
  841. color: #fff;
  842. }
  843. }
  844. }
  845. }
  846. .list-box {
  847. width: 100%;
  848. height: calc(100% - 320px);
  849. span {
  850. color: #bbbbbb;
  851. }
  852. .list-cont {
  853. width: 100%;
  854. height: calc(100% - 20px);
  855. border-radius: 4px;
  856. margin-top: 5px;
  857. background: rgba(68, 68, 68, 0.4);
  858. padding: 12px 16px;
  859. box-sizing: border-box;
  860. overflow-y: auto;
  861. .list-item {
  862. width: 100%;
  863. margin-bottom: 8px;
  864. display: flex;
  865. align-items: center;
  866. .item-box {
  867. padding: 8px;
  868. border: 1px solid #444444;
  869. border-radius: 4px;
  870. margin-left: 10px;
  871. }
  872. }
  873. }
  874. }
  875. }
  876. .edit-footer {
  877. width: 100%;
  878. height: 64px;
  879. display: flex;
  880. align-items: center;
  881. justify-content: flex-end;
  882. box-sizing: border-box;
  883. padding: 12px 16px;
  884. border-top: 1px solid rgba(68, 68, 68, 0.4);
  885. background: rgba(68, 68, 68, 0.4);
  886. .btn {
  887. padding: 10px 35px;
  888. }
  889. .cancel {
  890. border: 1px solid rgba(255, 255, 255, 0.4);
  891. margin-right: 16px;
  892. }
  893. .save {
  894. background: #2199f8;
  895. }
  896. }
  897. }
  898. }
  899. }
  900. }
  901. .dialog-footer {
  902. .btn {
  903. width: 200px;
  904. height: 40px;
  905. }
  906. }
  907. </style>