index.js 256 B

1234567891011121314151617181920
  1. var app = getApp();
  2. Component({
  3. properties: {
  4. iShidden: {
  5. type: Boolean,
  6. value: false
  7. }
  8. },
  9. data: {
  10. },
  11. attached: function () {
  12. },
  13. methods: {
  14. cancel: function () {
  15. this.triggerEvent('cancel', false);
  16. }
  17. }
  18. })