搜索结果列表页面开发
This commit is contained in:
14
src/views/Org/Discussion/Create/index.vue
Normal file
14
src/views/Org/Discussion/Create/index.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import DiscussionCreate from '@/components/Discussion/Module/Create/index.vue';
|
||||
import { getOrgInfo } from '@/views/Org/hooks/orgInfo';
|
||||
const { namespace } = getOrgInfo();
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionCreate :source-type="1" :org-namespace="namespace"></DiscussionCreate>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
13
src/views/Org/Discussion/Detail/index.vue
Normal file
13
src/views/Org/Discussion/Detail/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
import DiscussionDetail from '@/components/Discussion/Module/Detail/index.vue';
|
||||
import { getOrgInfo } from '@/views/Org/hooks/orgInfo';
|
||||
const { namespace } = getOrgInfo();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionDetail :source-type="1" :org-namespace="namespace"></DiscussionDetail>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
13
src/views/Org/Discussion/SectionCreate/index.vue
Normal file
13
src/views/Org/Discussion/SectionCreate/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
import DiscussionSectionForm from '@/components/Discussion/Module/SectionCreate/index.vue';
|
||||
import { getOrgInfo } from '@/views/Org/hooks/orgInfo';
|
||||
const { namespace } = getOrgInfo();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionSectionForm :source-type="1" :org-namespace="namespace"></DiscussionSectionForm>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
13
src/views/Org/Discussion/Select/index.vue
Normal file
13
src/views/Org/Discussion/Select/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
import DiscussionSelectType from '@/components/Discussion/Module/Select/index.vue';
|
||||
import { getOrgInfo } from '@/views/Org/hooks/orgInfo';
|
||||
const { namespace } = getOrgInfo();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionSelectType :source-type="1" :org-namespace="namespace"></DiscussionSelectType>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
13
src/views/Org/Discussion/TypeCreate/index.vue
Normal file
13
src/views/Org/Discussion/TypeCreate/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
import DiscussionTypeForm from '@/components/Discussion/Module/TypeCreate/index.vue';
|
||||
import { getOrgInfo } from '@/views/Org/hooks/orgInfo';
|
||||
const { namespace } = getOrgInfo();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionTypeForm :source-type="1" :org-namespace="namespace"></DiscussionTypeForm>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
13
src/views/Org/Discussion/TypeManage/index.vue
Normal file
13
src/views/Org/Discussion/TypeManage/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
import DiscussionTypeManage from '@/components/Discussion/Module/TypeManage/index.vue';
|
||||
import { getOrgInfo } from '@/views/Org/hooks/orgInfo';
|
||||
const { namespace } = getOrgInfo();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionTypeManage :source-type="1" :org-namespace="namespace"></DiscussionTypeManage>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
11
src/views/Org/Discussion/index.vue
Normal file
11
src/views/Org/Discussion/index.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
import DiscussionList from '@/components/Discussion/Module/List/orgDiscussion.vue';
|
||||
import { getOrgInfo } from '@/views/Org/hooks/orgInfo';
|
||||
const { namespace } = getOrgInfo();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<DiscussionList :source-type="1" :org-namespace="namespace"></DiscussionList>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped></style>
|
||||
Reference in New Issue
Block a user