Commit 84732944 by chenjinjing

no message

parent 5c8a55ce
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -232,6 +232,9 @@ async function 加载土壤温度变化趋势() { ...@@ -232,6 +232,9 @@ async function 加载土壤温度变化趋势() {
let value = Math.round(num / count * 10000)/100; let value = Math.round(num / count * 10000)/100;
resultMap[area].push({key:subKey, value}); resultMap[area].push({key:subKey, value});
} }
resultMap[area].sort( (a, b) => {
return a.key - b.key;
})
} }
return resultMap; return resultMap;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment