wxaccountfans.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2018-2025, lengleng All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the pig4cloud.com developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: lengleng (wangiegie@gmail.com)
  16. */
  17. export const tableOption = {
  18. border: true,
  19. index: true,
  20. indexLabel: '序号',
  21. stripe: true,
  22. menuAlign: 'center',
  23. viewBtn: true,
  24. addBtn: false,
  25. editBtn: false,
  26. align: 'center',
  27. searchShow: false,
  28. column: [
  29. {
  30. label: '主键',
  31. prop: 'id',
  32. hide: false
  33. },
  34. {
  35. label: '公众号',
  36. prop: 'wxAccountName'
  37. },
  38. {
  39. label: '昵称',
  40. prop: 'nickname',
  41. overHidden: true
  42. },
  43. {
  44. label: '用户标识',
  45. prop: 'openid',
  46. overHidden: true
  47. },
  48. {
  49. label: '性别',
  50. prop: 'gender',
  51. type: 'select',
  52. dicUrl: '/admin/dict/type/gender'
  53. },
  54. {
  55. label: '语言',
  56. prop: 'language',
  57. hide: true
  58. },
  59. {
  60. label: '国家',
  61. prop: 'country',
  62. hide: true
  63. },
  64. {
  65. label: '省份',
  66. prop: 'province',
  67. hide: true
  68. },
  69. {
  70. label: '城市',
  71. prop: 'city'
  72. },
  73. {
  74. label: '订阅状态',
  75. prop: 'subscribeStatus',
  76. type: 'select',
  77. dicUrl: '/admin/dict/type/subscribe'
  78. },
  79. {
  80. label: '订阅时间',
  81. prop: 'subscribeTime'
  82. },
  83. {
  84. label: '备注',
  85. prop: 'remark',
  86. hide: true
  87. },
  88. {
  89. label: '头像地址',
  90. prop: 'headimgUrl',
  91. type: 'upload',
  92. imgWidth: 60,
  93. imgFullscreen: true,
  94. editDisplay: false,
  95. addDisplay: false,
  96. listType: 'picture-img'
  97. }
  98. ]
  99. }