siteRuleList.data.ts 861 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import { BasicColumn } from '@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. {
  4. title: '序号',
  5. dataIndex: '',
  6. key: 'rowIndex',
  7. width: 60,
  8. align: 'center',
  9. customRender: function ({ index }) {
  10. return parseInt(index) + 1;
  11. },
  12. },
  13. {
  14. title: '站点名称',
  15. align: 'center',
  16. dataIndex: 'siteName',
  17. },
  18. {
  19. title: '关键词',
  20. align: 'center',
  21. dataIndex: 'word',
  22. },
  23. {
  24. title: '黑白名单',
  25. align: 'center',
  26. dataIndex: 'blackOrWhite',
  27. width: 180,
  28. sorter: true,
  29. },
  30. {
  31. title: '询盘数量',
  32. align: 'center',
  33. dataIndex: 'wasteEnquiryNum',
  34. },
  35. {
  36. title: '创建日期',
  37. align: 'center',
  38. dataIndex: 'createTime',
  39. customRender: function ({ text }) {
  40. return !text ? '' : text.length > 10 ? text.substr(0, 10) : text;
  41. },
  42. },
  43. ];