commonFun.js 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. import { get, post } from '../http/http.js'
  2. import { pathUrl } from "../tools/photograph.js";
  3. // 如果不是静配,药配,标本配送,标本轮巡
  4. // 科室签到(小扫描)-拍照
  5. export function nextDeptOrder_ss(_this, data, accountObj) {
  6. uni.showLoading({
  7. title: "加载中",
  8. mask: true,
  9. });
  10. _this.actions = _this.actions || [];
  11. console.log(_this.currentCode);
  12. if (_this.currentCode) {
  13. // 动作
  14. let actions = _this.actions.filter(v => v.checked);
  15. let actionRemarks = actions.map(v => v.name).toString();
  16. if(actionRemarks){
  17. let postData = {
  18. orderId: data.id,
  19. };
  20. if(data.gdState.value == 4){
  21. postData.actionStartRemarks = actionRemarks;
  22. }else if(data.gdState.value == 5){
  23. postData.actionRemarks = actionRemarks;
  24. }
  25. post("/workerOrder/addOtherRemarks", postData).then((result1) => {
  26. if(result1.state == 200){
  27. postWorkerOrder(_this, data, accountObj);
  28. }else{
  29. uni.hideLoading();
  30. uni.showToast({
  31. icon: "none",
  32. title: result1.msg || "接口获取数据失败!",
  33. });
  34. }
  35. });
  36. }else{
  37. postWorkerOrder(_this, data, accountObj);
  38. }
  39. }else{
  40. uni.hideLoading();
  41. }
  42. }
  43. // 完成工单
  44. export function uploadToOther(_this, data, accountObj){
  45. uni.showLoading({
  46. mask: true,
  47. title: '加载中'
  48. });
  49. _this.imageValue = _this.imageValue || [];
  50. let imageValue = _this.imageValue;
  51. let gdOperate;
  52. let uploadType;
  53. if(data.gdState.value == 4){
  54. gdOperate = 27;
  55. uploadType = 'orderStartPhoto';
  56. }else if(data.gdState.value == 5){
  57. gdOperate = 22;
  58. uploadType = 'orderEndPhoto';
  59. }
  60. // 完成工单
  61. post('/workerOrder/findRecordInfoByOrderId', {
  62. orderId: data.id,
  63. gdOperate,
  64. }).then(result => {
  65. if (result.state == 200) {
  66. let n = 0;
  67. //#ifdef H5
  68. imageValue.forEach((v) => {
  69. // 图片上传 start
  70. console.log("压缩前");
  71. let canvasWidth = v.image.width; //图片原始长宽
  72. let canvasHeight = v.image.height;
  73. let img = new Image();
  74. img.src = v.path;
  75. let canvas = document.createElement("canvas");
  76. let ctx = canvas.getContext("2d");
  77. canvas.width = canvasWidth;
  78. canvas.height = canvasHeight;
  79. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  80. canvas.toBlob(
  81. (fileSrc) => {
  82. let tp = window.URL.createObjectURL(fileSrc);
  83. console.log("压缩后");
  84. n++;
  85. uni.uploadFile({
  86. url: pathUrl +
  87. "/common/common/uploadAttachment/"+ uploadType +"/" +
  88. data.id +
  89. "/" + result.recordId,
  90. filePath: tp,
  91. name: "file",
  92. formData: {
  93. filename: v.name,
  94. },
  95. success: (uploadFileRes) => {
  96. console.log(uploadFileRes);
  97. if (--n === 0) {
  98. nextDeptOrder_ss(_this, data, accountObj);
  99. }
  100. },
  101. fail: (err) => {
  102. n--;
  103. console.error(err);
  104. uni.showToast({
  105. icon: "none",
  106. title: "上传失败",
  107. duration: 2000,
  108. });
  109. },
  110. });
  111. },
  112. "image/jpeg",
  113. 0.1
  114. );
  115. // 图片上传 end
  116. });
  117. //#endif
  118. //#ifdef APP-PLUS
  119. imageValue.forEach((v) => {
  120. // 图片上传 start
  121. uni.compressImage({
  122. src: v.path,
  123. quality: 30,
  124. success: (res) => {
  125. console.log('压缩前', res)
  126. let tp = res.tempFilePath;
  127. console.log("压缩后");
  128. n++;
  129. uni.uploadFile({
  130. url: pathUrl +
  131. "/common/common/uploadAttachment/"+ uploadType +"/" +
  132. data.id +
  133. "/" + result.recordId,
  134. filePath: tp,
  135. name: "file",
  136. formData: {
  137. filename: v.name,
  138. },
  139. success: (uploadFileRes) => {
  140. console.log(uploadFileRes);
  141. if (--n === 0) {
  142. nextDeptOrder_ss(_this, data, accountObj);
  143. }
  144. },
  145. fail: (err) => {
  146. n--;
  147. console.error(err);
  148. uni.showToast({
  149. icon: "none",
  150. title: "上传失败",
  151. duration: 2000,
  152. });
  153. },
  154. });
  155. },
  156. fail: function () {
  157. uni.hideLoading();
  158. uni.showToast({
  159. icon: 'none',
  160. title: '上传失败',
  161. duration: 2000
  162. });
  163. }
  164. })
  165. // 图片上传 end
  166. });
  167. //#endif
  168. }else{
  169. uni.hideLoading();
  170. }
  171. })
  172. }
  173. // 完成工单
  174. export function postWorkerOrder(_this, data, accountObj){
  175. uni.showLoading({
  176. title: "加载中",
  177. mask: true,
  178. });
  179. let isKs = 0;
  180. let ids = [];
  181. let id = data.id;
  182. ids.push(id);
  183. let list = {
  184. code: "",
  185. ids: ids,
  186. };
  187. let code = "";
  188. let type = "";
  189. let gdStateValue = data.gdState.value; //工单状态value
  190. let associationTypeValue = data.taskType.associationType.value; //关联类型value
  191. // 其他临床服务,并且工单状态是待到达||工单状态待送达
  192. if (
  193. (associationTypeValue == "other" &&
  194. gdStateValue == "4") ||
  195. gdStateValue == "5"
  196. ) {
  197. code = _this.currentCode;
  198. type = "orderSign/" + code;
  199. list = {
  200. ids
  201. };
  202. if (accountObj) {
  203. list.handover = [accountObj.accountId];
  204. }
  205. if (_this.logRemarks) {
  206. list.logRemarks = _this.logRemarks;
  207. }
  208. isKs = 1;
  209. }
  210. post("/workerOrder/" + type, list).then((res) => {
  211. console.log(res);
  212. uni.hideLoading();
  213. if (res) {
  214. if (res.status == 200) {
  215. if (
  216. gdStateValue == "4" &&
  217. associationTypeValue == "other"
  218. ) {
  219. uni.navigateTo({
  220. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  221. });
  222. }
  223. if (gdStateValue == "5") {
  224. uni.navigateTo({
  225. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  226. });
  227. }
  228. } else {
  229. uni.navigateTo({
  230. url: `../../pages/scanning_Result/scanning_Result?type=${
  231. associationTypeValue
  232. }&type1=${res.type}&id=${data.id}&status=600&msg=${
  233. res.msg
  234. }&isKs=${isKs}&model=${encodeURIComponent(
  235. JSON.stringify(res)
  236. )}&qrcode=${_this.currentCode}`,
  237. });
  238. }
  239. } else {
  240. uni.navigateTo({
  241. url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${_this.currentCode}`,
  242. });
  243. }
  244. });
  245. }