Aucune description

kefuhelp.js 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. mui.ready(function() {
  2. var feedBack = document.getElementById("feedBack");
  3. var claims = document.getElementById("claims");
  4. // var FAQ = document.getElementById("FAQ");
  5. var contactService = document.getElementById("contactService");
  6. /*意见反馈*/
  7. feedBack.addEventListener('tap',function(){
  8. var userid = plus.storage.getItem('userid');
  9. console.log(userid);
  10. mui.openWindow({
  11. url: '../html/feedback.html',
  12. id: '../html/feedback.html',
  13. show: {
  14. aniShow: "slide-in-right"
  15. },
  16. extras:{userId:userid}
  17. });
  18. });
  19. /*投诉举报*/
  20. claims.addEventListener('tap',function(){
  21. var userid = plus.storage.getItem('userid');
  22. console.log(userid);
  23. mui.openWindow({
  24. url: '../html/claims.html',
  25. id: '../html/claims.html',
  26. show: {
  27. aniShow: "slide-in-right"
  28. },
  29. extras:{userId:userid}
  30. });
  31. });
  32. /*常见问题*/
  33. /*FAQ.addEventListener('tap',function(){
  34. var userid = plus.storage.getItem('userid');
  35. console.log(userid);
  36. mui.openWindow({
  37. url: '../html/faq.html',
  38. id: '../html/faq.html',
  39. show: {
  40. aniShow: "slide-in-right"
  41. },
  42. extras:{userId:userid}
  43. });
  44. });*/
  45. /*联系客服*/
  46. contactService.addEventListener('tap',function(){
  47. var userid = plus.storage.getItem('userid');
  48. console.log(userid);
  49. mui.openWindow({
  50. url: '../html/contactservice.html',
  51. id: '../html/contactservice.html',
  52. show: {
  53. aniShow: "slide-in-right"
  54. },
  55. extras:{userId:userid}
  56. });
  57. });
  58. });