@@ -111,7 +111,7 @@ export default {
this.getTreeList()
this.search.orgId = this.orgId
this.selectedOrgName = this.orgName
- this.stateStatistic()
+ this.statisticState()
},
computed: {
...mapGetters(['orgName', 'orgId', 'dictionary']),
@@ -136,7 +136,10 @@ export default {
}
let minute = duration % 60
- str += `${minute}分`
+ if(minute>0){
+ str += `${minute}分`
+ }
+
return str