photograph.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. import {
  2. get,
  3. post
  4. } from "./../http/http.js";
  5. const pathUrl = uni.getStorageSync('path');
  6. export function photographTool(data, deptObj) {
  7. console.log(data, deptObj, 1111);
  8. let id_seimin;
  9. let asTypeValue_seimin;
  10. let gdStateValue_seimin;
  11. if (data.status != 200 && data.status !== undefined) {
  12. id_seimin = data.id;
  13. asTypeValue_seimin = data.type;
  14. gdStateValue_seimin = JSON.parse(data.model).gdstate2; //type改成gdstate
  15. } else {
  16. id_seimin = data.id;
  17. asTypeValue_seimin = data.taskType.associationType.value;
  18. gdStateValue_seimin = data.gdState.value;
  19. }
  20. //#ifdef H5
  21. uni.chooseImage({
  22. sourceType: ['camera'],
  23. success: (chooseImageRes) => {
  24. console.log(chooseImageRes, pathUrl)
  25. const tempFilePaths = chooseImageRes.tempFilePaths;
  26. const tempFiles = chooseImageRes.tempFiles;
  27. let tp = tempFilePaths[0];
  28. uni.showLoading({
  29. title: '上传中'
  30. });
  31. post('/workerOrder/findPatientCodeByWorkOrderId', {
  32. WorkOrderId: id_seimin
  33. }).then(result => {
  34. console.log(result)
  35. if (result.state == 200) {
  36. uni.getImageInfo({
  37. src: tp,
  38. success(res) {
  39. console.log('压缩前', res)
  40. let canvasWidth = res.width //图片原始长宽
  41. let canvasHeight = res.height
  42. let img = new Image()
  43. img.src = res.path
  44. let canvas = document.createElement('canvas');
  45. let ctx = canvas.getContext('2d')
  46. canvas.width = canvasWidth
  47. canvas.height = canvasHeight
  48. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  49. canvas.toBlob(function (fileSrc) {
  50. tp = window.URL.createObjectURL(fileSrc)
  51. console.log('压缩后', tp);
  52. uni.uploadFile({
  53. url: pathUrl + '/common/common/uploadAttachment/inspectAndPatient/' + id_seimin + '/' + result.recordId,
  54. filePath: tp,
  55. name: 'file',
  56. formData: {
  57. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  58. 0].path.split(
  59. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  60. },
  61. success: (uploadFileRes) => {
  62. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  63. if (asTypeValue_seimin === "patientTransport") {
  64. // 转运,扫描患者腕带码
  65. if (gdStateValue_seimin == 4) { //转运待到达
  66. post('/workerOrder/handleTrans', {
  67. "code": result.patientCode,
  68. "ids": [id_seimin]
  69. }).then(result1 => {
  70. console.log(result1);
  71. uni.hideLoading();
  72. if (result1.status == 200) {
  73. uni.showToast({
  74. title: '上传成功',
  75. duration: 2000
  76. });
  77. // 小扫描
  78. uni.navigateTo({
  79. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
  80. }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
  81. }&patient=${result1.patient}&patientCode=${result1.patientCode
  82. }&deptName=${result1.deptName}&bedNum=${result1.bedNum
  83. }&status=${result1.status}&msg=${result1.msg
  84. }&model=${encodeURIComponent(JSON.stringify(result1))}`,
  85. });
  86. } else {
  87. uni.showToast({
  88. icon: "none",
  89. title: "请求失败!",
  90. });
  91. }
  92. })
  93. } else if (gdStateValue_seimin == 5) { //转运待送达
  94. post('/workerOrder/handleTrans', {
  95. "code": result.patientCode,
  96. "ids": [id_seimin],
  97. "type": deptObj.infoType,
  98. "deptCode": deptObj.DEPTCode,
  99. }).then(result1 => {
  100. console.log(result1);
  101. uni.hideLoading();
  102. if (result1.status == 200) {
  103. uni.showToast({
  104. title: '上传成功',
  105. duration: 2000
  106. });
  107. // 小扫描
  108. uni.navigateTo({
  109. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin}&type1=${result1.type1}&infoData=${encodeURIComponent(JSON.stringify(result1.data))}&status=${result1.status}&msg=${result1.msg}&patient=${result1.patient}&patientCode=${result1.patientCode}&deptName=${result1.deptName}&bedNum=${result1.bedNum}&deptCode=${deptObj.DEPTCode}&dept=${deptObj.DEPT}&id=${id_seimin}&model=${encodeURIComponent(JSON.stringify(result1))}`
  110. });
  111. } else {
  112. uni.showToast({
  113. icon: "none",
  114. title: "请求失败!",
  115. });
  116. }
  117. })
  118. }
  119. } else if (asTypeValue_seimin === "inspect") {
  120. // 陪检,扫描患者腕带码
  121. if (gdStateValue_seimin == 4) { //陪检待到达
  122. console.log('怎么了')
  123. post('/workerOrder/handleIns', {
  124. "code": result.patientCode,
  125. "ids": [id_seimin]
  126. }).then(result1 => {
  127. console.log(result1);
  128. uni.hideLoading();
  129. if (result1.status == 200) {
  130. uni.showToast({
  131. title: '上传成功',
  132. duration: 2000
  133. });
  134. // 小扫描
  135. uni.navigateTo({
  136. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
  137. }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
  138. }&patient=${result1.patient}&patientCode=${result1.patientCode
  139. }&deptName=${result1.deptName}&bedNum=${result1.bedNum
  140. }&status=${result1.status}&msg=${result1.msg
  141. }&model=${encodeURIComponent(JSON.stringify(result1))}`,
  142. });
  143. } else {
  144. uni.showToast({
  145. icon: "none",
  146. title: "请求失败!",
  147. });
  148. }
  149. })
  150. } else if (gdStateValue_seimin == 5 || gdStateValue_seimin == 8) { //陪检待送达,执行中
  151. post('/workerOrder/handleIns', {
  152. "code": result.patientCode,
  153. "ids": [id_seimin],
  154. "type": deptObj.infoType,
  155. "deptCode": deptObj.DEPTCode,
  156. }).then(result1 => {
  157. console.log(result1);
  158. uni.hideLoading();
  159. if (result1.status == 200) {
  160. uni.showToast({
  161. title: '上传成功',
  162. duration: 2000
  163. });
  164. // 小扫描
  165. uni.navigateTo({
  166. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin}&type1=${result1.type1}&infoData=${encodeURIComponent(JSON.stringify(result1.data))}&status=${result1.status}&msg=${result1.msg}&patient=${result1.patient}&patientCode=${result1.patientCode}&deptName=${result1.deptName}&bedNum=${result1.bedNum}&deptCode=${deptObj.DEPTCode}&dept=${deptObj.DEPT}&id=${id_seimin}&model=${encodeURIComponent(JSON.stringify(result1))}`
  167. });
  168. } else {
  169. uni.showToast({
  170. icon: "none",
  171. title: "请求失败!",
  172. });
  173. }
  174. })
  175. }
  176. }
  177. },
  178. fail: err => {
  179. console.error(err);
  180. uni.hideLoading();
  181. uni.showToast({
  182. icon: 'none',
  183. title: '上传失败',
  184. duration: 2000
  185. });
  186. }
  187. });
  188. }, 'image/jpeg', 0.3)
  189. },
  190. fail: function () {
  191. uni.hideLoading();
  192. uni.showToast({
  193. icon: 'none',
  194. title: '上传失败',
  195. duration: 2000
  196. });
  197. }
  198. })
  199. } else {
  200. uni.showToast({
  201. icon: "none",
  202. title: "请求失败!",
  203. });
  204. }
  205. })
  206. }
  207. });
  208. //#endif
  209. // #ifdef APP-PLUS
  210. uni.chooseImage({
  211. sourceType: ['camera'],
  212. sizeType: ['compressed'],
  213. success: (chooseImageRes) => {
  214. console.log(chooseImageRes, pathUrl)
  215. const tempFilePaths = chooseImageRes.tempFilePaths;
  216. const tempFiles = chooseImageRes.tempFiles;
  217. let tp = tempFilePaths[0];
  218. uni.showLoading({
  219. title: '上传中'
  220. });
  221. post('/workerOrder/findPatientCodeByWorkOrderId', {
  222. WorkOrderId: id_seimin
  223. }).then(result => {
  224. console.log(result)
  225. if (result.state == 200) {
  226. uni.uploadFile({
  227. url: pathUrl + '/common/common/uploadAttachment/inspectAndPatient/' + id_seimin + '/' + result.recordId,
  228. filePath: tp,
  229. name: 'file',
  230. formData: {
  231. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[0].path
  232. .split(
  233. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  234. },
  235. success: (uploadFileRes) => {
  236. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  237. if (asTypeValue_seimin === "patientTransport") {
  238. // 转运,扫描患者腕带码
  239. if (gdStateValue_seimin == 4) { //转运待到达
  240. post('/workerOrder/handleTrans', {
  241. "code": result.patientCode,
  242. "ids": [id_seimin]
  243. }).then(result1 => {
  244. console.log(result1);
  245. uni.hideLoading();
  246. if (result1.status == 200) {
  247. uni.showToast({
  248. title: '上传成功',
  249. duration: 2000
  250. });
  251. // 小扫描
  252. uni.navigateTo({
  253. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
  254. }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
  255. }&patient=${result1.patient}&patientCode=${result1.patientCode
  256. }&deptName=${result1.deptName}&bedNum=${result1.bedNum
  257. }&status=${result1.status}&msg=${result1.msg
  258. }&model=${encodeURIComponent(JSON.stringify(result1))}`,
  259. });
  260. } else {
  261. uni.showToast({
  262. icon: "none",
  263. title: "请求失败!",
  264. });
  265. }
  266. })
  267. } else if (gdStateValue_seimin == 5) { //转运待送达
  268. post('/workerOrder/handleTrans', {
  269. "code": result.patientCode,
  270. "ids": [id_seimin],
  271. "type": deptObj.infoType,
  272. "deptCode": deptObj.DEPTCode,
  273. }).then(result1 => {
  274. console.log(result1);
  275. uni.hideLoading();
  276. if (result1.status == 200) {
  277. uni.showToast({
  278. title: '上传成功',
  279. duration: 2000
  280. });
  281. // 小扫描
  282. uni.navigateTo({
  283. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin}&type1=${result1.type1}&infoData=${encodeURIComponent(JSON.stringify(result1.data))}&status=${result1.status}&msg=${result1.msg}&patient=${result1.patient}&patientCode=${result1.patientCode}&deptName=${result1.deptName}&bedNum=${result1.bedNum}&deptCode=${deptObj.DEPTCode}&dept=${deptObj.DEPT}&id=${id_seimin}&model=${encodeURIComponent(JSON.stringify(result1))}`
  284. });
  285. } else {
  286. uni.showToast({
  287. icon: "none",
  288. title: "请求失败!",
  289. });
  290. }
  291. })
  292. }
  293. } else if (asTypeValue_seimin === "inspect") {
  294. // 陪检,扫描患者腕带码
  295. if (gdStateValue_seimin == 4) { //陪检待到达
  296. console.log('怎么了')
  297. post('/workerOrder/handleIns', {
  298. "code": result.patientCode,
  299. "ids": [id_seimin]
  300. }).then(result1 => {
  301. console.log(result1);
  302. uni.hideLoading();
  303. if (result1.status == 200) {
  304. uni.showToast({
  305. title: '上传成功',
  306. duration: 2000
  307. });
  308. // 小扫描
  309. uni.navigateTo({
  310. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
  311. }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
  312. }&patient=${result1.patient}&patientCode=${result1.patientCode
  313. }&deptName=${result1.deptName}&bedNum=${result1.bedNum
  314. }&status=${result1.status}&msg=${result1.msg
  315. }&model=${encodeURIComponent(JSON.stringify(result1))}`,
  316. });
  317. } else {
  318. uni.showToast({
  319. icon: "none",
  320. title: "请求失败!",
  321. });
  322. }
  323. })
  324. } else if (gdStateValue_seimin == 5 || gdStateValue_seimin == 8) { //陪检待送达,执行中
  325. post('/workerOrder/handleIns', {
  326. "code": result.patientCode,
  327. "ids": [id_seimin],
  328. "type": deptObj.infoType,
  329. "deptCode": deptObj.DEPTCode,
  330. }).then(result1 => {
  331. console.log(result1);
  332. uni.hideLoading();
  333. if (result1.status == 200) {
  334. uni.showToast({
  335. title: '上传成功',
  336. duration: 2000
  337. });
  338. // 小扫描
  339. uni.navigateTo({
  340. url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin}&type1=${result1.type1}&infoData=${encodeURIComponent(JSON.stringify(result1.data))}&status=${result1.status}&msg=${result1.msg}&patient=${result1.patient}&patientCode=${result1.patientCode}&deptName=${result1.deptName}&bedNum=${result1.bedNum}&deptCode=${deptObj.DEPTCode}&dept=${deptObj.DEPT}&id=${id_seimin}&model=${encodeURIComponent(JSON.stringify(result1))}`
  341. });
  342. } else {
  343. uni.showToast({
  344. icon: "none",
  345. title: "请求失败!",
  346. });
  347. }
  348. })
  349. }
  350. }
  351. },
  352. fail: err => {
  353. console.error(err);
  354. uni.hideLoading();
  355. uni.showToast({
  356. icon: 'none',
  357. title: '上传失败',
  358. duration: 2000
  359. });
  360. }
  361. });
  362. } else {
  363. uni.showToast({
  364. icon: "none",
  365. title: "请求失败!",
  366. });
  367. }
  368. })
  369. }
  370. });
  371. // #endif
  372. }