pauseMaster.js 623 B

123456789101112131415161718192021222324252627282930313233
  1. const util = require("../../../utils/util");
  2. const api = require('../../../api/api.js');
  3. Page({
  4. data: {
  5. rid:'',
  6. },
  7. onLoad(options) {
  8. },
  9. pauseTap(){
  10. wx.showToast({
  11. title: '招招盈计划参与资格被暂停,请联系商家运营了解详细情况',
  12. icon:'none'
  13. })
  14. // wx.showModal({
  15. // title: '提示',
  16. // content: '招招盈计划参与资格被暂停,请联系商家运营了解详细情况',
  17. // showCancel: false,
  18. // confirmText: '确定',
  19. // complete: (res) => {
  20. // if (res.cancel) {
  21. // }
  22. // if (res.confirm) {
  23. // }
  24. // }
  25. // })
  26. }
  27. })