修改bug
This commit is contained in:
@ -152,14 +152,14 @@ export default {
|
|||||||
},
|
},
|
||||||
system: {
|
system: {
|
||||||
systemTitle: '系统面板',
|
systemTitle: '系统面板',
|
||||||
authorize: '授权信息',
|
authorize: '授权管理',
|
||||||
setting: '系统设置',
|
setting: '系统管理',
|
||||||
project: '工程管理',
|
project: '工程管理',
|
||||||
device: '设备管理',
|
device: '设备管理',
|
||||||
materials: '物资管理',
|
materials: '物资管理',
|
||||||
modelManage: '模型管理',
|
modelManage: '模型管理',
|
||||||
graphLabelManage: '军标管理',
|
|
||||||
photoManage: '图标管理',
|
photoManage: '图标管理',
|
||||||
|
graphLabelManage: '军标管理',
|
||||||
version: '版本信息'
|
version: '版本信息'
|
||||||
},
|
},
|
||||||
auths: {
|
auths: {
|
||||||
|
|||||||
1
src/renderer/src/icons/svg/close.svg
Normal file
1
src/renderer/src/icons/svg/close.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="10" height="10" viewBox="0 0 10 10" fill="none"><path d="M5.69937 5L9.80167 0.897704C10.0017 0.697704 10 0.59666 10 0.39666C9.9 0.19666 9.80334 0.1 9.60334 0C9.40334 0 9.3023 -0.00167015 9.1023 0.19833L5 4.30063L0.897704 0.19833C0.797704 0.0983299 0.701044 0 0.501044 0C0.401044 0 0.29833 0.0983299 0.19833 0.19833C0.0983299 0.29833 0 0.401044 0 0.501044C0 0.701044 0.0983299 0.797704 0.19833 0.897704L4.30063 5L0.19833 9.1023C-0.00167015 9.3023 0 9.40334 0 9.60334C0.1 9.80334 0.19666 9.9 0.39666 10C0.59666 10 0.697704 10.0017 0.897704 9.80167L5 5.69937L9.1023 9.80167C9.2023 9.90167 9.29896 10 9.49896 10C9.59896 10 9.70167 9.90167 9.80167 9.80167C9.90167 9.70167 10 9.59896 10 9.49896C10 9.29896 9.90167 9.2023 9.80167 9.1023L5.69937 5Z" fill="#FFFFFF" ></path></svg>
|
||||||
|
After Width: | Height: | Size: 863 B |
1
src/renderer/src/icons/svg/crossPoint.svg
Normal file
1
src/renderer/src/icons/svg/crossPoint.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 36 KiB |
1
src/renderer/src/icons/svg/posiFly.svg
Normal file
1
src/renderer/src/icons/svg/posiFly.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 20 KiB |
@ -20,7 +20,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
<!-- 主题色 -->
|
<!-- 主题色 -->
|
||||||
<div class="detailSkin"></div>
|
<!-- <div class="detailSkin"></div> -->
|
||||||
<div class="detailSkin">
|
<div class="detailSkin">
|
||||||
<span class="titleLabel">{{ t('systemSetting.theme') }}</span>
|
<span class="titleLabel">{{ t('systemSetting.theme') }}</span>
|
||||||
<el-select
|
<el-select
|
||||||
@ -66,7 +66,13 @@
|
|||||||
<el-select style="width: 175px" v-model="systemSetting.coordinate" @change="sysChange">
|
<el-select style="width: 175px" v-model="systemSetting.coordinate" @change="sysChange">
|
||||||
<div
|
<div
|
||||||
class="group-header"
|
class="group-header"
|
||||||
:class="isHotGroupOpen ? 'arrowActive' : ''"
|
:class="
|
||||||
|
name_map1.filter((item) => {
|
||||||
|
return item.epsg == systemSetting.coordinate
|
||||||
|
}).length > 0
|
||||||
|
? 'arrowActive'
|
||||||
|
: ''
|
||||||
|
"
|
||||||
@click="toggleGroup('hot')"
|
@click="toggleGroup('hot')"
|
||||||
>
|
>
|
||||||
地理坐标系
|
地理坐标系
|
||||||
@ -74,14 +80,26 @@
|
|||||||
v-if="isHotGroupOpen"
|
v-if="isHotGroupOpen"
|
||||||
name="arrow2"
|
name="arrow2"
|
||||||
:size="10"
|
:size="10"
|
||||||
color="rgba(0, 255, 255, 1)"
|
:color="
|
||||||
|
name_map1.filter((item) => {
|
||||||
|
return item.epsg == systemSetting.coordinate
|
||||||
|
}).length > 0
|
||||||
|
? 'rgba(0, 255, 255, 1)'
|
||||||
|
: 'rgba(255, 255, 255, 1)'
|
||||||
|
"
|
||||||
style="margin-left: 10px"
|
style="margin-left: 10px"
|
||||||
></svg-icon>
|
></svg-icon>
|
||||||
<svg-icon
|
<svg-icon
|
||||||
v-else
|
v-else
|
||||||
name="arrow1"
|
name="arrow1"
|
||||||
:size="10"
|
:size="10"
|
||||||
color="rgba(255, 255, 255, 1)"
|
:color="
|
||||||
|
name_map1.filter((item) => {
|
||||||
|
return item.epsg == systemSetting.coordinate
|
||||||
|
}).length > 0
|
||||||
|
? 'rgba(0, 255, 255, 1)'
|
||||||
|
: 'rgba(255, 255, 255, 1)'
|
||||||
|
"
|
||||||
style="margin-left: 10px"
|
style="margin-left: 10px"
|
||||||
></svg-icon>
|
></svg-icon>
|
||||||
</div>
|
</div>
|
||||||
@ -95,7 +113,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="group-header"
|
class="group-header"
|
||||||
:class="isHotGroupOpen2 ? 'arrowActive' : ''"
|
:class="
|
||||||
|
name_map2.filter((item) => {
|
||||||
|
return item.epsg == systemSetting.coordinate
|
||||||
|
}).length > 0
|
||||||
|
? 'arrowActive'
|
||||||
|
: ''
|
||||||
|
"
|
||||||
@click="toggleGroup('ty')"
|
@click="toggleGroup('ty')"
|
||||||
>
|
>
|
||||||
投影坐标系
|
投影坐标系
|
||||||
@ -103,14 +127,26 @@
|
|||||||
v-if="isHotGroupOpen2"
|
v-if="isHotGroupOpen2"
|
||||||
name="arrow2"
|
name="arrow2"
|
||||||
:size="10"
|
:size="10"
|
||||||
color="rgba(0, 255, 255, 1)"
|
:color="
|
||||||
|
name_map2.filter((item) => {
|
||||||
|
return item.epsg == systemSetting.coordinate
|
||||||
|
}).length > 0
|
||||||
|
? 'rgba(0, 255, 255, 1)'
|
||||||
|
: 'rgba(255, 255, 255, 1)'
|
||||||
|
"
|
||||||
style="margin-left: 10px"
|
style="margin-left: 10px"
|
||||||
></svg-icon>
|
></svg-icon>
|
||||||
<svg-icon
|
<svg-icon
|
||||||
v-else
|
v-else
|
||||||
name="arrow1"
|
name="arrow1"
|
||||||
:size="10"
|
:size="10"
|
||||||
color="rgba(255, 255, 255, 1)"
|
:color="
|
||||||
|
name_map2.filter((item) => {
|
||||||
|
return item.epsg == systemSetting.coordinate
|
||||||
|
}).length > 0
|
||||||
|
? 'rgba(0, 255, 255, 1)'
|
||||||
|
: 'rgba(255, 255, 255, 1)'
|
||||||
|
"
|
||||||
style="margin-left: 10px"
|
style="margin-left: 10px"
|
||||||
></svg-icon>
|
></svg-icon>
|
||||||
</div>
|
</div>
|
||||||
@ -124,7 +160,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
<div class="detailSkin"></div>
|
<!-- <div class="detailSkin"></div> -->
|
||||||
<div class="detailSkin" v-show="showPosiType">
|
<div class="detailSkin" v-show="showPosiType">
|
||||||
<span class="titleLabel">{{ t('systemSetting.latitude') }}</span>
|
<span class="titleLabel">{{ t('systemSetting.latitude') }}</span>
|
||||||
<el-select
|
<el-select
|
||||||
@ -167,7 +203,7 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
<div class="detailSkin1"></div>
|
<!-- <div class="detailSkin1"></div> -->
|
||||||
<div class="detailSkin1">
|
<div class="detailSkin1">
|
||||||
<span class="titleLabel">{{ t('systemSetting.areaUnit') }}</span>
|
<span class="titleLabel">{{ t('systemSetting.areaUnit') }}</span>
|
||||||
<el-select
|
<el-select
|
||||||
@ -202,7 +238,7 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
<div class="detailSkin1"></div>
|
<!-- <div class="detailSkin1"></div> -->
|
||||||
<div class="detailSkin1">
|
<div class="detailSkin1">
|
||||||
<span class="titleLabel">{{ t('systemSetting.speedUnit') }}</span>
|
<span class="titleLabel">{{ t('systemSetting.speedUnit') }}</span>
|
||||||
<el-select
|
<el-select
|
||||||
@ -268,7 +304,7 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
<div class="detailSkin1"></div>
|
<!-- <div class="detailSkin1"></div> -->
|
||||||
<div class="detailSkin1">
|
<div class="detailSkin1">
|
||||||
<span class="titleLabel">{{ t('ConcurrencyControl') }}</span>
|
<span class="titleLabel">{{ t('ConcurrencyControl') }}</span>
|
||||||
<el-select
|
<el-select
|
||||||
@ -703,21 +739,25 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.seting_content {
|
.seting_content {
|
||||||
width: 100%;
|
width: calc(100% - 22px);
|
||||||
padding: 15px 0 0 22px;
|
margin: 15px 0 0 22px;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(3, 1fr);
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
.detailSkin {
|
.detailSkin {
|
||||||
width: 100%;
|
width: 50%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: left;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
flex-direction: row;
|
||||||
padding-bottom: 15px;
|
padding-bottom: 15px;
|
||||||
> span {
|
> span {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
color: #c8cfcf;
|
color: #c8cfcf;
|
||||||
display: block;
|
display: block;
|
||||||
width: 86px;
|
// width: 86px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -725,10 +765,12 @@ onMounted(() => {
|
|||||||
.seting_content1 {
|
.seting_content1 {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 15px 0 0 22px;
|
padding: 15px 0 0 22px;
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
.detailSkin1 {
|
.detailSkin1 {
|
||||||
width: 100%;
|
width: 50%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -737,7 +779,7 @@ onMounted(() => {
|
|||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
color: #c8cfcf;
|
color: #c8cfcf;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 86px;
|
// width: 86px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -760,7 +802,7 @@ onMounted(() => {
|
|||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
color: #c8cfcf;
|
color: #c8cfcf;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 86px;
|
// width: 86px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -792,5 +834,6 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
.titleLabel {
|
.titleLabel {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
text-align: left !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -105,12 +105,12 @@
|
|||||||
<el-tab-pane :label="t('system.modelManage')" name="modelManage">
|
<el-tab-pane :label="t('system.modelManage')" name="modelManage">
|
||||||
<modelManage></modelManage>
|
<modelManage></modelManage>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane :label="t('system.graphLabelManage')" name="graphLabelManage">
|
|
||||||
<graphLabelManage></graphLabelManage>
|
|
||||||
</el-tab-pane>
|
|
||||||
<el-tab-pane :label="t('system.photoManage')" name="photoManage">
|
<el-tab-pane :label="t('system.photoManage')" name="photoManage">
|
||||||
<photoManage></photoManage>
|
<photoManage></photoManage>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
|
<el-tab-pane :label="t('system.graphLabelManage')" name="graphLabelManage">
|
||||||
|
<graphLabelManage></graphLabelManage>
|
||||||
|
</el-tab-pane>
|
||||||
<el-tab-pane :label="t('system.version')" name="version">
|
<el-tab-pane :label="t('system.version')" name="version">
|
||||||
<version></version>
|
<version></version>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
|
|||||||
Reference in New Issue
Block a user