소스 검색

Merge branch 'msg-sever' of http://39.106.8.246:3003/web/ibms into msg-sever

LXXXY 5 년 전
부모
커밋
95aaf475d1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/components/data_admin/buildTask/taskStatistics.vue

+ 2 - 2
src/components/data_admin/buildTask/taskStatistics.vue

@@ -3,10 +3,10 @@
 		<div class="statistics-all flex-row">
       <div class="statistics-progress">
         <div class="statistics-progress-num">
-          <p>{{taskProgress + '%'}}</p>
+          <p>{{taskProgress?taskProgress:0 + '%'}}</p>
           <p>完成情况</p>
         </div>
-        <el-progress :width="90" type="circle" :percentage="taskProgress" :show-text="false"></el-progress>
+        <el-progress :width="90" type="circle" :percentage="taskProgress?taskProgress:0" :show-text="false"></el-progress>
       </div>
       <div class="statistics-all-box flex-col">
         <span>总任务:<b>{{allCount}}</b></span>