Browse Source

【值班系统】后台管理-席位管理,值班人员列表有测试用户01,删除测试用户01后重新新增,新增人员列表中没有测试用户01

CzRger 1 year ago
parent
commit
d3c1029aaf
2 changed files with 16 additions and 4 deletions
  1. 8 1
      src/views/system/seat-manage/index.vue
  2. 8 3
      src/views/system/seat-manage/people.vue

+ 8 - 1
src/views/system/seat-manage/index.vue

@@ -344,9 +344,16 @@ export default defineComponent({
       state.seatInfo.editDutyInfo.tableData = []
     }
     const addPeople = () => {
+      const diffPeoples = []
+      state.seatInfo.dutyInfo.tableData.forEach(v => {
+        if (state.seatInfo.editDutyInfo.tableData.every(t => t.accountId !== v.accountId)) {
+          diffPeoples.push(v)
+        }
+      })
       state.transfer = {
         deptId: state.seatInfo.editDutyInfo.deptForm.deptId,
-        selectUserId: state.seatInfo.editDutyInfo.tableData.map(v => v.accountId)
+        selectUserId: state.seatInfo.editDutyInfo.tableData.map(v => v.accountId),
+        diffPeoples: diffPeoples
       }
       state.showPeople = true
     }

+ 8 - 3
src/views/system/seat-manage/people.vue

@@ -68,10 +68,10 @@ export default defineComponent({
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
     const state = reactive({
       cusDetail: <any>{},
-      peopleList: {},
+      peopleList: [],
       selectPeopleList: [],
       selectUserId: [],
-      loadingPeople: false
+      loadingPeople: false,
     })
     const ref_form = ref()
     watch(() => props.show, (n) => {
@@ -92,7 +92,12 @@ export default defineComponent({
       state.peopleList = []
       that.$api.getSeatDutyUnitPersonList({externalId: store.state.dictionary.deptMap.get(state.cusDetail.deptId).externalId}).then(res => {
         if (res.code === 200) {
-          state.peopleList = res.data.filter(v => !state.selectUserId.includes(v.id))
+          state.peopleList = [...res.data.filter(v => !state.selectUserId.includes(v.id)), ...props.transfer.diffPeoples.map(v => {
+            v.phoneNumber = v.linkPhone
+            v.displayName = v.name
+            v.id = v.accountId
+            return v
+          })]
         } else {
           ElMessage.error(res.message)
         }