| @@ -185,7 +185,7 @@ | |||||
| </el-col> | </el-col> | ||||
| <el-col :span='4' style="text-align: center;"> | <el-col :span='4' style="text-align: center;"> | ||||
| <el-row>任务完成比例</el-row> | <el-row>任务完成比例</el-row> | ||||
| <el-row class="item_content">{{tableDataIDTotal.issueClosedRatio}}</el-row> | |||||
| <el-row class="item_content">{{tableDataIDTotal.issueClosedRatio * 100}}%</el-row> | |||||
| </el-col> | </el-col> | ||||
| </el-row> | </el-row> | ||||
| </div> | </div> | ||||
| @@ -752,7 +752,7 @@ | |||||
| var ydata_openI=[] | var ydata_openI=[] | ||||
| for(var i =0;i<this.tableDataIDOpenI.length;i++){ | for(var i =0;i<this.tableDataIDOpenI.length;i++){ | ||||
| xdata_openI.push(this.tableDataIDOpenI[i].date); | xdata_openI.push(this.tableDataIDOpenI[i].date); | ||||
| ydata_openI.push(this.roundingF(this.tableDataIDOpenI[this.tableDataIDOpenI.length-1-i].openi)) | |||||
| ydata_openI.push(this.roundingF(this.tableDataIDOpenI[i].openi)) | |||||
| } | } | ||||
| console.log("ydata_openI:"+ydata_openI) | console.log("ydata_openI:"+ydata_openI) | ||||
| console.log(xdata_openI) | console.log(xdata_openI) | ||||
| @@ -839,7 +839,7 @@ | |||||
| var ydata_commit=[] | var ydata_commit=[] | ||||
| // if () | // if () | ||||
| for(var i =0;i<this.tableDataID.length;i++){ | for(var i =0;i<this.tableDataID.length;i++){ | ||||
| xdata.push(this.tableDataID[i].date); | |||||
| xdata.push(this.tableDataID[this.tableDataID.length-1-i].date); | |||||
| ydata_view.push(this.roundingF(this.tableDataID[this.tableDataID.length-1-i].view)) | ydata_view.push(this.roundingF(this.tableDataID[this.tableDataID.length-1-i].view)) | ||||
| ydata_download.push(this.roundingF(this.tableDataID[this.tableDataID.length-1-i].download)) | ydata_download.push(this.roundingF(this.tableDataID[this.tableDataID.length-1-i].download)) | ||||
| ydata_commit.push(this.roundingF(this.tableDataID[this.tableDataID.length-1-i].commit)) | ydata_commit.push(this.roundingF(this.tableDataID[this.tableDataID.length-1-i].commit)) | ||||