http.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. // #ifdef H5
  2. import wx from 'weixin-jsapi'
  3. // #endif
  4. let dsHost = "";
  5. // #ifdef H5
  6. dsHost = location.hostname;
  7. // #endif
  8. export const path = `${location.origin}/service`
  9. // get方法
  10. export function get(url, data = {}) {
  11. url = path + url;
  12. return new Promise((resolve, reject) => {
  13. uni.request({
  14. url,
  15. data,
  16. header: {
  17. 'Cache-Control': 'no-cache',
  18. 'Ds-Host': dsHost,
  19. },
  20. success(res) {
  21. if(res.statusCode === 200){
  22. resolve(res.data);
  23. }else{
  24. reject();
  25. uni.showToast({
  26. icon: 'none',
  27. title: '请求数据失败!'
  28. });
  29. }
  30. },
  31. fail(err) {
  32. reject();
  33. uni.showToast({
  34. icon: 'none',
  35. title: '请求数据失败!'
  36. });
  37. }
  38. })
  39. });
  40. }
  41. // post方法
  42. export function post(url, data = {}) {
  43. url = path + url;
  44. return new Promise((resolve, reject) => {
  45. uni.request({
  46. method: 'POST',
  47. url,
  48. data,
  49. header: {
  50. 'Cache-Control': 'no-cache',
  51. 'Ds-Host': dsHost,
  52. },
  53. success(res) {
  54. if(res.statusCode === 200){
  55. resolve(res.data);
  56. }else{
  57. reject();
  58. uni.showToast({
  59. icon: 'none',
  60. title: '请求数据失败!'
  61. });
  62. }
  63. },
  64. fail(err) {
  65. reject();
  66. uni.showToast({
  67. icon: 'none',
  68. title: '请求数据失败!'
  69. });
  70. }
  71. })
  72. });
  73. }
  74. // 扫一扫
  75. export function SM(code = '') {
  76. if(code){
  77. return Promise.resolve(code);
  78. }
  79. // #ifndef H5
  80. return new Promise((resolve, reject) => {
  81. uni.scanCode({
  82. onlyFromCamera: true,
  83. success: function(res) {
  84. let str = res.result.replace(/[\s\/]/g, '') || 'none';
  85. str = str.replace(/CODABAR,/i, '');
  86. str = str.replace(/CODE_128,/i, '');
  87. resolve(str);
  88. },
  89. fail(err) {
  90. reject(err);
  91. }
  92. });
  93. });
  94. // #endif
  95. // #ifdef H5
  96. return new Promise((resolve, reject) => {
  97. let param = {
  98. requestUrl: location.href.split('#')[0]
  99. };
  100. post("/wechat/getJsConfig", param).then(res => {
  101. if (res) {
  102. wx.config({
  103. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  104. appId: res.appId, // 必填,企业号的唯一标识,此处填写企业号corpid
  105. timestamp: res.timestamp, // 必填,生成签名的时间戳
  106. nonceStr: res.nonceStr, // 必填,生成签名的随机串
  107. signature: res.signature, // 必填,签名,见附录1
  108. jsApiList: res.jsApiList // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  109. });
  110. wx.ready(function() {
  111. wx.scanQRCode({
  112. desc: "scanQRCode desc",
  113. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  114. scanType: ["qrCode", "barCode"], // 可以指定扫二维码还是一维码,默认二者都有
  115. success: function(res) {
  116. // 当needResult 为 1 时,扫码返回的结果
  117. let str = res.resultStr.replace(/[\s\/]/g, '') || 'none';
  118. str = str.replace(/CODABAR,/i, '');
  119. str = str.replace(/CODE_128,/i, '');
  120. resolve(str);
  121. },
  122. cancel(err){
  123. reject(err);
  124. }
  125. });
  126. });
  127. }
  128. })
  129. });
  130. // #endif
  131. }