Browse Source

修改ui

master
DIAMOND 9 months ago
parent
commit
666fef9bfe
  1. 9
      src/views/military/modules/earthMap/scene/SceneManage.vue

9
src/views/military/modules/earthMap/scene/SceneManage.vue

@ -91,13 +91,13 @@
<a-col :span="24" class="xyzContainer"> <a-col :span="24" class="xyzContainer">
<span>中心经度</span> <span>中心经度</span>
<a-tag color="#2db7f5"> <a-tag color="#2db7f5">
{{ Number.parseFloat(record.xyz[0] == undefined ? 0 : record.xyz[0]).toFixed(6) }} {{ Number.parseFloat(record.xyz[0] == undefined ? 0 : earthUtils.radianToDegree(record.xyz[0])).toFixed(6) }}
</a-tag> </a-tag>
</a-col> </a-col>
<a-col :span="24" class="xyzContainer"> <a-col :span="24" class="xyzContainer">
<span>中心纬度</span> <span>中心纬度</span>
<a-tag color="#87d068"> <a-tag color="#87d068">
{{ Number.parseFloat(record.xyz[1] == undefined ? 0 : record.xyz[1]).toFixed(6) }} {{ Number.parseFloat(record.xyz[1] == undefined ? 0 : earthUtils.radianToDegree(record.xyz[1])).toFixed(6) }}
</a-tag> </a-tag>
</a-col> </a-col>
<a-col :span="24" class="xyzContainer"> <a-col :span="24" class="xyzContainer">
@ -135,13 +135,13 @@
<a-col :span="24" class="xyzContainer"> <a-col :span="24" class="xyzContainer">
<span>相机经度</span> <span>相机经度</span>
<a-tag color="#2db7f5"> <a-tag color="#2db7f5">
{{ Number.parseFloat(record.cxyz[0] == undefined ? 0 : record.cxyz[0]).toFixed(6) }} {{ Number.parseFloat(record.cxyz[0] == undefined ? 0 : earthUtils.radianToDegree(record.cxyz[0])).toFixed(6) }}
</a-tag> </a-tag>
</a-col> </a-col>
<a-col :span="24" class="xyzContainer"> <a-col :span="24" class="xyzContainer">
<span>相机纬度</span> <span>相机纬度</span>
<a-tag color="#87d068"> <a-tag color="#87d068">
{{ Number.parseFloat(record.cxyz[1] == undefined ? 0 : record.cxyz[1]).toFixed(6) }} {{ Number.parseFloat(record.cxyz[1] == undefined ? 0 : earthUtils.radianToDegree(record.cxyz[1])).toFixed(6) }}
</a-tag> </a-tag>
</a-col> </a-col>
<a-col :span="24" class="xyzContainer"> <a-col :span="24" class="xyzContainer">
@ -180,6 +180,7 @@
import deleteIcon from '@/assets/images/delete.png'; import deleteIcon from '@/assets/images/delete.png';
import edit from '@/assets/images/edit.png'; import edit from '@/assets/images/edit.png';
import { CheckOutlined, CloseOutlined, ExclamationCircleOutlined } from '@ant-design/icons-vue'; import { CheckOutlined, CloseOutlined, ExclamationCircleOutlined } from '@ant-design/icons-vue';
import earthUtils from '@/utils/earthMap/earth';
// api // api
const querySceneList = (params) => { const querySceneList = (params) => {
return defHttp.get({ url: '/military/msMapScene/list', params }, { isTransformResponse: false }); return defHttp.get({ url: '/military/msMapScene/list', params }, { isTransformResponse: false });

Loading…
Cancel
Save