hook.tsx 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. import dayjs from "dayjs";
  2. import { message } from "@/utils/message";
  3. import { getKeyList } from "@pureadmin/utils";
  4. import { getLoginLogsList } from "@/api/system";
  5. import { usePublicHooks } from "@/views/system/hooks";
  6. import type { PaginationProps } from "@pureadmin/table";
  7. import { type Ref, reactive, ref, onMounted, toRaw } from "vue";
  8. export function useRole(tableRef: Ref) {
  9. const form = reactive({
  10. username: "",
  11. loginTime: ""
  12. });
  13. const dataList = ref([]);
  14. const loading = ref(true);
  15. const selectedNum = ref(0);
  16. const { tagStyle } = usePublicHooks();
  17. const pagination = reactive<PaginationProps>({
  18. total: 0,
  19. pageSize: 10,
  20. currentPage: 1,
  21. background: true
  22. });
  23. const columns: TableColumnList = [
  24. {
  25. label: "勾选列", // 如果需要表格多选,此处label必须设置
  26. type: "selection",
  27. fixed: "left",
  28. reserveSelection: true // 数据刷新后保留选项
  29. },
  30. {
  31. label: "序号",
  32. prop: "id",
  33. minWidth: 90
  34. },
  35. {
  36. label: "用户名",
  37. prop: "username",
  38. minWidth: 100
  39. },
  40. {
  41. label: "登录 IP",
  42. prop: "ip",
  43. minWidth: 140
  44. },
  45. {
  46. label: "登录地点",
  47. prop: "address",
  48. minWidth: 140
  49. },
  50. {
  51. label: "操作系统",
  52. prop: "system",
  53. minWidth: 100
  54. },
  55. {
  56. label: "浏览器类型",
  57. prop: "browser",
  58. minWidth: 100
  59. },
  60. {
  61. label: "登录状态",
  62. prop: "status",
  63. minWidth: 100,
  64. cellRenderer: ({ row, props }) => (
  65. <el-tag size={props.size} style={tagStyle.value(row.status)}>
  66. {row.status === 1 ? "成功" : "失败"}
  67. </el-tag>
  68. )
  69. },
  70. {
  71. label: "登录行为",
  72. prop: "behavior",
  73. minWidth: 100
  74. },
  75. {
  76. label: "登录时间",
  77. prop: "loginTime",
  78. minWidth: 180,
  79. formatter: ({ loginTime }) =>
  80. dayjs(loginTime).format("YYYY-MM-DD HH:mm:ss")
  81. }
  82. ];
  83. function handleSizeChange(val: number) {
  84. console.log(`${val} items per page`);
  85. }
  86. function handleCurrentChange(val: number) {
  87. console.log(`current page: ${val}`);
  88. }
  89. /** 当CheckBox选择项发生变化时会触发该事件 */
  90. function handleSelectionChange(val) {
  91. selectedNum.value = val.length;
  92. // 重置表格高度
  93. tableRef.value.setAdaptive();
  94. }
  95. /** 取消选择 */
  96. function onSelectionCancel() {
  97. selectedNum.value = 0;
  98. // 用于多选表格,清空用户的选择
  99. tableRef.value.getTableRef().clearSelection();
  100. }
  101. /** 批量删除 */
  102. function onbatchDel() {
  103. // 返回当前选中的行
  104. const curSelected = tableRef.value.getTableRef().getSelectionRows();
  105. // 接下来根据实际业务,通过选中行的某项数据,比如下面的id,调用接口进行批量删除
  106. message(`已删除序号为 ${getKeyList(curSelected, "id")} 的数据`, {
  107. type: "success"
  108. });
  109. tableRef.value.getTableRef().clearSelection();
  110. onSearch();
  111. }
  112. /** 清空日志 */
  113. function clearAll() {
  114. // 根据实际业务,调用接口删除所有日志数据
  115. message("已删除所有日志数据", {
  116. type: "success"
  117. });
  118. onSearch();
  119. }
  120. async function onSearch() {
  121. loading.value = true;
  122. const { data } = await getLoginLogsList(toRaw(form));
  123. dataList.value = data.list;
  124. pagination.total = data.total;
  125. pagination.pageSize = data.pageSize;
  126. pagination.currentPage = data.currentPage;
  127. setTimeout(() => {
  128. loading.value = false;
  129. }, 500);
  130. }
  131. const resetForm = formEl => {
  132. if (!formEl) return;
  133. formEl.resetFields();
  134. onSearch();
  135. };
  136. onMounted(() => {
  137. onSearch();
  138. });
  139. return {
  140. form,
  141. loading,
  142. columns,
  143. dataList,
  144. pagination,
  145. selectedNum,
  146. onSearch,
  147. clearAll,
  148. resetForm,
  149. onbatchDel,
  150. handleSizeChange,
  151. onSelectionCancel,
  152. handleCurrentChange,
  153. handleSelectionChange
  154. };
  155. }