wupengfei
4 天以前 70052530ac066119740f4d83a874986698b3c5d0
apps/bMiniApp/src/pages/home/index.vue
@@ -121,7 +121,7 @@
});
const queryState = reactive({
  orderType: HomeOrderType.Recommend,
  orderType: HomeOrderType.LastShelfTime,
});
const { infiniteLoadingProps } = useInfiniteLoading(
@@ -140,12 +140,17 @@
      userCredentials: queryMenuState.certificateType ? [queryMenuState.certificateType] : null,
    };
    return userResumeServices.getUserResumes(params, {
    return userResumeServices.getOpenUserResumes(params, {
      showLoading: false,
    });
  },
  {
    queryKey: ['userResumeServices/getUserResumes', queryState, queryMenuState, queryPositionState],
    queryKey: [
      'userResumeServices/getOpenUserResumes',
      queryState,
      queryMenuState,
      queryPositionState,
    ],
  }
);