Commit 50c3e057 by lixinming

no message

parent f17a8d94
...@@ -170,20 +170,20 @@ export async function get图表(mid, rid, gid) { ...@@ -170,20 +170,20 @@ export async function get图表(mid, rid, gid) {
const sqlInfo = { const sqlInfo = {
"左侧爆发能量":{ "左侧爆发能量":{
sql:"select * from left_power where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3", sql:"select * from left_power where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_LEFT_POWER", "opponent":"OPPONENT_LEFT_POWER", "time":"TIME_LEFT" } keyInfo:{"self":"SELF_LEFT_POWER", "time":"TIME_LEFT" }
}, },
"右侧爆发能量":{ "右侧爆发能量":{
sql:"select * from right_power where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3", sql:"select * from right_power where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_RIGHT_POWER", "opponent":"OPPONENT_RIGHT_POWER", "time":"TIME_RIGHT" } keyInfo:{"opponent":"OPPONENT_RIGHT_POWER", "time":"TIME_RIGHT" }
}, },
"左侧球移动速度":{ "左侧球移动速度":{
sql:"select * from left_ballmove where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3", sql:"select * from left_ballmove where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_LEFT_BALLMOVE", "opponent":"OPPONENT_LEFT_BALLMOVE", "time":"TIME_LEFT" } keyInfo:{"opponent":"OPPONENT_LEFT_BALLMOVE", "time":"TIME_LEFT" }
}, },
"右侧球移动速度":{ "右侧球移动速度":{
sql:"select * from right_ballmove where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3", sql:"select * from right_ballmove where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_RIGHT_BALLMOVE", "opponent":"OPPONENT_RIGHT_BALLMOVE", "time":"TIME_RIGHT" } keyInfo:{"opponent":"OPPONENT_RIGHT_BALLMOVE", "time":"TIME_RIGHT" }
} }
}; };
let result = {}; let result = {};
......
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