Explorar el Código

提交相关代码

Lijy hace 1 semana
padre
commit
bcd51a08a8

+ 1 - 1
fhKeeper/formulahousekeeper/timesheet_mld/src/views/team/index.vue

@@ -955,7 +955,7 @@
             <el-table-column prop="date" label="转移至人员" width="180">
               <template slot-scope="scope">
                 <el-select v-model="scope.row.toUserId" filterable placeholder="请选择" size="small">
-                  <el-option v-for="item in users" :key="item.id" :label="item.name" :value="item.id"></el-option>
+                  <el-option v-for="item in (scope.row.leaderList || [])" :key="item.leaderId" :label="item.userName" :value="item.leaderId"></el-option>
                 </el-select>
               </template>
             </el-table-column>