Sfoglia il codice sorgente

调整流程的显示

chris 1 anno fa
parent
commit
498887531f
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      src/api/util.js

+ 3 - 3
src/api/util.js

@@ -6,19 +6,19 @@
 export function dealStepData (list, stepList) {
   if (list) {
     stepList.push({
-      icon: 'el-icon-location',
+      // icon: 'el-icon-location',
       title: '开始'
     })
     list.forEach((item) => {
       stepList.push({
         // icon: item.approvalState === '0' ? 'el-icon-location' : 'el-icon-location-outline',
-        icon: 'el-icon-location',
+        // icon: 'el-icon-location',
         title: '状态:' + item.stepName,
         description: item.assigneeName ? '审批人:' + item.assigneeName : ''
       })
     })
     stepList.push({
-      icon: 'el-icon-location',
+      // icon: 'el-icon-location',
       title: '结束'
     })
   }