Commit 9d7d1a13 by lixinming

no message

parent fec1084a
......@@ -159,6 +159,10 @@ export async function get单前比赛对局时间节点(mid) {
resultList.push({
key:`第${key}局`,
rid:parseInt(key),
selfScore:10,
opponentScore:9,
selfSuccess:"胜",
opponentSuccess:"负",
value:Object.values(rankMap[key])
});
}
......@@ -170,20 +174,20 @@ export async function get图表(mid, rid, gid) {
const sqlInfo = {
"左侧爆发能量":{
sql:"select * from left_power where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_LEFT_POWER", "time":"TIME_LEFT" }
keyInfo:{"self":"LEFT_POWER", "time":"TIME_LEFT" }
},
"右侧爆发能量":{
sql:"select * from right_power where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_RIGHT_POWER", "time":"TIME_RIGHT" }
keyInfo:{"self":"RIGHT_POWER", "time":"TIME_RIGHT" }
},
"左侧球移动速度":{
sql:"select * from left_ballmove where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_LEFT_BALLMOVE", "time":"TIME_LEFT" }
keyInfo:{"self":"LEFT_BALLMOVE", "time":"TIME_LEFT" }
},
"右侧球移动速度":{
sql:"select * from right_ballmove where m_id = Placeholder1 and r_id = Placeholder2 and g_id = Placeholder3",
keyInfo:{"self":"SELF_RIGHT_BALLMOVE", "time":"TIME_RIGHT" }
keyInfo:{"self":"RIGHT_BALLMOVE", "time":"TIME_RIGHT" }
}
};
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