http.js 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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('ip', ip);
  161. uni.setStorageSync('path', path);
  162. }
  163. // 建立websocket
  164. export function webHandle(cate, type, ipe) {
  165. // uni.closeSocket();
  166. // 屏蔽语音播报
  167. if (cate !== 'no') {
  168. uni.navigateTo({
  169. url: `../${cate}/${cate}`
  170. })
  171. }
  172. return;
  173. // 屏蔽语音播报
  174. if (getApp().$ws) {
  175. return;
  176. }
  177. console.log(getApp().$ws)
  178. let clientid, ip, wws;
  179. if (type === 'app') {
  180. clientid = uni.getStorageSync('clientid'); //获取cid
  181. ipe = ipe || appIp;
  182. ip = ipe.split(':')[1]; //过滤掉端口
  183. wws = ipe.split(':')[0] == 'http' ? 'ws' : 'wss';
  184. } else if (type === 'wx') {
  185. ip = document.domain; //过滤掉端口
  186. // ip = '192.168.3.108'; //过滤掉端口
  187. console.log(ip)
  188. wws = wsName;
  189. }
  190. console.log(getApp())
  191. getApp().$ws = uni.connectSocket({
  192. url: `${wws}://${ip}:8080/webSocket/message/app`,
  193. header: {
  194. 'content-type': 'application/json'
  195. },
  196. success(result) {
  197. console.log(result);
  198. // 监听WebSocket连接打开事件
  199. uni.onSocketOpen(res1 => {
  200. console.log(res1, 'websocket连接成功');
  201. // 通过 WebSocket 连接发送数据
  202. let obj = {};
  203. if (type === 'app') {
  204. obj = {
  205. userCount: uni.getStorageSync('userData').user.id,
  206. clientId: clientid
  207. };
  208. } else if (type === 'wx') {
  209. obj = {
  210. userCount: uni.getStorageSync('userData').user.id
  211. };
  212. }
  213. console.log(JSON.stringify(obj))
  214. uni.sendSocketMessage({
  215. data: JSON.stringify(obj),
  216. success(res2) {
  217. console.log(res2)
  218. }
  219. });
  220. // 监听WebSocket接受到服务器的消息事件
  221. uni.onSocketMessage(res3 => {
  222. console.log('收到服务器内容:' + res3.data);
  223. // 连接成功后跳转到待接单列表baba
  224. if (res3.data !== 'X') {
  225. let objData = JSON.parse(res3.data);
  226. if (objData.status == 200) {
  227. if (cate !== 'no') {
  228. uni.navigateTo({
  229. url: `../${cate}/${cate}`
  230. })
  231. }
  232. } else {
  233. // 播报 start
  234. let msg = objData.content;
  235. msg = msg.replace(/【[0-9]*】/g, function(word) {
  236. return word.substring(0, 2) + ' ' + word.substring(2);
  237. });
  238. console.log(getApp().audios)
  239. getApp().audios = getApp().audios || [];
  240. getApp().audios.push(msg);
  241. if (getApp().audios.length === 1) {
  242. startAudio();
  243. }
  244. // 播报 end
  245. }
  246. }
  247. });
  248. });
  249. uni.onSocketClose(function() {
  250. console.log('WebSocket 已关闭!');
  251. });
  252. }
  253. })
  254. }
  255. // 语音播放
  256. function startAudio() {
  257. let arr = getApp().audios;
  258. console.log(arr);
  259. if (arr.length === 0) {
  260. return;
  261. } else {
  262. const innerAudioContext = uni.createInnerAudioContext();
  263. innerAudioContext.autoplay = true;
  264. innerAudioContext.src = 'http://fanyi.baidu.com/gettts?lan=zh&text=' + arr[0] +
  265. '&spd=5&source=web';
  266. innerAudioContext.onEnded(() => {
  267. arr.shift();
  268. startAudio();
  269. })
  270. }
  271. // innerAudioContext.src = 'http://192.168.3.108/tts1.mp3';
  272. // uni.request({
  273. // url: 'http://fanyi.baidu.com/gettts?lan=zh&text=这是一个测试&spd=5&source=web',
  274. // success: (res) => {
  275. // console.log(res.data);
  276. // }
  277. // });
  278. }
  279. /**
  280. * 上传附件
  281. */
  282. export function api_uploadAttachment(type, id){
  283. return `${path}/common/common/uploadAttachment/${type}/${id}/${id}`
  284. }