index.js 996 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // nova-tourism/components/modal/index.js
  2. Component({
  3. options:{
  4. multipleSlots: true // 在组件定义时的选项中启用多slot支持
  5. },
  6. /**
  7. * 组件的属性列表
  8. */
  9. properties: {
  10. show:{
  11. type: Boolean,
  12. default: false
  13. },
  14. closeable:{
  15. type: Boolean,
  16. default: false
  17. },
  18. title:{
  19. type: String,
  20. default: '标题'
  21. },
  22. width:{
  23. type: String,
  24. default: '70%'
  25. },
  26. height:{
  27. type: String,
  28. default: '70vh'
  29. },
  30. // content:{
  31. // type: String,
  32. // default: ''
  33. // }
  34. },
  35. /**
  36. * 组件的初始数据
  37. */
  38. data: {
  39. },
  40. /**
  41. * 组件的方法列表
  42. */
  43. methods: {
  44. close(){
  45. this.triggerEvent('close')
  46. },
  47. enter(){
  48. this.triggerEvent('enter')
  49. }
  50. }
  51. })