修改bug
This commit is contained in:
@ -152,14 +152,14 @@ export default {
|
||||
},
|
||||
system: {
|
||||
systemTitle: '系统面板',
|
||||
authorize: '授权信息',
|
||||
setting: '系统设置',
|
||||
authorize: '授权管理',
|
||||
setting: '系统管理',
|
||||
project: '工程管理',
|
||||
device: '设备管理',
|
||||
materials: '物资管理',
|
||||
modelManage: '模型管理',
|
||||
graphLabelManage: '军标管理',
|
||||
photoManage: '图标管理',
|
||||
graphLabelManage: '军标管理',
|
||||
version: '版本信息'
|
||||
},
|
||||
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>
|
||||
</div>
|
||||
<!-- 主题色 -->
|
||||
<div class="detailSkin"></div>
|
||||
<!-- <div class="detailSkin"></div> -->
|
||||
<div class="detailSkin">
|
||||
<span class="titleLabel">{{ t('systemSetting.theme') }}</span>
|
||||
<el-select
|
||||
@ -66,7 +66,13 @@
|
||||
<el-select style="width: 175px" v-model="systemSetting.coordinate" @change="sysChange">
|
||||
<div
|
||||
class="group-header"
|
||||
:class="isHotGroupOpen ? 'arrowActive' : ''"
|
||||
:class="
|
||||
name_map1.filter((item) => {
|
||||
return item.epsg == systemSetting.coordinate
|
||||
}).length > 0
|
||||
? 'arrowActive'
|
||||
: ''
|
||||
"
|
||||
@click="toggleGroup('hot')"
|
||||
>
|
||||
地理坐标系
|
||||
@ -74,14 +80,26 @@
|
||||
v-if="isHotGroupOpen"
|
||||
name="arrow2"
|
||||
: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"
|
||||
></svg-icon>
|
||||
<svg-icon
|
||||
v-else
|
||||
name="arrow1"
|
||||
: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"
|
||||
></svg-icon>
|
||||
</div>
|
||||
@ -95,7 +113,13 @@
|
||||
</div>
|
||||
<div
|
||||
class="group-header"
|
||||
:class="isHotGroupOpen2 ? 'arrowActive' : ''"
|
||||
:class="
|
||||
name_map2.filter((item) => {
|
||||
return item.epsg == systemSetting.coordinate
|
||||
}).length > 0
|
||||
? 'arrowActive'
|
||||
: ''
|
||||
"
|
||||
@click="toggleGroup('ty')"
|
||||
>
|
||||
投影坐标系
|
||||
@ -103,14 +127,26 @@
|
||||
v-if="isHotGroupOpen2"
|
||||
name="arrow2"
|
||||
: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"
|
||||
></svg-icon>
|
||||
<svg-icon
|
||||
v-else
|
||||
name="arrow1"
|
||||
: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"
|
||||
></svg-icon>
|
||||
</div>
|
||||
@ -124,7 +160,7 @@
|
||||
</div>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="detailSkin"></div>
|
||||
<!-- <div class="detailSkin"></div> -->
|
||||
<div class="detailSkin" v-show="showPosiType">
|
||||
<span class="titleLabel">{{ t('systemSetting.latitude') }}</span>
|
||||
<el-select
|
||||
@ -167,7 +203,7 @@
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="detailSkin1"></div>
|
||||
<!-- <div class="detailSkin1"></div> -->
|
||||
<div class="detailSkin1">
|
||||
<span class="titleLabel">{{ t('systemSetting.areaUnit') }}</span>
|
||||
<el-select
|
||||
@ -202,7 +238,7 @@
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="detailSkin1"></div>
|
||||
<!-- <div class="detailSkin1"></div> -->
|
||||
<div class="detailSkin1">
|
||||
<span class="titleLabel">{{ t('systemSetting.speedUnit') }}</span>
|
||||
<el-select
|
||||
@ -268,7 +304,7 @@
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="detailSkin1"></div>
|
||||
<!-- <div class="detailSkin1"></div> -->
|
||||
<div class="detailSkin1">
|
||||
<span class="titleLabel">{{ t('ConcurrencyControl') }}</span>
|
||||
<el-select
|
||||
@ -703,21 +739,25 @@ onMounted(() => {
|
||||
}
|
||||
}
|
||||
.seting_content {
|
||||
width: 100%;
|
||||
padding: 15px 0 0 22px;
|
||||
width: calc(100% - 22px);
|
||||
margin: 15px 0 0 22px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.detailSkin {
|
||||
width: 100%;
|
||||
width: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-items: left;
|
||||
box-sizing: border-box;
|
||||
flex-direction: row;
|
||||
padding-bottom: 15px;
|
||||
> span {
|
||||
font-size: 0.9rem;
|
||||
color: #c8cfcf;
|
||||
display: block;
|
||||
width: 86px;
|
||||
// width: 86px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
@ -725,10 +765,12 @@ onMounted(() => {
|
||||
.seting_content1 {
|
||||
width: 100%;
|
||||
padding: 15px 0 0 22px;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
.detailSkin1 {
|
||||
width: 100%;
|
||||
width: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
@ -737,7 +779,7 @@ onMounted(() => {
|
||||
font-size: 0.9rem;
|
||||
color: #c8cfcf;
|
||||
display: inline-block;
|
||||
width: 86px;
|
||||
// width: 86px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
@ -760,7 +802,7 @@ onMounted(() => {
|
||||
font-size: 0.9rem;
|
||||
color: #c8cfcf;
|
||||
display: inline-block;
|
||||
width: 86px;
|
||||
// width: 86px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
@ -792,5 +834,6 @@ onMounted(() => {
|
||||
}
|
||||
.titleLabel {
|
||||
margin-right: 10px;
|
||||
text-align: left !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -105,12 +105,12 @@
|
||||
<el-tab-pane :label="t('system.modelManage')" name="modelManage">
|
||||
<modelManage></modelManage>
|
||||
</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">
|
||||
<photoManage></photoManage>
|
||||
</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">
|
||||
<version></version>
|
||||
</el-tab-pane>
|
||||
|
||||
Reference in New Issue
Block a user