social-constants.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // 表格列信息
  2. const table = {
  3. columns: [
  4. {
  5. title: 'ID',
  6. align: 'center',
  7. dataIndex: 'id'
  8. },
  9. {
  10. title: 'code',
  11. align: 'center',
  12. dataIndex: 'code'
  13. },
  14. {
  15. title: '社交内容',
  16. align: 'center',
  17. dataIndex: 'content',
  18. scopedSlots: { customRender: 'content' }
  19. },
  20. {
  21. title: '图标',
  22. align: 'center',
  23. dataIndex: 'icon',
  24. scopedSlots: { customRender: 'icon' }
  25. },
  26. {
  27. title: '展示类型',
  28. align: 'center',
  29. dataIndex: 'showType',
  30. scopedSlots: { customRender: 'showType' }
  31. },
  32. {
  33. title: '备注',
  34. align: 'center',
  35. dataIndex: 'remark',
  36. scopedSlots: { customRender: 'remark' }
  37. },
  38. {
  39. title: '主页社交信息',
  40. align: 'center',
  41. dataIndex: 'isHome',
  42. scopedSlots: { customRender: 'isHome' }
  43. },
  44. {
  45. title: '启用',
  46. align: 'center',
  47. dataIndex: 'isEnabled',
  48. scopedSlots: { customRender: 'isEnabled' }
  49. },
  50. {
  51. title: '创建时间',
  52. align: 'center',
  53. dataIndex: 'createTime',
  54. scopedSlots: { customRender: 'createTime' }
  55. },
  56. {
  57. title: '更新时间',
  58. align: 'center',
  59. dataIndex: 'updateTime',
  60. scopedSlots: { customRender: 'updateTime' }
  61. },
  62. {
  63. title: '操作',
  64. dataIndex: 'action',
  65. align: 'center',
  66. fixed: 'right',
  67. width: '250px',
  68. scopedSlots: { customRender: 'action' }
  69. }
  70. ]
  71. }
  72. // 表格里面的列key value
  73. const filters = { }
  74. export { table, filters }