index.js 509 B

1234567891011121314151617181920212223242526272829
  1. Component({
  2. externalClasses: ["i-class", "i-btn"],
  3. properties: {
  4. visible: {
  5. type: Boolean,
  6. value: false
  7. },
  8. text: String,
  9. confirmText: {
  10. type: String,
  11. value: "确定"
  12. },
  13. showCancel: {
  14. type: Boolean,
  15. value: true
  16. }
  17. },
  18. methods: {
  19. confirm: function () {
  20. this.triggerEvent("confirm");
  21. },
  22. cancel: function () {
  23. this.triggerEvent("cancel");
  24. },
  25. close: function () {
  26. this.triggerEvent("cancel");
  27. }
  28. }
  29. });