update
This commit is contained in:
parent
7b28725b13
commit
3d9934f8c8
@ -181,7 +181,9 @@ const handleShowMoreFormBox = () => {
|
|||||||
if (!isShowFilterIconList.value) {
|
if (!isShowFilterIconList.value) {
|
||||||
isShowFilterIconList.value = true;
|
isShowFilterIconList.value = true;
|
||||||
}
|
}
|
||||||
showSearchForm.value = !showSearchForm.value;
|
if (!showSearchForm.value) {
|
||||||
|
showSearchForm.value = true
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// 关闭搜索表单
|
// 关闭搜索表单
|
||||||
|
|||||||
@ -3,6 +3,7 @@
|
|||||||
height: 100vh;
|
height: 100vh;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
.l7-control-container {
|
.l7-control-container {
|
||||||
.l7-bottom {
|
.l7-bottom {
|
||||||
.l7-control-logo {
|
.l7-control-logo {
|
||||||
@ -84,9 +85,11 @@
|
|||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
.areaItem {
|
.areaItem {
|
||||||
margin-right: 16px;
|
margin-right: 16px;
|
||||||
|
|
||||||
.color {
|
.color {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
@ -94,6 +97,7 @@
|
|||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,13 +49,13 @@ import {
|
|||||||
|
|
||||||
// 配色方案一
|
// 配色方案一
|
||||||
let colorList1 = [
|
let colorList1 = [
|
||||||
"#4F83FA",
|
"#4F83FA", "#A39BFF", "#63B6FC", "#88DFB2", "#88C3BF", "#d9dcf3",
|
||||||
"#A39BFF",
|
"#FF7F50", "#87CEFA", "#8A2BE2", "#A52A2A", "#DEB887", "#5F9EA0",
|
||||||
"#63B6FC",
|
"#7FFF00", "#D2691E", "#FF69B4", "#CD5C5C", "#8B0000", "#006400",
|
||||||
"#88DFB2",
|
"#FFD700", "#DAA520", "#808080", "#F0E68C", "#ADFF2F", "#00008B",
|
||||||
"#88C3BF",
|
"#008080", "#FF00FF", "#800080", "#FF6347", "#2E8B57", "#F4A460"
|
||||||
"#d9dcf3",
|
|
||||||
];
|
];
|
||||||
|
|
||||||
// 配色方案二
|
// 配色方案二
|
||||||
let colorList2 = [
|
let colorList2 = [
|
||||||
"#627FFF",
|
"#627FFF",
|
||||||
@ -246,7 +246,7 @@ const handleGetAllService = async () => {
|
|||||||
item.SPREGIONTYPETYPE = typeID;
|
item.SPREGIONTYPETYPE = typeID;
|
||||||
SPREGIONTYPETYPEObj[item.SPREGIONTYPE_ID] = colorList1[typeID];
|
SPREGIONTYPETYPEObj[item.SPREGIONTYPE_ID] = colorList1[typeID];
|
||||||
SPREGIONTYPECOLORLIST.push({
|
SPREGIONTYPECOLORLIST.push({
|
||||||
label: item.SPREGIONTYPE_NAME,
|
label: item.SPREGIONTYPE_NAME.indexOf('管理单元') !== -1 ? item.SPREGIONTYPE_NAME.split('管理单元')[0] : item.SPREGIONTYPE_NAME,
|
||||||
value: colorList1[typeID],
|
value: colorList1[typeID],
|
||||||
});
|
});
|
||||||
typeID += 1;
|
typeID += 1;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user