ソースを参照

queryTeamMember

qinzhipeng_v@didiglobal.com 4 年 前
コミット
03550d5521
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/views/workbench/components/searchSection.vue

+ 1 - 1
src/views/workbench/components/searchSection.vue

@@ -134,7 +134,7 @@ export default {
   methods: {
     async queryTeamMember() { // 获取团队人员
       if (this.workbench === '团队' || this.workbench === '团队忙碌' || this.workbench === '团队空闲') {
-        const res = await queryTeamMember({ teamIds: this.searchForm.teamIds, deptCode: this.searchForm.deptCode })
+        const res = await queryTeamMember({ teamIds: this.searchForm.teamIds, deptCodes: this.searchForm.deptCodes })
         if (res.code === 200) {
           res.data = res.data || []
           this.memberList = this.handleMember(res.data)