fix: Remove unnecessary print statements

This commit is contained in:
ssongliu
2024-12-23 14:59:22 +08:00
committed by xuwei-fit2cloud
parent 27898f1a41
commit e8aa874195

View File

@@ -214,13 +214,10 @@ const changeLegendNumber = (prop?) => {
prop ? changeMisc(prop) : ''
}
const changeRangeItem = (prop, index) => {
console.log(state.legendForm.miscForm.mapLegendCustomRange[index])
console.log(mapLegendCustomRangeCacheList[index])
if (state.legendForm.miscForm.mapLegendCustomRange[index] === null) {
state.legendForm.miscForm.mapLegendCustomRange[index] = cloneDeep(
mapLegendCustomRangeCacheList[index]
)
console.log(state.legendForm.miscForm.mapLegendCustomRange[index])
}
changeMisc(prop)
}