content.config.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import { ContentConfig } from "/@/components/PageContent";
  2. import dayjs from "dayjs";
  3. import {
  4. httpAdd,
  5. httpList,
  6. httpUpdate,
  7. httpDelete,
  8. httpStatus
  9. } from "/@/api/parameter/setProcess";
  10. import { h } from "vue";
  11. import { ElTag } from "element-plus";
  12. const columns = [
  13. {
  14. type: "selection",
  15. width: 55,
  16. hide: ({ checkList }) => !checkList.includes("勾选列")
  17. },
  18. {
  19. label: "序号",
  20. type: "index",
  21. width: 70,
  22. hide: ({ checkList }) => !checkList.includes("序号列")
  23. },
  24. {
  25. label: "ID",
  26. prop: "id"
  27. },
  28. {
  29. label: "流程名称",
  30. prop: "process_name"
  31. },
  32. {
  33. label: "流程值",
  34. prop: "process_type"
  35. },
  36. {
  37. label: "状态",
  38. prop: "status",
  39. cellRenderer({ row }) {
  40. return h(
  41. ElTag,
  42. {
  43. type: row.status === "0" ? "danger" : "success"
  44. },
  45. {
  46. default: () => (row.status === "0" ? "禁用" : "启用")
  47. }
  48. );
  49. }
  50. },
  51. {
  52. label: "创建人",
  53. prop: "creater"
  54. },
  55. {
  56. label: "创建时间",
  57. prop: "addtime",
  58. formatter: ({ createTime }) =>
  59. dayjs(createTime).format("YYYY-MM-DD HH:mm:ss")
  60. },
  61. {
  62. label: "操作",
  63. fixed: "right",
  64. width: 150,
  65. slot: "operation"
  66. }
  67. ];
  68. const contentConfig: ContentConfig = {
  69. title: "流程设置",
  70. powers: ["001", "002", "003", "004", "005", "006", "007", "008"],
  71. columns,
  72. apis: {
  73. httpAdd,
  74. httpList,
  75. httpUpdate,
  76. httpStatus,
  77. httpDelete
  78. }
  79. };
  80. export default contentConfig;