| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <CommonListPage
- :title="'非遗传承人'"
- :prevPage="{ title: '保护传承' }"
- :dropDownNames="dropdownNames"
- :pageSize="8"
- :load="loadData"
- :loadDetail="loadDetail"
- :tagsData="tagsData"
- showTableSwitch
- :detailModelId="InheritorContent.modelId"
- :tableSwitchOptions="{
- title: '传承人姓名',
- }"
- :defaultSelectTag="tagsData[0]?.id"
- detailsPage="/inheritor/details/intangible"
- :detailsParams="{
- groupTitle: '非遗传承人',
- }"
- />
- </template>
- <script setup lang="ts">
- import CommonContent, { GetContentListParams } from '@/api/CommonContent';
- import InheritorContent from '@/api/inheritor/InheritorContent';
- import type { DropDownNames } from '@/components/content/CommonListPage.vue';
- import { onMounted, ref } from 'vue';
- import { useRoute } from 'vue-router';
- async function loadDetail(id: number, item: any) {
- item = await InheritorContent.getContentDetail(id);
- item.content = item.content || item.intro as string;
- item.addItems = [
- { name: '传承项目', text: item.ichName },
- { name: '级别', text: item.levelText },
- { name: '民族', text: item.nation },
- ];
- item.titleBox = Boolean(item.deathBirth);
- return item;
- }
- async function loadData(
- page: number,
- pageSize: number,
- selectedTag: number,
- searchText: string,
- dropDownValues: number[]
- ) {
- const res = await InheritorContent.getContentList(new GetContentListParams().setSelfValues({
- ichType: selectedTag == 0 ? undefined: selectedTag,
- level: dropDownValues[0] == 0 ? undefined: dropDownValues[0],
- region: dropDownValues[1] == 0 ? undefined: dropDownValues[1],
- keywords: searchText,
- }), page, pageSize);
- return {
- page: page,
- total: res.total,
- data: res.list.map((item, index) => {
- return {
- id: item.id,
- title: item.title,
- desc: item.desc,
- image: item.thumbnail || item.image,
- titleBox: Boolean(item.deathBirth),
- addItems: [
- { name: '传承项目', text: item.ichName },
- { name: '级别', text: item.levelText },
- { name: '民族', text: item.nation },
- ],
- };
- }),
- }
- }
- const dropdownNames = ref<DropDownNames[]>([]);
- const tagsData = ref([
- { id: 0, name: '全部' },
- ]);
- const route = useRoute();
- onMounted(async () => {
- tagsData.value = tagsData.value.concat((await CommonContent.getCategoryList(4)).map((item) => ({
- id: item.id,
- name: item.title,
- })));
- const levels = await CommonContent.getCategoryList(2);
- dropdownNames.value.push({
- options: [{
- id: 0,
- name: '全部'
- }].concat(levels.map((item) => ({
- id: item.id,
- name: item.title,
- }))),
- defaultSelectedValue: route.query.level ? Number(route.query.level) : 0,
- });
- dropdownNames.value.push({
- options: [{
- id: 0,
- name: '全部'
- }].concat((await CommonContent.getCategoryList(1)).map((item) => ({
- id: item.id,
- name: item.title,
- }))),
- defaultSelectedValue: 0,
- });
- })
- </script>
- <style>
- </style>
|