duy 1 month ago
parent
commit
e7125b287e
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/views/systemService/test.vue

+ 4 - 4
src/views/systemService/test.vue

@@ -90,7 +90,7 @@
                         </div>
                     </hc-card>
                     <hc-card class="ml-2">
-                        <div v-if="progressObj.TotalCount === 0" style="line-height: 26px;">
+                        <div v-if="progressObj.totalCount === 0" style="line-height: 26px;">
                             <div>
                                 <div class="text-16px font-800">电签检测</div>
                                 <div>暂无任务...</div>
@@ -108,7 +108,7 @@
                                         size="small"
                                         style="width: 80%;"
                                     />
-                                    <span class="ml-1">{{ `${progressObj.finishCount}/${progressObj.TotalCount}` }}</span>
+                                    <span class="ml-1">{{ `${progressObj.finishCount}/${progressObj.totalCount}` }}</span>
                                 </div>
                             </div>
                         </div>
@@ -1541,7 +1541,7 @@ const ElTreeMenuClick = async ({ key, node, data, keys }) => {
 //获取进度状态
 const progressObj = ref({
     finishCount:0,
-    TotalCount:0,
+    totalCount:0,
     pace:0,
 })
 const getCheckPdfPaceInfoData = async () => {
@@ -1559,7 +1559,7 @@ const getCheckPdfPaceInfoData = async () => {
         } else {
           progressObj.value = {
             finishCount:0,
-            TotalCount:0,
+            totalCount:0,
             pace:0,
         }
         }