photograph.js 17 KB

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