http.js 7.4 KB

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