123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- import { PropType, defineComponent, onMounted, reactive } from 'vue';
- import styles from './index.module.less';
- import SearchGroupResources from './search-group-resources';
- import { NImage, NScrollbar, NSpin } from 'naive-ui';
- import TheEmpty from '/src/components/TheEmpty';
- import Pagination from '/src/components/pagination';
- import { useRouter } from 'vue-router';
- import { api_knowledgeWiki_page } from '/src/views/content-information/api';
- export default defineComponent({
- name: 'instrument-list',
- props: {
- categoryId: {
- type: String,
- default: ''
- },
- categoryChildList: {
- type: Array as PropType<any>,
- default: () => []
- },
- selectItems: {
- type: Array as PropType<any>,
- default: () => []
- }
- },
- emits: ['confirm'],
- setup(props, { emit }) {
- const router = useRouter();
- const state = reactive({
- searchWord: '',
- loading: false,
- pageTotal: 0,
- finshed: false, // 是否加载完
- pagination: {
- page: 1,
- rows: 18
- },
- searchGroup: {
- type: 'INSTRUMENT', //
- keyword: '',
- wikiCategoryId: props.categoryId
- },
- tableList: [] as any,
- teachingStatus: false,
- show: false,
- item: {} as any
- // selectIds: [] as any
- });
- const getList = async () => {
- state.loading = true;
- try {
- const { data } = await api_knowledgeWiki_page({
- ...state.pagination,
- ...state.searchGroup
- });
- const temp = data.rows || [];
- temp.forEach((item: any) => {
- if (
- item.knowledgeWikiCategories &&
- item.knowledgeWikiCategories.length
- ) {
- item.categories =
- item.knowledgeWikiCategories[0].knowledgeWikiCategoryTypeName;
- }
- });
- state.tableList.push(...temp);
- state.pageTotal = Number(data.total);
- state.finshed = data.pages <= data.current ? true : false;
- } catch {
- //
- }
- state.loading = false;
- };
- const onSearch = async (item: any) => {
- state.pagination.page = 1;
- state.searchGroup = Object.assign(state.searchGroup, item);
- state.tableList = [];
- getList();
- };
- // 更新
- const onSelect = (item: any) => {
- const ids = props.selectItems || [];
- const index = ids.findIndex((i: any) => i.id === item.id);
- if (index !== -1) {
- ids.splice(index, 1);
- } else {
- ids.push(item);
- }
- emit('confirm', ids);
- };
- onMounted(() => {
- getList();
- });
- return () => (
- <div class={styles.instrumentList}>
- <SearchGroupResources
- class={styles.searchGroups}
- categoryChildList={props.categoryChildList || []}
- onSearch={(item: any) => onSearch(item)}
- wikiCategoryId={props.categoryId}
- />
- <NScrollbar
- class={styles.listContainer}
- style={{
- 'max-height': `55vh`
- }}
- onScroll={(e: any) => {
- const clientHeight = e.target?.clientHeight;
- const scrollTop = e.target?.scrollTop;
- const scrollHeight = e.target?.scrollHeight;
- // 是否到底,是否加载完
- if (
- clientHeight + scrollTop + 20 >= scrollHeight &&
- !state.finshed &&
- !state.loading
- ) {
- state.pagination.page = state.pagination.page + 1;
- getList();
- }
- }}>
- <NSpin v-model:show={state.loading} style={{ 'min-height': '50vh' }}>
- <div class={styles.list}>
- {state.tableList.map((item: any) => (
- <div
- class={styles.itemWrap}
- onClick={() => {
- // router.push({
- // path: '/content-instruments-detail',
- // query: {
- // id: item.id,
- // name: item.name
- // }
- // });
- }}>
- <div
- class={styles.itemWrapBox}
- onClick={() => onSelect(item)}>
- <div class={styles.itemCard}>
- <div
- class={[
- styles.itemImgSection,
- props.selectItems.findIndex(
- (i: any) => i.id === item.id
- ) !== -1 && styles.itemImgSectionSelected
- ]}>
- <NImage
- src={item.avatar}
- class={styles.img}
- objectFit="cover"
- previewDisabled
- />
- <i class={[styles.iconCheck]}></i>
- </div>
- <div class={styles.itemTitle}>{item.name}</div>
- </div>
- </div>
- </div>
- ))}
- {!state.loading && state.tableList.length <= 0 && (
- <TheEmpty
- style={{ minHeight: '50vh' }}
- description="暂无乐器百科"
- />
- )}
- </div>
- </NSpin>
- </NScrollbar>
- </div>
- );
- }
- });
|