12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <CommonListPage
- :title="'闽台文化交流'"
- :prevPage="{ title: '传播交流' }"
- :dropDownNames="[]"
- :pageSize="8"
- :load="loadData"
- :loadDetail="loadDetail"
- />
- </template>
- <script setup lang="ts">
- import { GetContentListParams } from '@/api/CommonContent';
- import CommunicateContent from '@/api/communicate/CommunicateContent';
- async function loadDetail(id: number, item: any) {
- const res = await CommunicateContent.getContentDetail(id);
- res.content = res.content || res.intro as string;
- res.addItems = [
- ];
- return res;
- }
- async function loadData(
- page: number,
- pageSize: number,
- selectedTag: number,
- searchText: string,
- dropDownValues: number[]
- ) {
- const res = await CommunicateContent.getContentList(new GetContentListParams()
- .setKeywords(searchText)
- .setSelfValues({
- mainBodyColumnId: 260
- })
- , 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.image,
- addItems: [
- ],
- };
- }),
- }
- }
- </script>
- <style>
- </style>
|