Add dict tree API and drawing query pages
This commit is contained in:
@ -81,3 +81,10 @@ export const getSettingPage = (params: { type: number }) => {
|
|||||||
export const tab2 = () => {
|
export const tab2 = () => {
|
||||||
return useFetchRequest.get<IResponse<ProjectDictNodeVO[]>>('/prod-api/app-api/business/project/index/index-tab2', {})
|
return useFetchRequest.get<IResponse<ProjectDictNodeVO[]>>('/prod-api/app-api/business/project/index/index-tab2', {})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取具有上下级关系的当前的名称
|
||||||
|
*/
|
||||||
|
export const getDictTree = (params: { dictType: string }) => {
|
||||||
|
return useDollarFetchRequest.get<IResponse<ProjectDictNodeVO[]>>('/prod-api/app-api/business/dict/level-by-id', { query: params })
|
||||||
|
}
|
||||||
|
|||||||
@ -30,6 +30,7 @@
|
|||||||
import { useRoute } from 'vue-router'
|
import { useRoute } from 'vue-router'
|
||||||
import { reactive, watch, ref } from 'vue'
|
import { reactive, watch, ref } from 'vue'
|
||||||
import { page } from '~/api/upnew/index'
|
import { page } from '~/api/upnew/index'
|
||||||
|
import { getDictTree } from '~/api/home/index'
|
||||||
import type { pageRes, pageReq } from '~/api/upnew/types'
|
import type { pageRes, pageReq } from '~/api/upnew/types'
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const level = ref(
|
const level = ref(
|
||||||
|
|||||||
111
pages/drawe/query-v1/[projectType].vue
Normal file
111
pages/drawe/query-v1/[projectType].vue
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
<template>
|
||||||
|
<!-- 导航 -->
|
||||||
|
<KlNavTab active="图纸" :type="1" />
|
||||||
|
<div class="ma-auto w-[1440px]">
|
||||||
|
<!-- 图纸分类 -->
|
||||||
|
<KlWallpaperCategory v-model="query" v-model:level="level" :type="1" />
|
||||||
|
<!-- 推荐栏目 -->
|
||||||
|
<RecommendedColumnsV2 v-model="query" v-model:result="result"></RecommendedColumnsV2>
|
||||||
|
<!-- 精选专题 -->
|
||||||
|
<!-- <FeaturedSpecials></FeaturedSpecials> -->
|
||||||
|
<!-- 分页 -->
|
||||||
|
<div class="mt-[10px] flex justify-center">
|
||||||
|
<el-pagination
|
||||||
|
v-model:current-page="query.pageNo"
|
||||||
|
v-model:page-size="query.pageSize"
|
||||||
|
:page-sizes="[12, 24, 48]"
|
||||||
|
:total="result?.total"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
@size-change="handleClickSize"
|
||||||
|
@current-change="handeClickCurrent"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import KlNavTab from '~/components/kl-nav-tab/index.vue'
|
||||||
|
import KlWallpaperCategory from '~/components/kl-wallpaper-category/index.vue'
|
||||||
|
import RecommendedColumnsV2 from '~/components/drawe-components/RecommendedColumnsV2.vue'
|
||||||
|
// import FeaturedSpecials from './components/FeaturedSpecials.vue'
|
||||||
|
import { useRoute } from 'vue-router'
|
||||||
|
import { reactive, watch, ref } from 'vue'
|
||||||
|
import { page } from '~/api/upnew/index'
|
||||||
|
import { getDictTree } from '~/api/home/index'
|
||||||
|
import type { pageRes, pageReq } from '~/api/upnew/types'
|
||||||
|
const route = useRoute()
|
||||||
|
const projectType = computed(() => route.query?.projectType as string)
|
||||||
|
const level = ref(
|
||||||
|
route.query?.valuelevel
|
||||||
|
? JSON.parse(route.query.valuelevel as string)
|
||||||
|
: [
|
||||||
|
{
|
||||||
|
id: '0',
|
||||||
|
name: '图纸库',
|
||||||
|
isChildren: false,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
)
|
||||||
|
const keywords = ref((route.query?.valuekeywords as string) || '')
|
||||||
|
|
||||||
|
const query = ref<pageReq>({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 12,
|
||||||
|
projectType: projectType.value,
|
||||||
|
editions: '',
|
||||||
|
source: '',
|
||||||
|
type: 1,
|
||||||
|
title: keywords.value,
|
||||||
|
})
|
||||||
|
// const result = reactive<pageRes>({
|
||||||
|
// list: [],
|
||||||
|
// total: 0,
|
||||||
|
// })
|
||||||
|
|
||||||
|
// 如果id存在,则设置projectType
|
||||||
|
if (level.value.length) {
|
||||||
|
query.value.projectType = level.value[level.value.length - 1].id || ''
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleClickSize = (val: number) => {
|
||||||
|
query.value.pageSize = val
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
|
||||||
|
const handeClickCurrent = (val: number) => {
|
||||||
|
query.value.pageNo = val
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data: result, refresh: getPage } = useAsyncData(
|
||||||
|
`draw-page-list-${Date.now()}`,
|
||||||
|
async () => {
|
||||||
|
const res = await page(query.value)
|
||||||
|
return res.data
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
// const getPage = () => {
|
||||||
|
// page(query).then((res) => {
|
||||||
|
// const { data, code } = res
|
||||||
|
// if (code === 0) {
|
||||||
|
// result.list = data.list
|
||||||
|
// result.total = data.total
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
|
||||||
|
watch([() => query.value.projectType, () => query.value.editions, () => query.value.source], (val) => {
|
||||||
|
if (val) {
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
:deep(.el-pagination) {
|
||||||
|
.el-input__inner {
|
||||||
|
text-align: center !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
110
pages/drawe/query-v2/[projectType]-[editions].vue
Normal file
110
pages/drawe/query-v2/[projectType]-[editions].vue
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
<template>
|
||||||
|
<!-- 导航 -->
|
||||||
|
<KlNavTab active="图纸" :type="1" />
|
||||||
|
<div class="ma-auto w-[1440px]">
|
||||||
|
<!-- 图纸分类 -->
|
||||||
|
<KlWallpaperCategory v-model="query" v-model:level="level" :type="1" />
|
||||||
|
<!-- 推荐栏目 -->
|
||||||
|
<RecommendedColumnsV2 v-model="query" v-model:result="result"></RecommendedColumnsV2>
|
||||||
|
<!-- 精选专题 -->
|
||||||
|
<!-- <FeaturedSpecials></FeaturedSpecials> -->
|
||||||
|
<!-- 分页 -->
|
||||||
|
<div class="mt-[10px] flex justify-center">
|
||||||
|
<el-pagination
|
||||||
|
v-model:current-page="query.pageNo"
|
||||||
|
v-model:page-size="query.pageSize"
|
||||||
|
:page-sizes="[12, 24, 48]"
|
||||||
|
:total="result?.total"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
@size-change="handleClickSize"
|
||||||
|
@current-change="handeClickCurrent"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import KlNavTab from '~/components/kl-nav-tab/index.vue'
|
||||||
|
import KlWallpaperCategory from '~/components/kl-wallpaper-category/index.vue'
|
||||||
|
import RecommendedColumnsV2 from '~/components/drawe-components/RecommendedColumnsV2.vue'
|
||||||
|
// import FeaturedSpecials from './components/FeaturedSpecials.vue'
|
||||||
|
import { useRoute } from 'vue-router'
|
||||||
|
import { reactive, watch, ref } from 'vue'
|
||||||
|
import { page } from '~/api/upnew/index'
|
||||||
|
import { getDictTree } from '~/api/home/index'
|
||||||
|
import type { pageRes, pageReq } from '~/api/upnew/types'
|
||||||
|
const route = useRoute()
|
||||||
|
const level = ref(
|
||||||
|
route.query?.valuelevel
|
||||||
|
? JSON.parse(route.query.valuelevel as string)
|
||||||
|
: [
|
||||||
|
{
|
||||||
|
id: '0',
|
||||||
|
name: '图纸库',
|
||||||
|
isChildren: false,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
)
|
||||||
|
const keywords = ref((route.query?.valuekeywords as string) || '')
|
||||||
|
|
||||||
|
const query = ref<pageReq>({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 12,
|
||||||
|
projectType: '',
|
||||||
|
editions: '',
|
||||||
|
source: '',
|
||||||
|
type: 1,
|
||||||
|
title: keywords.value,
|
||||||
|
})
|
||||||
|
// const result = reactive<pageRes>({
|
||||||
|
// list: [],
|
||||||
|
// total: 0,
|
||||||
|
// })
|
||||||
|
|
||||||
|
// 如果id存在,则设置projectType
|
||||||
|
if (level.value.length) {
|
||||||
|
query.value.projectType = level.value[level.value.length - 1].id || ''
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleClickSize = (val: number) => {
|
||||||
|
query.value.pageSize = val
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
|
||||||
|
const handeClickCurrent = (val: number) => {
|
||||||
|
query.value.pageNo = val
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data: result, refresh: getPage } = useAsyncData(
|
||||||
|
`draw-page-list-${Date.now()}`,
|
||||||
|
async () => {
|
||||||
|
const res = await page(query.value)
|
||||||
|
return res.data
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
// const getPage = () => {
|
||||||
|
// page(query).then((res) => {
|
||||||
|
// const { data, code } = res
|
||||||
|
// if (code === 0) {
|
||||||
|
// result.list = data.list
|
||||||
|
// result.total = data.total
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
|
||||||
|
watch([() => query.value.projectType, () => query.value.editions, () => query.value.source], (val) => {
|
||||||
|
if (val) {
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
:deep(.el-pagination) {
|
||||||
|
.el-input__inner {
|
||||||
|
text-align: center !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
110
pages/drawe/query-v3/[projectType]-[editions]-[source].vue
Normal file
110
pages/drawe/query-v3/[projectType]-[editions]-[source].vue
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
<template>
|
||||||
|
<!-- 导航 -->
|
||||||
|
<KlNavTab active="图纸" :type="1" />
|
||||||
|
<div class="ma-auto w-[1440px]">
|
||||||
|
<!-- 图纸分类 -->
|
||||||
|
<KlWallpaperCategory v-model="query" v-model:level="level" :type="1" />
|
||||||
|
<!-- 推荐栏目 -->
|
||||||
|
<RecommendedColumnsV2 v-model="query" v-model:result="result"></RecommendedColumnsV2>
|
||||||
|
<!-- 精选专题 -->
|
||||||
|
<!-- <FeaturedSpecials></FeaturedSpecials> -->
|
||||||
|
<!-- 分页 -->
|
||||||
|
<div class="mt-[10px] flex justify-center">
|
||||||
|
<el-pagination
|
||||||
|
v-model:current-page="query.pageNo"
|
||||||
|
v-model:page-size="query.pageSize"
|
||||||
|
:page-sizes="[12, 24, 48]"
|
||||||
|
:total="result?.total"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
@size-change="handleClickSize"
|
||||||
|
@current-change="handeClickCurrent"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import KlNavTab from '~/components/kl-nav-tab/index.vue'
|
||||||
|
import KlWallpaperCategory from '~/components/kl-wallpaper-category/index.vue'
|
||||||
|
import RecommendedColumnsV2 from '~/components/drawe-components/RecommendedColumnsV2.vue'
|
||||||
|
// import FeaturedSpecials from './components/FeaturedSpecials.vue'
|
||||||
|
import { useRoute } from 'vue-router'
|
||||||
|
import { reactive, watch, ref } from 'vue'
|
||||||
|
import { page } from '~/api/upnew/index'
|
||||||
|
import { getDictTree } from '~/api/home/index'
|
||||||
|
import type { pageRes, pageReq } from '~/api/upnew/types'
|
||||||
|
const route = useRoute()
|
||||||
|
const level = ref(
|
||||||
|
route.query?.valuelevel
|
||||||
|
? JSON.parse(route.query.valuelevel as string)
|
||||||
|
: [
|
||||||
|
{
|
||||||
|
id: '0',
|
||||||
|
name: '图纸库',
|
||||||
|
isChildren: false,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
)
|
||||||
|
const keywords = ref((route.query?.valuekeywords as string) || '')
|
||||||
|
|
||||||
|
const query = ref<pageReq>({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 12,
|
||||||
|
projectType: '',
|
||||||
|
editions: '',
|
||||||
|
source: '',
|
||||||
|
type: 1,
|
||||||
|
title: keywords.value,
|
||||||
|
})
|
||||||
|
// const result = reactive<pageRes>({
|
||||||
|
// list: [],
|
||||||
|
// total: 0,
|
||||||
|
// })
|
||||||
|
|
||||||
|
// 如果id存在,则设置projectType
|
||||||
|
if (level.value.length) {
|
||||||
|
query.value.projectType = level.value[level.value.length - 1].id || ''
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleClickSize = (val: number) => {
|
||||||
|
query.value.pageSize = val
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
|
||||||
|
const handeClickCurrent = (val: number) => {
|
||||||
|
query.value.pageNo = val
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data: result, refresh: getPage } = useAsyncData(
|
||||||
|
`draw-page-list-${Date.now()}`,
|
||||||
|
async () => {
|
||||||
|
const res = await page(query.value)
|
||||||
|
return res.data
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
// const getPage = () => {
|
||||||
|
// page(query).then((res) => {
|
||||||
|
// const { data, code } = res
|
||||||
|
// if (code === 0) {
|
||||||
|
// result.list = data.list
|
||||||
|
// result.total = data.total
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
|
||||||
|
watch([() => query.value.projectType, () => query.value.editions, () => query.value.source], (val) => {
|
||||||
|
if (val) {
|
||||||
|
getPage()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
:deep(.el-pagination) {
|
||||||
|
.el-input__inner {
|
||||||
|
text-align: center !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user