columns.tsx 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import { message } from "@/utils/message";
  2. import { tableDataEdit } from "../../data";
  3. import { ref, reactive, type Ref } from "vue";
  4. import type { PaginationProps } from "@pureadmin/table";
  5. export function useColumns(selectRef: Ref) {
  6. const selectValue = ref("");
  7. const columns: TableColumnList = [
  8. {
  9. label: "ID",
  10. prop: "id",
  11. width: 80
  12. },
  13. {
  14. label: "日期",
  15. prop: "date",
  16. minWidth: 120
  17. },
  18. {
  19. label: "姓名",
  20. prop: "name"
  21. },
  22. {
  23. label: "地址",
  24. prop: "address"
  25. }
  26. ];
  27. /** 分页配置 */
  28. const pagination = reactive<PaginationProps>({
  29. pageSize: 5,
  30. currentPage: 1,
  31. layout: "prev, pager, next",
  32. total: tableDataEdit.length,
  33. background: true,
  34. small: true
  35. });
  36. /** 高亮当前选中行 */
  37. function rowStyle({ row: { name } }) {
  38. return {
  39. cursor: "pointer",
  40. background: name === selectValue.value ? "#f5f7fa" : ""
  41. };
  42. }
  43. /** 行点击 */
  44. function onRowClick(row) {
  45. selectValue.value = row.name;
  46. selectRef.value.blur();
  47. message(`当前选中行的数据为:${JSON.stringify(row)}`, { type: "success" });
  48. }
  49. return {
  50. columns,
  51. pagination,
  52. selectValue,
  53. tableDataEdit,
  54. rowStyle,
  55. onRowClick
  56. };
  57. }