http.js 6.9 KB

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