feat(工作台): 工作台待办页面
This commit is contained in:
parent
5a1e9ae697
commit
3011af0be5
|
@ -28,12 +28,11 @@ const TestPlan: AppRouteRecordRaw = {
|
|||
isTopMenu: true,
|
||||
},
|
||||
},
|
||||
// TODO 更换component 页面即可
|
||||
// 待办
|
||||
{
|
||||
path: 'wait',
|
||||
name: WorkbenchRouteEnum.WORKBENCH_INDEX_WAIT,
|
||||
component: () => import('@/views/workbench/homePage/index.vue'),
|
||||
component: () => import('@/views/workbench/myToDo/index.vue'),
|
||||
meta: {
|
||||
locale: 'menu.workbenchWaitSort',
|
||||
roles: ['*'],
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
|
||||
const props = defineProps<{
|
||||
project: string;
|
||||
type: 'my_follow' | 'my_create';
|
||||
type: 'my_follow' | 'my_create' | 'my_todo';
|
||||
}>();
|
||||
|
||||
const appStore = useAppStore();
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
|
||||
const props = defineProps<{
|
||||
project: string;
|
||||
type: 'my_follow' | 'my_create';
|
||||
type: 'my_follow' | 'my_create' | 'my_todo';
|
||||
}>();
|
||||
|
||||
const { t } = useI18n();
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
|
||||
const props = defineProps<{
|
||||
project: string;
|
||||
type: 'my_follow' | 'my_create';
|
||||
type: 'my_follow' | 'my_create' | 'my_todo';
|
||||
}>();
|
||||
|
||||
const { t } = useI18n();
|
||||
|
|
|
@ -0,0 +1,74 @@
|
|||
<template>
|
||||
<div class="flex flex-col gap-[16px]">
|
||||
<div class="flex items-center justify-end gap-[12px]">
|
||||
<MsProjectSelect v-model:project="currentProject" class="w-[240px]" use-default-arrow-icon>
|
||||
<template #prefix>
|
||||
{{ t('menu.projectManagementShort') }}
|
||||
</template>
|
||||
</MsProjectSelect>
|
||||
<a-select
|
||||
v-model:model-value="features"
|
||||
:options="featureOptions"
|
||||
:max-tag-count="1"
|
||||
multiple
|
||||
class="w-[240px]"
|
||||
@change="handleFeatureChange"
|
||||
>
|
||||
<template #prefix>
|
||||
{{ t('project.messageManagement.function') }}
|
||||
</template>
|
||||
<template #header>
|
||||
<a-checkbox v-model:model-value="featureAll" class="ml-[8px]" @change="handleFeatureAllChange">
|
||||
{{ t('common.all') }}
|
||||
</a-checkbox>
|
||||
</template>
|
||||
</a-select>
|
||||
<a-button type="outline" class="arco-btn-outline--secondary p-[10px]" @click="handleRefresh">
|
||||
<MsIcon type="icon-icon_reset_outlined" size="14" />
|
||||
</a-button>
|
||||
</div>
|
||||
<testPlanTable v-if="features.includes(FeatureEnum.TEST_PLAN)" :project="currentProject" type="my_follow" />
|
||||
<caseReviewTable v-if="features.includes(FeatureEnum.CASE_REVIEW)" :project="currentProject" type="my_follow" />
|
||||
<bugTable v-if="features.includes(FeatureEnum.BUG)" :project="currentProject" type="my_follow" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import MsIcon from '@/components/pure/ms-icon-font/index.vue';
|
||||
import MsProjectSelect from '@/components/business/ms-project-select/index.vue';
|
||||
import bugTable from '../components/bugTable.vue';
|
||||
import caseReviewTable from '../components/caseReviewTable.vue';
|
||||
import testPlanTable from '../components/testPlanTable.vue';
|
||||
|
||||
import { useI18n } from '@/hooks/useI18n';
|
||||
import useAppStore from '@/store/modules/app';
|
||||
|
||||
import { FeatureEnum } from '@/enums/workbenchEnum';
|
||||
|
||||
const { t } = useI18n();
|
||||
const appStore = useAppStore();
|
||||
|
||||
const currentProject = ref(appStore.currentProjectId);
|
||||
const features = ref<FeatureEnum[]>(Object.values(FeatureEnum));
|
||||
const featureOptions = Object.keys(FeatureEnum).map((key) => ({
|
||||
label: t(`ms.workbench.myFollowed.feature.${key}`),
|
||||
value: key as FeatureEnum,
|
||||
}));
|
||||
const featureAll = ref(true);
|
||||
|
||||
function handleFeatureAllChange(val: boolean | (string | number | boolean)[]) {
|
||||
features.value = val ? featureOptions.map((item) => item.value) : [];
|
||||
}
|
||||
|
||||
function handleFeatureChange(
|
||||
val: string | number | boolean | Record<string, any> | (string | number | boolean | Record<string, any>)[]
|
||||
) {
|
||||
featureAll.value = (val as []).length === featureOptions.length;
|
||||
}
|
||||
|
||||
function handleRefresh() {
|
||||
console.log('refresh');
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped></style>
|
Loading…
Reference in New Issue