| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013 |
- <template>
- <div class="base-container">
- <fnHeader :hideSwitch="true" headerName="飞鸟确权平台" :autoGo="false" :hideShadow="true"></fnHeader>
- <div class="top-bg"></div>
- <el-upload
- ref="uploadRef"
- class="upload-demo"
- :limit="1"
- :on-exceed="handleExceed"
- :on-success="onSuccess"
- :before-upload="beforeUpload"
- action="https://feiniaotech-dev.sysuimars.cn/site/plugin_ownership/uploadFile"
- :headers="headerUpload"
- >
- <template #trigger>
- <div class="btn blue" :class="{ 'disabled-button': !disabledForm && isEdit }">
- <el-icon><Upload /></el-icon>
- <span>RTK点位数据导入</span>
- </div>
- </template>
- </el-upload>
- <div class="top">
- <!-- <div class="back btn" @click="goBack">
- <img class="icon" src="@/assets/images/common/back-icon.png" alt="" />
- <span>返回</span>
- </div> -->
- <el-select
- v-model="locationVal"
- filterable
- remote
- :disabled="!disabledForm && isEdit"
- effect="dark"
- reserve-keyword
- placeholder="搜索地区"
- :remote-method="remoteMethod"
- :loading="loading"
- @change="handleSearchRes"
- class="v-select"
- >
- <template #prefix>
- <el-icon class="el-input__icon"><search /></el-icon>
- </template>
- <el-option
- v-for="(item, index) in locationOptions.list"
- :key="index"
- :label="item.title"
- :value="item.point"
- >
- <span>{{ item.title }}</span>
- <span class="sub-title">{{ item.province }}{{ item.city }}{{ item.district }}</span>
- </el-option>
- </el-select>
- <div class="search">
- <div class="add btn" :class="{ 'disabled-button': !disabledForm && isEdit }" @click="handleAdd">
- <el-icon><Plus /></el-icon>
- <span>创建</span>
- </div>
- <div class="upload btn" :class="{ 'disabled-button': !disabledForm && isEdit }" @click="handleExport">
- <img class="icon" src="@/assets/images/common/back-icon.png" alt="" />
- <span>导出</span>
- </div>
- </div>
- </div>
- <div class="content">
- <el-form :inline="true" :model="formInlineSearch" class="search-form" ref="formInlineRef">
- <div>
- <el-form-item label="生产队名称">
- <el-input v-model="formInlineSearch.address" placeholder="请输入生产队名称" clearable />
- </el-form-item>
- <el-form-item label="林段名称">
- <el-input v-model="formInlineSearch.farmName" placeholder="请输入林段名称" clearable />
- </el-form-item>
- <el-form-item label="橡胶品种">
- <el-input v-model="formInlineSearch.speciesTypeName" placeholder="请输入橡胶品种" clearable />
- </el-form-item>
- <!-- <el-form-item label="客户姓名">
- <el-input v-model="formInlineSearch.masterName" placeholder="请输入客户姓名" clearable />
- </el-form-item> -->
- </div>
- <div class="button">
- <el-button
- class="btn"
- :class="{ 'disabled-button': !disabledForm && isEdit }"
- type="primary"
- @click="onSearch"
- >查询</el-button
- >
- <el-button class="btn reset" :class="{ 'disabled-button': !disabledForm && isEdit }" @click="onRest"
- >重置</el-button
- >
- </div>
- </el-form>
- <div class="box">
- <div class="map-box" :class="{ 'cursor-pointer': mouseStyle }">
- <div ref="mapRef" class="map"></div>
- </div>
- <div class="tool-group">
- <!-- <div class="btn" @click="handleCancel">
- <img class="icon" src="@/assets/images/common/back-black-icon.png" alt="" />
- <span>撤销</span>
- </div> -->
- <!-- <div
- class="btn"
- @click="handleDeletePoint"
- v-show="mapData.selectPointArr.length > 0 && !disabledForm"
- >
- <el-icon size="15"><CloseBold /></el-icon>
- <span>删除点</span>
- </div> -->
- <div class="btn delete" @click="handleDelete" v-show="mapData.selectPointArr.length > 0">
- <el-icon size="15" color="#fff"><CloseBold /></el-icon>
- <span>删除地块</span>
- </div>
- </div>
- <div class="edit-popup" v-show="isEdit">
- <div class="edit-title">
- <div class="name">
- <img src="@/assets/images/common/chart-icon.png" alt="" />
- <span>地块属性</span>
- </div>
- <div class="btn-group">
- <div v-show="disabledForm" class="edit" @click="handleEdit">编辑</div>
- <div v-show="!disabledForm" class="edit" @click="handleDeletePoint">删除点</div>
- <div
- v-show="mapData.selectPointArr.length > 0"
- class="edit ml"
- :class="{ 'disabled-button': !disabledForm }"
- @click="handlePrint"
- >
- 打印
- </div>
- </div>
- </div>
- <div class="edit-cont">
- <el-form
- :inline="true"
- ref="ruleFormRef"
- :disabled="disabledForm"
- :model="formInline"
- :rules="rules"
- label-position="top"
- class="form-inline"
- :class="{'no-area': store.state.authentic.isEditStatus}"
- >
- <el-form-item label="生产队名称" prop="address">
- <el-input v-model="formInline.address" placeholder="请输入生产队名称" clearable />
- </el-form-item>
- <el-form-item label="林段名称" prop="farmName">
- <el-input v-model="formInline.farmName" placeholder="请输入林段名称" clearable />
- </el-form-item>
- <el-form-item label="创建时间">
- <el-input v-model="formInline.createDate" clearable disabled />
- </el-form-item>
- <el-form-item label="林段面积">
- <el-input v-model="formInline.mu" disabled clearable />
- </el-form-item>
- <el-form-item label="橡胶品种" prop="speciesTypeName">
- <el-input v-model="formInline.speciesTypeName" placeholder="请输入橡胶品种" clearable />
- </el-form-item>
- <el-form-item label="斜面面积" v-show="!store.state.authentic.isEditStatus">
- <el-input v-model="formInline.slopeMu" disabled clearable />
- </el-form-item>
- <el-form-item label="橡胶株数" prop="plantNum">
- <el-input v-model="formInline.plantNum" placeholder="请输入橡胶株数" clearable />
- </el-form-item>
- </el-form>
- <div class="list-box" :class="{'no-area': store.state.authentic.isEditStatus}" v-show="pointList.length > 0">
- <span>边界点经纬度</span>
- <div class="list-cont">
- <div class="list-item" v-for="(item, index) in pointList" :key="index">
- <span>A{{ index + 1 }}</span>
- <div class="item-box">北纬{{ item[1] }}</div>
- <div class="item-box">东经{{ item[0] }}</div>
- </div>
- </div>
- </div>
- </div>
- <div class="edit-footer">
- <div @click="onCancel" class="btn cancel">取消</div>
- <div @click="onSubmit" class="btn save">保存</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 导出弹窗 -->
- <el-dialog v-model="dialogVisible" width="82%" center :show-close="false" modal-class="dialog-dark">
- <div>
- <el-table :data="gridData" border max-height="600" class="table-dark">
- <el-table-column property="farmName" label="林段名称" show-overflow-tooltip />
- <el-table-column property="address" label="生产队名称" width="230" show-overflow-tooltip />
- <el-table-column property="createDate" label="创建时间" width="170" />
- <el-table-column property="mu" label="林段面积">
- <template #default="scope">
- <span>{{ scope.row.mu }}亩</span>
- </template>
- </el-table-column>
- <el-table-column property="slopeMu" label="斜面面积">
- <template #default="scope">
- <span>{{ scope.row.slopeMu }}亩</span>
- </template>
- </el-table-column>
- <el-table-column property="speciesTypeName" label="橡胶品种" />
- <el-table-column property="plantNum" label="橡胶株数" />
- <el-table-column property="masterName" label="客户姓名" />
- <!-- <el-table-column property="masterTel" width="120" label="联系电话" /> -->
- <el-table-column property="points" label="边界点经纬度" width="480" show-overflow-tooltip />
- </el-table>
- </div>
- <template #footer>
- <div class="dialog-footer">
- <el-button class="btn" @click="dialogVisible = false">取消</el-button>
- <el-button class="btn" type="primary" @click="handleDowload"> 下载 </el-button>
- </div>
- </template>
- </el-dialog>
- <Pdf
- :title="formInline.id + ''"
- :showDialog="pdfShow"
- @closeDialog="pdfShow = false"
- v-if="formInline.id && pdfShow"
- :rowId="formInline.id"
- ></Pdf>
- </template>
- <script setup>
- import { onMounted, ref, reactive, watchEffect, watch } from "vue";
- import fnHeader from "@/components/fnHeader.vue";
- import AuthenticMap from "./authenticMap";
- import { mapData } from "./authenticMap";
- import { useRouter } from "vue-router";
- import { ElMessage, ElMessageBox } from "element-plus";
- import { dateFormat } from "@/utils/date_util";
- import { exportExcel, parseMultiPolygon } from "@/utils/index";
- import { useStore } from "vuex";
- import Pdf from "./Pdf";
- import {Feature} from "ol";
- const pdfShow = ref(false);
- const mouseStyle = ref(1);
- const router = useRouter();
- const store = useStore();
- let authenticMap = new AuthenticMap();
- const mapRef = ref();
- const userInfo = JSON.parse(sessionStorage.getItem("userinfo"));
- debugger
- const location = ref(userInfo.location);
- onMounted(() => {
- authenticMap.initMap(location.value, mapRef.value);
- getList();
- });
- // 获取地块列表
- const plotList = ref([]);
- const getList = (callback) => {
- authenticMap.clearLayer();
- return VE_API.authentic.getList(formInlineSearch).then(({ code, data }) => {
- plotList.value = data || [];
- const geom = [];
- data.forEach((item) => {
- geom.push({ featureWkt: item.geom, ...item });
- });
- authenticMap.setAreaGeometry(geom);
- authenticMap.addPoint(data);
- callback && callback(geom);
- });
- };
- // 搜索
- const locationVal = ref("");
- const loading = ref(false);
- const MAP_KEY = "CZLBZ-LJICQ-R4A5J-BN62X-YXCRJ-GNBUT";
- const handleSearchRes = (v) => {
- authenticMap.setMapCenter(v);
- onRest();
- };
- const locationOptions = reactive({
- list: [],
- });
- const remoteMethod = async (keyword) => {
- if (keyword) {
- locationOptions.list = [];
- loading.value = true;
- const params = {
- key: MAP_KEY,
- keyword,
- // location: location.value,
- location: "22.574540836684672,113.1093017627431",
- };
- await VE_API.old_mini_map.getCtiyList({ word: keyword }).then(({ data }) => {
- if (data && data.length) {
- data.forEach((item) => {
- item.point = item.location.lat + "," + item.location.lng;
- locationOptions.list.push(item);
- });
- }
- });
- VE_API.old_mini_map.search(params).then(({ data }) => {
- loading.value = false;
- data.forEach((item) => {
- item.point = item.location.lat + "," + item.location.lng;
- locationOptions.list.push(item);
- });
- });
- } else {
- locationOptions.list = [];
- }
- };
- const validatePhoneNumber = (rule, value, callback) => {
- const phoneRegex = /^[1][3-9]\d{9}$/;
- if (!value) {
- callback(new Error("请输入联系电话"));
- } else if (!phoneRegex.test(value)) {
- callback(new Error("手机号码格式不正确"));
- } else {
- callback();
- }
- };
- const rules = {
- address: [{ required: true, message: "请输入生产队名称", trigger: "change" }],
- farmName: [{ required: true, message: "请输入林段名称", trigger: "change" }],
- speciesTypeName: [{ required: true, message: "请输入橡胶品种", trigger: "change" }],
- masterName: [{ required: true, message: "请输入姓名", trigger: "change" }],
- // masterTel: [{ required: true, validator: validatePhoneNumber, trigger: "change" }],
- };
- const ruleFormRef = ref(null);
- const initForm = {
- id: "",
- address: "",
- farmName: "",
- createDate: "",
- mu: "",
- slopeMu: "",
- speciesTypeName: "",
- plantNum: "",
- masterName: "",
- masterTel: "",
- geom: "",
- };
- const formInline = reactive({
- ...initForm,
- });
- const disabledForm = ref(false);
- // 筛选
- const formInlineRef = ref(null);
- const formInlineSearch = reactive({
- ...initForm,
- });
- const onSearch = () => {
- authenticMap.search(formInlineSearch);
- };
- const onRest = () => {
- Object.assign(formInlineSearch, initForm);
- isUpdata.value = false;
- onCancel();
- };
- const isEdit = ref(false);
- const typeStr = ref("");
- // 编辑
- const handleEdit = () => {
- typeStr.value = "edit";
- disabledForm.value = false;
- mapData.disabledForm = false;
- authenticMap.startModify('edit');
- authenticMap.clearSelectPoint()
- };
- // 取消
- const isUpdata = ref(true);
- const onCancel = () => {
- authenticMap.clearSelectPoint()
- isEdit.value = false;
- store.commit("authentic/SET_ISEDIT_STATUS", false);
- if (isUpdata.value) {
- authenticMap.cancelDraw();
- getList((geoms) => {
- authenticMap.allUnSelect();
- });
- } else {
- Object.assign(formInlineSearch, initForm);
- getList((geoms) => {
- authenticMap.allUnSelect();
- });
- }
- authenticMap.setPoint("point");
- authenticMap.clearMapData("isEdit", false, formInline.id);
- authenticMap.endDraw();
- };
- // 保存
- const onSubmit = () => {
- if (!ruleFormRef.value) return;
- ruleFormRef.value.validate((valid, fields) => {
- if (valid) {
- formInline.mu = formInline.mu.split("亩")[0];
- formInline.slopeMu = formInline.slopeMu.split("亩")[0];
- if(heightArr.value.length>0){
- formInline.height = heightArr.value
- }
- VE_API.authentic.saveData(formInline).then((res) => {
- if (res.code === 0) {
- store.commit("authentic/SET_ISEDIT_STATUS", false);
- isUpdata.value = false;
- disabledForm.value = true;
- mapData.disabledForm = true;
- Object.assign(formInlineSearch, initForm);
- authenticMap.endDraw();
- getList().then(() => {
- isRefresh.value = false;
- isEdit.value = false;
- authenticMap.allUnSelect();
- authenticMap.clearMapData();
- // authenticMap.getSelectPointArr(
- // point.id || plotList.value[plotList.value.length - 1].id
- // );
- });
- }
- })
- }
- });
- };
- //上传
- const uploadRef = ref(null);
- const headerUpload = { token: store.getters.token };
- // 校验文件格式和大小
- const beforeUpload = (file) => {
- const isCsv = file.type === "application/vnd.ms-excel" || file.type === "text/csv" || file.name.endsWith(".csv");
- updateFormInline({ ...initForm });
- ruleFormRef.value.resetFields();
- authenticMap.clearSelectPoint()
- isEdit.value = false;
- authenticMap.setPoint("point");
- authenticMap.clearMapData("isEdit", false, formInline.id);
- authenticMap.endDraw();
- if (!isCsv) {
- ElMessage.error("上传文件只能是 CSV 格式!");
- }
- return isCsv;
- };
- const handleExceed = (files) => {
- uploadRef.value.clearFiles();
- const file = files[0];
- uploadRef.value.handleStart(file);
- };
- const heightArr = ref([]);
- const onSuccess = (res) => {
- typeStr.value = "upload";
- if (res.code === 0) {
- ElMessage.success("上传成功");
- store.commit("authentic/SET_ISEDIT_STATUS", true);
- isEdit.value = true;
- disabledForm.value = false;
- formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
- const geom = [{ featureWkt: res.data.geom, ...res.data }];
- let featureList = authenticMap.setAreaGeometry(geom);
- authenticMap.fit([res.data.geom]);
- updatePointList("upload", geom[0]);
- heightArr.value = res.data.height;
- const arr = pointList.value.map((item, index) => {
- return [...item, res.data.height[index]];
- });
- getArea(arr);
- authenticMap.startModify("upload", featureList[0]);
- uploadRef.value.clearFiles();
- } else {
- ElMessage.error("上传失败");
- }
- };
- // 获取面积/亩
- const getArea = (arr) => {
- VE_API.authentic.getArea(arr).then((res) => {
- const area = (res.data / 666.67).toFixed(2);
- formInline.mu = area + "亩";
- });
- };
- // 斜面面积
- const getSlopeArea = (arr) => {
- VE_API.authentic.fetchSlopeArea({wkt: arr}).then(({data}) => {
- const area = (data / 666.67).toFixed(2);
- formInline.slopeMu = area + "亩";
- });
- };
- // 打印
- const handlePrint = () => {
- pdfShow.value = true;
- };
- // 返回
- const goBack = () => {
- router.go(-1);
- };
- function updateFormInline(newData, name) {
- Object.assign(formInline, newData);
- }
- // 删除地块
- const handleDelete = () => {
- const id = mapData.selectPointArr.map((item) => item.values_.id);
- if (id.length < 0) return ElMessage("请选择地块");
- ElMessageBox.confirm("您确定删除该地块吗?", "提示", {
- confirmButtonText: "确认",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- VE_API.authentic.deleteData(id).then((res) => {
- isUpdata.value = false;
- onCancel();
- });
- })
- .catch(() => {});
- };
- // 创建
- const isRefresh = ref(true);
- const handleAdd = () => {
- authenticMap.clearSelectPoint()
- typeStr.value = "add";
- isRefresh.value = false;
- isEdit.value = false;
- if (isUpdata.value) {
- authenticMap.cancelDraw();
- authenticMap.allUnSelect();
- } else {
- getList();
- isUpdata.value = true;
- }
- updateFormInline({ ...initForm });
- ruleFormRef.value.resetFields();
- pointList.value = [];
- authenticMap.clearMapData("curPointData", {});
- authenticMap.clearMapData("isEdit", false);
- authenticMap.setPoint("point");
- authenticMap.startDraw();
- };
- // 删除点
- const handleDeletePoint = () => {
- authenticMap.removePoint((index) => {
- updatePointList(typeStr.value);
- heightArr.value.splice(index,1)
- });
- };
- // 撤销
- const handleCancel = () => {
- authenticMap.undoLastDraw();
- };
- // 导出
- const gridData = ref([]);
- const dialogVisible = ref(false);
- const handleExport = () => {
- if (mapData.selectPointArr.length < 1) return ElMessage("请选择地块");
- const ids = mapData.selectPointArr.map((item) => item.values_.id);
- VE_API.authentic.exportData(ids).then(({ data }) => {
- gridData.value = data.map((item) => {
- return {
- ...item,
- createDate: dateFormat(new Date(item.createDate), "YYYY-mm-dd HH:MM:SS"),
- };
- });
- dialogVisible.value = true;
- });
- };
- // 下载
- const handleDowload = () => {
- const fieldLabels = [
- "林段名称",
- "生产队名称",
- "创建时间",
- "林段面积",
- "橡胶品种",
- "客户姓名",
- // "联系电话",
- "边界点经纬度",
- ];
- const fieldKeys = [
- "farmName",
- "address",
- "createDate",
- "mu",
- "speciesTypeName",
- "plantNum",
- "masterName",
- // "masterTel",
- "points",
- ];
- const fileName = "农场数据" + dateFormat(new Date(), "YYYY-mm-dd HH:MM");
- exportExcel(gridData.value, fieldLabels, fieldKeys, fileName);
- };
- const pointList = ref([]);
- // 获取编辑回显数据
- const getDetailsData = (id) => {
- VE_API.authentic.getDetails({ id }).then(({ data }) => {
- isEdit.value = true;
- disabledForm.value = true;
- mapData.disabledForm = true;
- data.createDate = dateFormat(new Date(data.createDate), "YYYY-mm-dd HH:MM:SS");
- updateFormInline({ ...data });
- // 经纬度列表
- let arr = JSON.parse(data.points);
- // 删除最后数组最后一项闭合数据
- arr.pop();
- pointList.value = arr;
- if(data.height.length>0){
- heightArr.value = data.height
- store.commit("authentic/SET_ISEDIT_STATUS", true);
- // authenticMap.startModify("upload");
- }
- formInline.mu = data.mu + "亩";
- formInline.slopeMu = data.slopeMu + "亩";
- });
- };
- // 添加经纬度列表
- const updatePointList = (type, geom) => {
- const { geometryArr, area } = authenticMap.getAreaGeometry(type);
- let lastItem = null
- if(type === 'upload'){
- lastItem = geom
- }else{
- lastItem = geometryArr[geometryArr.length - 1];
- }
- formInline.geom = lastItem.featureWkt;
- console.log("formInline.geom", formInline.geom)
- getSlopeArea(formInline.geom)
- let result = parseMultiPolygon(lastItem.featureWkt);
- result.pop();
- pointList.value = result;
- //判断是否是导入数据
- if (store.state.authentic.isEditStatus) {
- const arr = pointList.value.map((item, index) => {
- return [...item, heightArr.value[index]];
- });
- if (arr[0][2]) {
- getArea(arr);
- }
- } else {
- formInline.mu = area + "亩";
- }
- };
- watchEffect(() => {
- if (mapData.isEditArea) {
- isUpdata.value = false;
- updatePointList("edit");
- }
- });
- watch(
- () => mapData.isEdit,
- (newVale, oldValue) => {
- if (newVale && mapData.selectPointArr.length < 2 && !isRefresh.value) {
- isEdit.value = true;
- disabledForm.value = false;
- mapData.disabledForm = false;
- isUpdata.value = true;
- formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
- updatePointList("add");
- authenticMap.startModify('add');
- }
- }
- );
- watch(
- () => mapData.selectPointArr,
- (newVale, oldValue) => {
- if (mapData.selectPointArr.length === 1) {
- const obj = mapData.selectPointArr[0];
- const id = obj.values_.id;
- getDetailsData(id);
- mapData.curPointData = obj.values_;
- } else {
- if (isRefresh.value) {
- isEdit.value = false;
- authenticMap.endDraw();
- isRefresh.value = true;
- }
- if (mapData.selectPointArr.length === 0 || mapData.selectPointArr.length > 1) {
- isEdit.value = false;
- }
- }
- }
- );
- </script>
- <style lang="scss" scoped>
- ::v-deep {
- .el-upload-list {
- display: none;
- }
- }
- .base-container {
- width: 100%;
- height: 100vh;
- color: #fff;
- box-sizing: border-box;
- z-index: 1;
- position: relative;
- .top-bg {
- position: absolute;
- top: 0;
- width: 100%;
- height: 74px;
- background: #101010;
- z-index: -1;
- }
- .upload-demo {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding-right: 20px;
- background: #101010;
- }
- .blue {
- background: #2199f8;
- }
- .btn {
- display: flex;
- align-items: center;
- padding: 6px 16px;
- border-radius: 4px;
- cursor: pointer;
- .icon {
- width: 13px;
- height: 13px;
- }
- span {
- margin-left: 10px;
- }
- }
- .disabled-button {
- pointer-events: none;
- opacity: 0.5;
- cursor: not-allowed;
- }
- .top {
- display: flex;
- justify-content: space-between;
- // justify-content: flex-end;
- width: 100%;
- height: 40px;
- background: #101010;
- padding: 17px 20px 0 20px;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- .back {
- border: 1px solid rgba(255, 255, 255, 0.4);
- }
- .v-select {
- width: 300px;
- ::v-deep {
- .el-select__wrapper {
- background: #101010;
- box-shadow: none;
- border: 1px solid rgba(255, 255, 255, 0.7);
- .el-select__input {
- color: #fff;
- }
- }
- }
- }
- .search {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- width: 60%;
- .input-with-select {
- margin-left: 25px;
- }
- .upload {
- background: #2199f8;
- margin-left: 25px;
- }
- .add {
- background: #fff;
- color: #000;
- margin-left: 25px;
- }
- }
- }
- .content {
- width: 100%;
- height: calc(100% - 74px - 40px - 32px);
- box-sizing: border-box;
- background: #101010;
- padding: 13px 20px 20px 20px;
- .search-form {
- height: 40px;
- margin: 5px 0;
- display: flex;
- justify-content: flex-end;
- // justify-content: space-between;
- ::v-deep {
- .el-form-item__label {
- color: #fff;
- }
- .el-form-item__content {
- width: 190px;
- }
- .el-input__wrapper {
- background: #101010;
- box-shadow: none;
- border: 1px solid rgba(255, 255, 255, 0.7);
- .el-input__inner {
- color: #fff;
- }
- }
- }
- .button {
- display: flex;
- .btn {
- width: 84px;
- &.reset {
- margin-left: 25px;
- }
- }
- }
- }
- .box {
- border: 1px solid rgba(255, 255, 255, 0.4);
- border-radius: 8px;
- padding: 20px;
- box-sizing: border-box;
- background: #232323;
- width: 100%;
- height: calc(100% - 50px);
- position: relative;
- .map-box {
- width: 100%;
- height: 100%;
- border-radius: 4px;
- border: 1px solid rgba(255, 255, 255, 0.4);
- .map {
- width: 100%;
- height: 100%;
- }
- }
- .tool-group {
- position: absolute;
- display: flex;
- right: calc(500px + 36px);
- top: 42px;
- .btn {
- background: #fff;
- color: #000;
- margin-right: 10px;
- }
- .delete {
- background: #e45c5c;
- color: #fff;
- }
- }
- .edit-popup {
- width: 500px;
- height: calc(100% - 53px - 20px);
- position: absolute;
- top: 36px;
- right: 36px;
- border: 1px solid rgba(255, 255, 255, 0.4);
- border-radius: 8px;
- background: #232323;
- .edit-title {
- padding: 0 10px;
- background: rgba(68, 68, 68, 0.4);
- border-bottom: 1px solid rgba(68, 68, 68, 0.4);
- display: flex;
- align-items: center;
- justify-content: space-between;
- .btn-group {
- display: flex;
- .ml {
- margin-left: 20px;
- }
- }
- .name {
- display: flex;
- padding: 12px 0px;
- align-items: center;
- }
- span {
- margin-left: 8px;
- font-size: 18px;
- font-family: "SOURCEHANTIFINE";
- }
- .edit {
- color: #2199f8;
- padding: 6px 20px;
- border: 1px solid #2199f8;
- border-radius: 4px;
- cursor: pointer;
- }
- }
- .edit-cont {
- padding: 16px;
- width: calc(100% - 32px);
- height: calc(100% - 64px - 84px);
- .form-inline {
- height: 320px;
- &.no-area {
- height: 260px;
- }
- ::v-deep {
- .el-input {
- width: 200px;
- --el-input-placeholder-color: #666666;
- }
- .el-form-item__label {
- color: #bbbbbb;
- }
- .el-input__wrapper {
- background: #232323;
- border: 1px solid #444444;
- box-shadow: none;
- .el-input__inner {
- color: #fff;
- }
- }
- }
- }
- .list-box {
- width: 100%;
- height: calc(100% - 320px);
- &.no-area {
- height: calc(100% - 260px);
- }
- span {
- color: #bbbbbb;
- }
- .list-cont {
- width: 100%;
- height: calc(100% - 20px);
- border-radius: 4px;
- margin-top: 5px;
- background: rgba(68, 68, 68, 0.4);
- padding: 12px 16px;
- box-sizing: border-box;
- overflow-y: auto;
- .list-item {
- width: 100%;
- margin-bottom: 8px;
- display: flex;
- align-items: center;
- .item-box {
- padding: 8px;
- border: 1px solid #444444;
- border-radius: 4px;
- margin-left: 10px;
- }
- }
- }
- }
- }
- .edit-footer {
- width: 100%;
- height: 64px;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- box-sizing: border-box;
- padding: 12px 16px;
- border-top: 1px solid rgba(68, 68, 68, 0.4);
- background: rgba(68, 68, 68, 0.4);
- .btn {
- padding: 10px 35px;
- }
- .cancel {
- border: 1px solid rgba(255, 255, 255, 0.4);
- margin-right: 16px;
- }
- .save {
- background: #2199f8;
- }
- }
- }
- }
- }
- }
- .dialog-footer {
- .btn {
- width: 200px;
- height: 40px;
- }
- }
- </style>
|