zhengyiming
8 天以前 ca556e408d30c5aaa60221dcf415c596ba92c493
fix: 任务详情
4个文件已修改
14 ■■■■ 已修改文件
apps/bMiniApp/src/subpackages/task/taskManage/taskManage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/auto-imports.d.ts 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/hooks/index.ts 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/pages/home/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/bMiniApp/src/subpackages/task/taskManage/taskManage.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayoutWithBg class="taskManage-page-wrapper" title="任务管理" :need-auth="false">
  <PageLayoutWithBg class="taskManage-page-wrapper" title="任务管理">
    <InnerPage />
  </PageLayoutWithBg>
</template>
apps/cMiniApp/auto-imports.d.ts
@@ -8,7 +8,6 @@
  const AppLocalConfig: typeof import('./src/constants/app')['AppLocalConfig']
  const BackType: typeof import('./src/constants/enum')['BackType']
  const EffectScope: typeof import('vue')['EffectScope']
  const HomeOrderType: typeof import('./src/hooks/task')['HomeOrderType']
  const OssAssets: typeof import('./src/constants/img')['OssAssets']
  const RouterPath: typeof import('./src/constants/router')['RouterPath']
  const TabBarPageRouter: typeof import('./src/constants/tabBar')['TabBarPageRouter']
@@ -87,13 +86,10 @@
  const useLoginedJump: typeof import('./src/hooks/login')['useLoginedJump']
  const useModel: typeof import('vue')['useModel']
  const useMyCertificationAuditInfo: typeof import('./src/hooks/authentication')['useMyCertificationAuditInfo']
  const useOmitProps: typeof import('@/hooks')['useOmitProps']
  const usePickProps: typeof import('@/hooks')['usePickProps']
  const useRoute: typeof import('vue-router')['useRoute']
  const useRouter: typeof import('vue-router')['useRouter']
  const useSlots: typeof import('vue')['useSlots']
  const useSwitchTab: typeof import('./src/hooks/router')['useSwitchTab']
  const useTaskList: typeof import('./src/hooks/task')['useTaskList']
  const useTemplateRef: typeof import('vue')['useTemplateRef']
  const useUser: typeof import('./src/hooks/user')['useUser']
  const watch: typeof import('vue')['watch']
@@ -115,9 +111,6 @@
  // @ts-ignore
  export type { TaskStatus, TaskStatus } from './src/constants/task'
  import('./src/constants/task')
  // @ts-ignore
  export type { HomeOrderType, HomeOrderType } from './src/hooks/task'
  import('./src/hooks/task')
}
// for vue template auto import
import { UnwrapRef } from 'vue'
@@ -126,7 +119,6 @@
    readonly AppLocalConfig: UnwrapRef<typeof import('./src/constants/app')['AppLocalConfig']>
    readonly BackType: UnwrapRef<typeof import('./src/constants/enum')['BackType']>
    readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
    readonly HomeOrderType: UnwrapRef<typeof import('./src/hooks/task')['HomeOrderType']>
    readonly OssAssets: UnwrapRef<typeof import('./src/constants/img')['OssAssets']>
    readonly RouterPath: UnwrapRef<typeof import('./src/constants/router')['RouterPath']>
    readonly TabBarPageRouter: UnwrapRef<typeof import('./src/constants/tabBar')['TabBarPageRouter']>
@@ -209,7 +201,6 @@
    readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
    readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
    readonly useSwitchTab: UnwrapRef<typeof import('./src/hooks/router')['useSwitchTab']>
    readonly useTaskList: UnwrapRef<typeof import('./src/hooks/task')['useTaskList']>
    readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
    readonly useUser: UnwrapRef<typeof import('./src/hooks/user')['useUser']>
    readonly watch: UnwrapRef<typeof import('vue')['watch']>
apps/cMiniApp/src/hooks/index.ts
@@ -3,4 +3,3 @@
export * from './access';
export * from './login';
export * from './authentication';
export * from './task';
apps/cMiniApp/src/pages/home/index.vue
@@ -74,7 +74,7 @@
import { TaskCard, ProTabs, ProTabPane } from '@12333/components';
import HomeQueryMenuView from './HomeQueryMenuView.vue';
import IconLocaltion from '@/assets/task/icon-localtion.png';
import { useAllAreaList, useTaskList } from '@12333/hooks';
import { useAllAreaList, useTaskList, HomeOrderType } from '@12333/hooks';
import { useAccessLogin } from '@/hooks';
const { locationCity } = useUser();