memberProfileMixin.js 1.0 KB

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