Browse Source

业务员管理列表数据业务员类型匹配值错误问题处理

@dongkboy 1 month ago
parent
commit
ae12ef303f
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/views/operationManagement/operation.vue

+ 3 - 0
src/views/operationManagement/operation.vue

@@ -206,7 +206,10 @@ const typeMatch = (typeAttr: string) => {
     '7': '渠道',
     '5': '团队',
     '8': '电销组',
+    '4': '工作室管理员',
     '3': '合伙人',
+    '2': '后线人员',
+    '1': '前线人员',
   }
   return typeAttr?.split(',')
     .map((typeId: any) => map[typeId] || typeId)