1505aa3e by tianhaohao@pashanhoo.com

111

1 parent ea897892
...@@ -80,8 +80,9 @@ export default { ...@@ -80,8 +80,9 @@ export default {
80 bdcdj.getWorkerStatistics().then((res) => { 80 bdcdj.getWorkerStatistics().then((res) => {
81 this.tableData.data = res.result; 81 this.tableData.data = res.result;
82 for (let item of this.tableData.data) { 82 for (let item of this.tableData.data) {
83 item.womanRatio = ((item.womanNum / item.total) * 100).toFixed(2)+'%'; } 83 item.womanRatio =
84 console.log(this.tableData.data); 84 ((item.womanNum / item.total) * 100).toFixed(2) + "%";
85 }
85 }); 86 });
86 }, 87 },
87 // 重置 88 // 重置
......