refund.js 611 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // components/order/refund.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. show: {
  8. type: Boolean,
  9. observer: function (newVal, oldVal) {
  10. this.setData({ show: newVal })
  11. console.log(this.data.show);
  12. }
  13. },
  14. type:{
  15. type: Number,
  16. observer: function (newVal, oldVal) {
  17. this.setData({ type: newVal })
  18. }
  19. }
  20. },
  21. /**
  22. * 组件的初始数据
  23. */
  24. data: {
  25. show:false,
  26. type:0,
  27. height:'90%'
  28. },
  29. /**
  30. * 组件的方法列表
  31. */
  32. methods: {
  33. isSure(){
  34. this.triggerEvent("close")
  35. }
  36. }
  37. })