iamberry_video.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. mui.ready(function() {
  2. var userType = getParam("userType");
  3. var isDrp = getParam("isDrp");
  4. if(userType == '2' && isDrp == 'true') {
  5. $('.mui-bar-tab').hide();
  6. isDrp = 'false'
  7. } else {
  8. userType = 1
  9. }
  10. $.ajax(base_path + '/user/memberInfo?dates=' + new Date().getTime(), {
  11. dataType: 'json',
  12. type: 'post',
  13. timeout: 15000,
  14. xhrFields: {
  15. withCredentials: true
  16. },
  17. crossDomain: true,
  18. success: function(dt) {
  19. if(dt.isRedirect) {
  20. location.href = dt.redirectURL;
  21. } else {
  22. if(dt.status) {
  23. var shareOpenid = dt.data.userOpenid;
  24. var link = "https:" + domanUrl + base_path + "/agentWechat/goPublicity?shareOpenid=" + shareOpenid + "&userType=" + userType;
  25. window.repleFlag = false;
  26. window.wxFriend = {
  27. "appId": "",
  28. "imgUrl": '//s.iamberry.com/images/shop/naiji_xuanchuan.jpg',
  29. "link": link,
  30. "desc": "Watero水时代商城,开启优雅生活",
  31. "title": "Watero水时代商城,好水,好茶,生活不将就!",
  32. "netError": "您的网络异常,请刷新重试!如多次刷新无效,请向我们反应 ~",
  33. "shareTimeSuccess": "分享成功",
  34. "shareTimeCancel": "已取消分享",
  35. "shareAppSuccess": "分享成功",
  36. "shareAppCancel": "已取消分享"
  37. };
  38. getConfig();
  39. document.querySelector('.loading-bg').style.display = 'none'
  40. } else {
  41. var btnArray = ['否', '是'];
  42. mui.confirm(dt.message + '是否刷新页面?', '爱贝源-提示', btnArray, function(e) {
  43. if(e.index == 1) {
  44. location.reload(true)
  45. }
  46. })
  47. }
  48. }
  49. },
  50. error: function(xhr, type, errorThrown) {
  51. errorfn(xhr)
  52. }
  53. });
  54. getCartNum();
  55. });