bugfix
This commit is contained in:
parent
acde5d4f18
commit
cec720ce92
|
@ -117,11 +117,9 @@ export class MessageBoxComponent
|
|||
searchMessageSearchType: [MessageSearchType.Name]
|
||||
});
|
||||
|
||||
this.messageRetrieveList$ = this.store
|
||||
.pipe(
|
||||
this.messageRetrieveList$ = this.store.pipe(
|
||||
select(AppStore.MessengerSelector.MessageSelector.selectAllReceiveList)
|
||||
)
|
||||
.pipe(tap(info => console.log(info)));
|
||||
);
|
||||
|
||||
this.messageSendList$ = this.store.pipe(
|
||||
select(AppStore.MessengerSelector.MessageSelector.selectAllSendList)
|
||||
|
|
|
@ -88,9 +88,17 @@ export class Effects {
|
|||
userInfos.push(...(res as DeptUserData).userInfos);
|
||||
break;
|
||||
case SSVC_TYPE_QUERY_DEPT_USER_RES:
|
||||
userInfos.sort((a, b) => {
|
||||
return a.name < b.name ? -1 : a.name > b.name ? 1 : 0;
|
||||
});
|
||||
userInfos.sort((a, b) =>
|
||||
a.order < b.order
|
||||
? -1
|
||||
: a.order > b.order
|
||||
? 1
|
||||
: a.name < b.name
|
||||
? -1
|
||||
: a.name > b.name
|
||||
? 1
|
||||
: 0
|
||||
);
|
||||
|
||||
this.store.dispatch(
|
||||
deptUserSuccess({
|
||||
|
|
|
@ -35,20 +35,9 @@ export const reducer = createReducer(
|
|||
}),
|
||||
|
||||
on(deptUserSuccess, (state, action) => {
|
||||
const userList = action.userInfos.sort((a, b) =>
|
||||
a.order < b.order
|
||||
? -1
|
||||
: a.order > b.order
|
||||
? 1
|
||||
: a.name < b.name
|
||||
? -1
|
||||
: a.name > b.name
|
||||
? 1
|
||||
: 0
|
||||
);
|
||||
return {
|
||||
...state,
|
||||
selectedDepartmentUserInfoList: userList,
|
||||
selectedDepartmentUserInfoList: action.userInfos,
|
||||
selectedDepartmentStatus: action.res,
|
||||
selectedDepartmentProcessing: false
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user