Forráskód Böngészése

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

LXXXY 5 éve
szülő
commit
95aaf475d1

+ 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>