CardList.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <div class="p-2">
  3. <div class="bg-white mb-2 p-4">
  4. <BasicForm @register="registerForm" />
  5. </div>
  6. {{ sliderProp.width }}
  7. <div class="bg-white p-2">
  8. <List :grid="{ gutter: 5, xs: 1, sm: 2, md: 4, lg: 4, xl: 6, xxl: grid }" :data-source="data" :pagination="paginationProp">
  9. <template #header>
  10. <div class="flex justify-end space-x-2"
  11. ><slot name="header"></slot>
  12. <Tooltip>
  13. <template #title>
  14. <div class="w-50">每行显示数量</div><Slider id="slider" v-bind="sliderProp" v-model:value="grid" @change="sliderChange"
  15. /></template>
  16. <Button><TableOutlined /></Button>
  17. </Tooltip>
  18. <Tooltip @click="fetch">
  19. <template #title>刷新</template>
  20. <Button><RedoOutlined /></Button>
  21. </Tooltip>
  22. </div>
  23. </template>
  24. <template #renderItem="{ item }">
  25. <ListItem>
  26. <Card>
  27. <template #title></template>
  28. <template #cover>
  29. <div :class="height">
  30. <Image :src="item.imgs[0]" />
  31. </div>
  32. </template>
  33. <template class="ant-card-actions" #actions>
  34. <!-- <SettingOutlined key="setting" />-->
  35. <EditOutlined key="edit" />
  36. <Dropdown
  37. :trigger="['hover']"
  38. :dropMenuList="[
  39. {
  40. text: '删除',
  41. event: '1',
  42. popConfirm: {
  43. title: '是否确认删除',
  44. confirm: handleDelete.bind(null, item.id),
  45. },
  46. },
  47. ]"
  48. popconfirm
  49. >
  50. <EllipsisOutlined key="ellipsis" />
  51. </Dropdown>
  52. </template>
  53. <CardMeta>
  54. <template #title>
  55. <TypographyText :content="item.name" :ellipsis="{ tooltip: item.address }" />
  56. </template>
  57. <template #avatar>
  58. <Avatar :src="item.avatar" />
  59. </template>
  60. <template #description>{{ item.time }}</template>
  61. </CardMeta>
  62. </Card>
  63. </ListItem>
  64. </template>
  65. </List>
  66. </div>
  67. </div>
  68. </template>
  69. <script lang="ts" setup>
  70. import { computed, onMounted, ref } from 'vue';
  71. import { EditOutlined, EllipsisOutlined, RedoOutlined, TableOutlined } from '@ant-design/icons-vue';
  72. import { List, Card, Image, Typography, Tooltip, Slider, Avatar } from 'ant-design-vue';
  73. import { Dropdown } from '/@/components/Dropdown';
  74. import { BasicForm, useForm } from '/@/components/Form';
  75. import { propTypes } from '/@/utils/propTypes';
  76. import { Button } from '/@/components/Button';
  77. import { isFunction } from '/@/utils/is';
  78. import { useSlider, grid } from './data';
  79. const ListItem = List.Item;
  80. const CardMeta = Card.Meta;
  81. const TypographyText = Typography.Text;
  82. // 获取slider属性
  83. const sliderProp = computed(() => useSlider(4));
  84. // 组件接收参数
  85. const props = defineProps({
  86. // 请求API的参数
  87. params: propTypes.object.def({}),
  88. //api
  89. api: propTypes.func,
  90. });
  91. //暴露内部方法
  92. const emit = defineEmits(['getMethod', 'delete']);
  93. //数据
  94. const data = ref([]);
  95. // 切换每行个数
  96. // cover图片自适应高度
  97. //修改pageSize并重新请求数据
  98. const height = computed(() => {
  99. return `h-${120 - grid.value * 6}`;
  100. });
  101. //表单
  102. const [registerForm, { validate }] = useForm({
  103. schemas: [{ field: 'type', component: 'Input', label: '类型' }],
  104. labelWidth: 80,
  105. baseColProps: { span: 6 },
  106. actionColOptions: { span: 24 },
  107. autoSubmitOnEnter: true,
  108. submitFunc: handleSubmit,
  109. });
  110. //表单提交
  111. async function handleSubmit() {
  112. const data = await validate();
  113. await fetch(data);
  114. }
  115. function sliderChange(n) {
  116. pageSize.value = n * 4;
  117. fetch();
  118. }
  119. // 自动请求并暴露内部方法
  120. onMounted(() => {
  121. fetch();
  122. emit('getMethod', fetch);
  123. });
  124. async function fetch(p = {}) {
  125. const { api, params } = props;
  126. if (api && isFunction(api)) {
  127. const res = await api({ ...params, page: page.value, pageSize: pageSize.value, ...p });
  128. data.value = res.items;
  129. total.value = res.total;
  130. }
  131. }
  132. //分页相关
  133. const page = ref(1);
  134. const pageSize = ref(36);
  135. const total = ref(0);
  136. const paginationProp = ref({
  137. showSizeChanger: false,
  138. showQuickJumper: true,
  139. pageSize,
  140. current: page,
  141. total,
  142. showTotal: (total) => `总 ${total} 条`,
  143. onChange: pageChange,
  144. onShowSizeChange: pageSizeChange,
  145. });
  146. function pageChange(p, pz) {
  147. page.value = p;
  148. pageSize.value = pz;
  149. fetch();
  150. }
  151. function pageSizeChange(current, size) {
  152. pageSize.value = size;
  153. fetch();
  154. }
  155. async function handleDelete(id) {
  156. emit('delete', id);
  157. }
  158. </script>