Browse Source

modify ProAnalysis

tags/v1.21.11.2^2
Gitea 4 years ago
parent
commit
71cc71136a
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      web_src/js/components/ProAnalysis.vue

+ 3
- 3
web_src/js/components/ProAnalysis.vue View File

@@ -185,7 +185,7 @@
</el-col>
<el-col :span='4' style="text-align: center;">
<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-row>
</div>
@@ -752,7 +752,7 @@
var ydata_openI=[]
for(var i =0;i<this.tableDataIDOpenI.length;i++){
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(xdata_openI)
@@ -839,7 +839,7 @@
var ydata_commit=[]
// if ()
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_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))


Loading…
Cancel
Save