http.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. // #ifdef H5
  2. import wx from 'weixin-jsapi'
  3. // #endif
  4. let path = "";
  5. let appIp = "";
  6. // #ifdef H5
  7. let domainName = location.host; //域名+端口
  8. let protocolName = document.location.protocol; //http协议
  9. let wsName = protocolName === 'http:' ? 'ws' : 'wss'; //ws协议
  10. path = `${protocolName}//${domainName}/service`
  11. // #endif
  12. uni.setStorageSync('path', path);
  13. // get方法
  14. export function get(url, data = {}) {
  15. url = path + url;
  16. return new Promise((resolve, reject) => {
  17. uni.request({
  18. url,
  19. data,
  20. header: {
  21. 'Cache-Control': 'no-cache'
  22. },
  23. success(res) {
  24. resolve(res.data);
  25. },
  26. fail(err) {
  27. uni.showToast({
  28. icon: 'none',
  29. title: '请求数据失败!'
  30. });
  31. }
  32. })
  33. });
  34. }
  35. // post方法
  36. export function post(url, data = {}) {
  37. url = path + url;
  38. return new Promise((resolve, reject) => {
  39. uni.request({
  40. method: 'POST',
  41. url,
  42. data,
  43. header: {
  44. 'Cache-Control': 'no-cache'
  45. },
  46. success(res) {
  47. resolve(res.data);
  48. },
  49. fail(err) {
  50. uni.showToast({
  51. icon: 'none',
  52. title: '请求数据失败!'
  53. });
  54. }
  55. })
  56. });
  57. }
  58. // delete方法
  59. export function deleteIt(url, data = {}) {
  60. url = path + url;
  61. return new Promise((resolve, reject) => {
  62. uni.request({
  63. method: 'DELETE',
  64. url,
  65. data,
  66. header: {
  67. 'Cache-Control': 'no-cache'
  68. },
  69. success(res) {
  70. resolve(res.data);
  71. },
  72. fail(err) {
  73. uni.showToast({
  74. icon: 'none',
  75. title: '请求数据失败!'
  76. });
  77. }
  78. })
  79. });
  80. }
  81. // 扫一扫
  82. export function SM() {
  83. // #ifndef H5
  84. return new Promise((resolve, reject) => {
  85. uni.scanCode({
  86. onlyFromCamera: true,
  87. success: function(res) {
  88. let str = res.result.replace(/[\s\/]/g, '') || 'none';
  89. str = str.replace(/CODABAR,/i, '');
  90. resolve(str);
  91. },
  92. fail(err) {
  93. reject(err)
  94. }
  95. });
  96. });
  97. // #endif
  98. // #ifdef H5
  99. return new Promise((resolve, reject) => {
  100. let param = {
  101. requestUrl: location.href.split('#')[0]
  102. };
  103. post("/wechat/getJsConfig", param).then(res => {
  104. if (res) {
  105. wx.config({
  106. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  107. appId: res.appId, // 必填,企业号的唯一标识,此处填写企业号corpid
  108. timestamp: res.timestamp, // 必填,生成签名的时间戳
  109. nonceStr: res.nonceStr, // 必填,生成签名的随机串
  110. signature: res.signature, // 必填,签名,见附录1
  111. jsApiList: res.jsApiList // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  112. });
  113. wx.ready(function() {
  114. wx.scanQRCode({
  115. desc: "scanQRCode desc",
  116. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  117. scanType: ["qrCode", "barCode"], // 可以指定扫二维码还是一维码,默认二者都有
  118. success: function(res) {
  119. // 当needResult 为 1 时,扫码返回的结果
  120. let str = res.resultStr.replace(/[\s\/]/g, '') || 'none';
  121. str = str.replace(/CODABAR,/i, '');
  122. resolve(str);
  123. }
  124. });
  125. });
  126. }
  127. })
  128. });
  129. // #endif
  130. }
  131. // 修改接口域名
  132. export function changeIP(ip) {
  133. console.log(ip)
  134. path = `${ip}/service`;
  135. appIp = ip;
  136. uni.setStorageSync('path', path);
  137. }
  138. // 建立websocket
  139. export function webHandle(cate, type, ipe) {
  140. // uni.closeSocket();
  141. // 屏蔽语音播报
  142. if (cate !== 'no') {
  143. uni.navigateTo({
  144. url: `../${cate}/${cate}`
  145. })
  146. }
  147. return;
  148. // 屏蔽语音播报
  149. if (getApp().$ws) {
  150. return;
  151. }
  152. console.log(getApp().$ws)
  153. let clientid, ip, wws;
  154. if (type === 'app') {
  155. clientid = uni.getStorageSync('clientid'); //获取cid
  156. ipe = ipe || appIp;
  157. ip = ipe.split(':')[1]; //过滤掉端口
  158. wws = ipe.split(':')[0] == 'http' ? 'ws' : 'wss';
  159. } else if (type === 'wx') {
  160. ip = document.domain; //过滤掉端口
  161. // ip = '192.168.3.108'; //过滤掉端口
  162. console.log(ip)
  163. wws = wsName;
  164. }
  165. console.log(getApp())
  166. getApp().$ws = uni.connectSocket({
  167. url: `${wws}://${ip}:8080/webSocket/message/app`,
  168. header: {
  169. 'content-type': 'application/json'
  170. },
  171. success(result) {
  172. console.log(result);
  173. // 监听WebSocket连接打开事件
  174. uni.onSocketOpen(res1 => {
  175. console.log(res1, 'websocket连接成功');
  176. // 通过 WebSocket 连接发送数据
  177. let obj = {};
  178. if (type === 'app') {
  179. obj = {
  180. userCount: uni.getStorageSync('userData').user.id,
  181. clientId: clientid
  182. };
  183. } else if (type === 'wx') {
  184. obj = {
  185. userCount: uni.getStorageSync('userData').user.id
  186. };
  187. }
  188. console.log(JSON.stringify(obj))
  189. uni.sendSocketMessage({
  190. data: JSON.stringify(obj),
  191. success(res2) {
  192. console.log(res2)
  193. }
  194. });
  195. // 监听WebSocket接受到服务器的消息事件
  196. uni.onSocketMessage(res3 => {
  197. console.log('收到服务器内容:' + res3.data);
  198. // 连接成功后跳转到待接单列表baba
  199. if (res3.data !== 'X') {
  200. let objData = JSON.parse(res3.data);
  201. if (objData.status == 200) {
  202. if (cate !== 'no') {
  203. uni.navigateTo({
  204. url: `../${cate}/${cate}`
  205. })
  206. }
  207. } else {
  208. // 播报 start
  209. let msg = objData.content;
  210. msg = msg.replace(/【[0-9]*】/g, function(word) {
  211. return word.substring(0, 2) + ' ' + word.substring(2);
  212. });
  213. console.log(getApp().audios)
  214. getApp().audios = getApp().audios || [];
  215. getApp().audios.push(msg);
  216. if (getApp().audios.length === 1) {
  217. startAudio();
  218. }
  219. // 播报 end
  220. }
  221. }
  222. });
  223. });
  224. uni.onSocketClose(function() {
  225. console.log('WebSocket 已关闭!');
  226. });
  227. }
  228. })
  229. }
  230. // 语音播放
  231. function startAudio() {
  232. let arr = getApp().audios;
  233. console.log(arr);
  234. if (arr.length === 0) {
  235. return;
  236. } else {
  237. const innerAudioContext = uni.createInnerAudioContext();
  238. innerAudioContext.autoplay = true;
  239. innerAudioContext.src = 'http://fanyi.baidu.com/gettts?lan=zh&text=' + arr[0] +
  240. '&spd=5&source=web';
  241. innerAudioContext.onEnded(() => {
  242. arr.shift();
  243. startAudio();
  244. })
  245. }
  246. // innerAudioContext.src = 'http://192.168.3.108/tts1.mp3';
  247. // uni.request({
  248. // url: 'http://fanyi.baidu.com/gettts?lan=zh&text=这是一个测试&spd=5&source=web',
  249. // success: (res) => {
  250. // console.log(res.data);
  251. // }
  252. // });
  253. }