答案 0 :(得分:0)
颜色是用值固定的,你可以用静态标记和样式来完成。
例如:
{ quantity: '', price: '', amount: '' }
.block-geomap {
position: relative;
}
.block-color {
position: absolute;
bottom: 0;
left: 0;
width: 300px;
background-color: rgba(255,255,255, .7);
pointer-events: none;
}
.color-list {
list-style: none;
}
.color-item span {
display: inline-block;
width: 20px;
height: 10px;
border: 1px solid #666;
margin-right: 5px;
}
.color-blue {
background-color: blue;
}
.color-green {
background-color: green;
}
.color-red {
background-color: red;
}