activityProfile.js 885 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. export default {
  2. filters: {
  3. },
  4. props: {
  5. activityInfoID: {
  6. type: String,
  7. default: ''
  8. },
  9. comIndex: {
  10. type: [Number, String],
  11. default: 0
  12. },
  13. layerid: {
  14. type: String,
  15. default: ''
  16. },
  17. order: {
  18. type: [Number, String],
  19. default: 1
  20. },
  21. canEdit: {
  22. type: Boolean,
  23. default: false
  24. },
  25. icon: {
  26. type: String,
  27. default: ''
  28. },
  29. text: {
  30. type: String,
  31. default: ''
  32. },
  33. userType: {
  34. type: [String, Number],
  35. default: ''
  36. }
  37. },
  38. methods: {
  39. add: function (params) {
  40. },
  41. refreshComp: function () {
  42. this.initData();
  43. }
  44. }
  45. }