http.js 7.2 KB

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