index.js 306 B

12345678910111213141516
  1. const app = getApp()
  2. Component({
  3. options: { multipleSlots: true },
  4. properties: {
  5. dialog: { type: Object },
  6. },
  7. data: {},
  8. methods: {
  9. // 关闭弹框
  10. toClose: function () {
  11. const that = this;
  12. that.triggerEvent('toClose')
  13. }
  14. }
  15. })