@@ -220,7 +220,9 @@ export default {
if (k.type == c.name) {
let obj1 = {
count: k.count,
+ countStyle:((k.count / (k.count + k.time)) * 100) + 'px',
time: k.time,
+ timeStyle:((k.time / (k.count + k.time)) * 100) + 'px'
};
obj[k.type] = obj1;
}