refund_success.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. const util = require('../../utils/utils.js')
  2. let videoAd = null;
  3. var app = getApp();
  4. Page({
  5. data: {
  6. img:app.globalData.imgUrl,
  7. number:''
  8. },
  9. onLoad: function (options) {
  10. this.setData({number:options.number})
  11. // if (wx.createRewardedVideoAd) {
  12. // videoAd = wx.createRewardedVideoAd({
  13. // adUnitId: 'adunit-edc5c4664389a87a'
  14. // })
  15. // videoAd.onLoad(() => {})
  16. // videoAd.onError((err) => {})
  17. // videoAd.onClose((res) => {
  18. // if (res && res.isEnded || res === undefined) {
  19. // app.request('/deposit/refund', '', 'POST').then(res => {
  20. // console.log(res);
  21. // if (res.statusCode == 200) {
  22. // wx.showToast({
  23. // title: '加速成功,稍后到账',
  24. // icon:'none'
  25. // })
  26. // }
  27. // })
  28. // } else {
  29. // wx.showToast({
  30. // title: '加速失败!',
  31. // icon:'none'
  32. // })
  33. // }
  34. // })
  35. // }
  36. },
  37. home: util.throttle(function (e) {
  38. if(app.globalData.compatible){
  39. wx.reLaunch({
  40. url: '/pages/compatible/index/index',
  41. })
  42. }else{
  43. wx.reLaunch({
  44. url: '/pages/index/index',
  45. })
  46. }
  47. },1000),
  48. ad(){
  49. if (videoAd) {
  50. videoAd.show().catch(() => {
  51. // 失败重试
  52. videoAd.load()
  53. .then(() => videoAd.show())
  54. .catch(err => {
  55. console.log('激励视频 广告显示失败')
  56. })
  57. })
  58. }
  59. },
  60. onReady: function () {
  61. },
  62. onShow: function () {
  63. },
  64. onHide: function () {
  65. },
  66. onUnload: function () {
  67. },
  68. onPullDownRefresh: function () {
  69. },
  70. onReachBottom: function () {
  71. },
  72. onShareAppMessage: function () {
  73. }
  74. })