system-clients 3.2.26 → 3.2.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -439,10 +439,10 @@ export default {
|
|
439
439
|
},
|
440
440
|
watch: {
|
441
441
|
'jobProgressList.rows.length'(){
|
442
|
-
total = 0
|
443
|
-
if(jobProgressList.rows.length>0){
|
444
|
-
for (let i = 0; i < jobProgressList.rows.length; i++) {
|
445
|
-
if (jobProgressList.rows[i].f_job_state != '已完成'){
|
442
|
+
let total = 0
|
443
|
+
if(this.jobProgressList.rows.length>0){
|
444
|
+
for (let i = 0; i < this.jobProgressList.rows.length; i++) {
|
445
|
+
if (this.jobProgressList.rows[i].f_job_state != '已完成'){
|
446
446
|
total+= 1
|
447
447
|
}
|
448
448
|
}
|