wupengfei
2025-03-10 bbf6053159d566a096dfa26627dda19657d928af
apps/cMiniApp/src/subpackages/mine/mineCollectTask/InnerPage.vue
@@ -18,7 +18,7 @@
import { useUserStore } from '@/stores/modules/user';
import { useInfiniteLoading } from '@12333/hooks';
import { OrderInputType } from '@12333/constants';
import * as orderServices from '@12333/services/api/Order';
import * as flexWorkerServices from '@12333/services/api/FlexWorker';
defineOptions({
  name: 'InnerPage',
@@ -28,7 +28,7 @@
const { infiniteLoadingProps } = useInfiniteLoading(
  ({ pageParam }) => {
    let params: API.FrontOrderListInput = {
    let params: API.GetFlexTaskListInput = {
      pageModel: {
        rows: 20,
        page: pageParam,
@@ -36,12 +36,12 @@
      },
    };
    return orderServices.getFrontOrderList(params, {
    return flexWorkerServices.getFlexTaskByArrange(params, {
      showLoading: false,
    });
  },
  {
    queryKey: ['orderServices/getFrontOrderList'],
    queryKey: ['flexWorkerServices/getFlexTaskByArrange'],
  }
);
</script>
@@ -49,22 +49,24 @@
<style lang="scss">
@import '@/styles/common.scss';
.my-collect-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
.mineCollectTask-page-wrapper {
  .my-collect-task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
  .my-collect-task-title {
    font-size: 28px;
    line-height: 40px;
    color: boleGetCssVar('text-color', 'primary');
  }
    .my-collect-task-title {
      font-size: 28px;
      line-height: 40px;
      color: boleGetCssVar('text-color', 'primary');
    }
  .my-collect-task-btn {
    font-size: 24px;
    line-height: 34px;
    color: boleGetCssVar('text-color', 'regular');
    .my-collect-task-btn {
      font-size: 24px;
      line-height: 34px;
      color: boleGetCssVar('text-color', 'regular');
    }
  }
}
</style>