index.js 337 B

123456789101112131415161718192021
  1. Component({
  2. properties: {
  3. visible: {
  4. type: Boolean,
  5. value: false
  6. },
  7. text: String,
  8. confirmText: {
  9. type: String,
  10. value: "确定"
  11. }
  12. },
  13. methods: {
  14. confirm: function () {
  15. this.triggerEvent("confirm");
  16. },
  17. cancel: function () {
  18. this.triggerEvent("cancel");
  19. }
  20. }
  21. });