mx-tiny-buttons-config.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. export default {
  2. sysRightItem: {
  3. filter: {
  4. icon: 'filter', // font-icon
  5. text: '筛选',
  6. },
  7. about: {
  8. icon: 'navigate',
  9. text: ''
  10. },
  11. batch: {
  12. icon: 'settings',
  13. text: '批量'
  14. },
  15. plus: {
  16. icon: 'paperplane',
  17. text: '发送'
  18. },
  19. settings: {
  20. icon: 'gear',
  21. text: '设置'
  22. },
  23. history: {
  24. icon: 'outline',
  25. text: '历史'
  26. },
  27. add: {
  28. icon: 'plusempty',
  29. text: '新建'
  30. },
  31. refresh: {
  32. icon: 'reload',
  33. text: '刷新'
  34. },
  35. download: {
  36. icon: 'download',
  37. text: '下载'
  38. },
  39. edit: {
  40. icon: 'compose',
  41. text: '编辑'
  42. }
  43. },
  44. sysSwipeAction: {
  45. delete: {
  46. text: '删除',
  47. style: {
  48. backgroundColor: 'var(--error-color)'
  49. }
  50. },
  51. modify: {
  52. text: '编辑',
  53. style: {
  54. backgroundColor: 'var(--primary-color)'
  55. }
  56. },
  57. reply: {
  58. text: '回复',
  59. style: {
  60. backgroundColor: 'var(--primary-color)'
  61. }
  62. }
  63. },
  64. sexOptions: [{
  65. text: '男',
  66. value: '0'
  67. }, {
  68. text: '女',
  69. value: '1'
  70. }],
  71. yesOrNoOptions: [{
  72. text: '是',
  73. value: 1
  74. }, {
  75. text: '否',
  76. value: 0
  77. }]
  78. }