index.js 630 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // lionfish_comshop/components/cashon_delivery/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. paymentCode: {
  8. type: String,
  9. value: ""
  10. },
  11. codeImg: {
  12. type: String,
  13. value: ""
  14. }
  15. },
  16. /**
  17. * 组件的初始数据
  18. */
  19. data: {
  20. showTipDialog: false,
  21. showImgDialog: false
  22. },
  23. /**
  24. * 组件的方法列表
  25. */
  26. methods: {
  27. handleTipDialog() {
  28. this.setData({
  29. showTipDialog: !this.data.showTipDialog
  30. })
  31. },
  32. handleImgDialog() {
  33. this.setData({
  34. showImgDialog: !this.data.showImgDialog
  35. })
  36. }
  37. }
  38. })