This commit is contained in:
ylj20011123 2025-11-24 16:26:00 +08:00
parent 7b28725b13
commit 3d9934f8c8
3 changed files with 33 additions and 27 deletions

View File

@ -181,7 +181,9 @@ const handleShowMoreFormBox = () => {
if (!isShowFilterIconList.value) {
isShowFilterIconList.value = true;
}
showSearchForm.value = !showSearchForm.value;
if (!showSearchForm.value) {
showSearchForm.value = true
}
};
//

View File

@ -3,6 +3,7 @@
height: 100vh;
position: relative;
overflow: hidden;
.l7-control-container {
.l7-bottom {
.l7-control-logo {
@ -84,9 +85,11 @@
left: 50%;
transform: translateX(-50%);
display: flex;
flex-wrap: nowrap;
flex-wrap: wrap;
.areaItem {
margin-right: 16px;
.color {
width: 16px;
height: 16px;
@ -94,6 +97,7 @@
margin-right: 8px;
display: inline-block;
}
.text {
color: #fff;
}

View File

@ -49,13 +49,13 @@ import {
//
let colorList1 = [
"#4F83FA",
"#A39BFF",
"#63B6FC",
"#88DFB2",
"#88C3BF",
"#d9dcf3",
"#4F83FA", "#A39BFF", "#63B6FC", "#88DFB2", "#88C3BF", "#d9dcf3",
"#FF7F50", "#87CEFA", "#8A2BE2", "#A52A2A", "#DEB887", "#5F9EA0",
"#7FFF00", "#D2691E", "#FF69B4", "#CD5C5C", "#8B0000", "#006400",
"#FFD700", "#DAA520", "#808080", "#F0E68C", "#ADFF2F", "#00008B",
"#008080", "#FF00FF", "#800080", "#FF6347", "#2E8B57", "#F4A460"
];
//
let colorList2 = [
"#627FFF",
@ -246,7 +246,7 @@ const handleGetAllService = async () => {
item.SPREGIONTYPETYPE = typeID;
SPREGIONTYPETYPEObj[item.SPREGIONTYPE_ID] = colorList1[typeID];
SPREGIONTYPECOLORLIST.push({
label: item.SPREGIONTYPE_NAME,
label: item.SPREGIONTYPE_NAME.indexOf('管理单元') !== -1 ? item.SPREGIONTYPE_NAME.split('管理单元')[0] : item.SPREGIONTYPE_NAME,
value: colorList1[typeID],
});
typeID += 1;