Browse Source

调整流程的显示

chris 1 năm trước cách đây
mục cha
commit
498887531f
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  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: '结束'
     })
   }