微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
285 B

  1. function modalResult(event) {
  2. const { result } = event.currentTarget.dataset;
  3. const page = getCurrentPages();
  4. const currPage = page[page.length - 1];
  5. currPage.setData({
  6. modalData: {
  7. showFlag: false,
  8. }
  9. });
  10. return result === '1';
  11. }
  12. export {
  13. modalResult,
  14. }