http.js 7.9 KB

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