123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- import {
- get,
- post
- } from "./../http/http.js";
- export const pathUrl = uni.getStorageSync('path');
- export function photographTool(data, deptObj) {
- console.log(data, deptObj, 1111);
- let id_seimin;
- let asTypeValue_seimin;
- let gdStateValue_seimin;
- if (data.status != 200 && data.status !== undefined) {
- id_seimin = data.id;
- asTypeValue_seimin = data.type;
- gdStateValue_seimin = JSON.parse(data.model).gdstate2; //type改成gdstate
- } else {
- id_seimin = data.id;
- asTypeValue_seimin = data.taskType.associationType.value;
- gdStateValue_seimin = data.gdState.value;
- }
- //#ifdef H5
- uni.chooseImage({
- count: 1,
- sourceType: ['camera'],
- success: (chooseImageRes) => {
- console.log(chooseImageRes, pathUrl)
- const tempFilePaths = chooseImageRes.tempFilePaths;
- const tempFiles = chooseImageRes.tempFiles;
- let tp = tempFilePaths[0];
- uni.showLoading({
- mask: true,
- title: '上传中'
- });
- post('/workerOrder/findPatientCodeByWorkOrderId', {
- WorkOrderId: id_seimin
- }).then(result => {
- console.log(result)
- if (result.state == 200) {
- uni.getImageInfo({
- src: tp,
- success(res) {
- console.log('压缩前', res)
- let canvasWidth = res.width //图片原始长宽
- let canvasHeight = res.height
- let img = new Image()
- img.src = res.path
- let canvas = document.createElement('canvas');
- let ctx = canvas.getContext('2d')
- canvas.width = canvasWidth
- canvas.height = canvasHeight
- ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
- canvas.toBlob(function (fileSrc) {
- tp = window.URL.createObjectURL(fileSrc)
- console.log('压缩后', tp);
- uni.uploadFile({
- url: pathUrl + '/common/common/uploadAttachment/inspectAndPatient/' + id_seimin + '/' + result.recordId,
- filePath: tp,
- name: 'file',
- formData: {
- 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
- 0].path.split(
- /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
- },
- success: (uploadFileRes) => {
- console.log(uploadFileRes, 10086, asTypeValue_seimin);
- if (asTypeValue_seimin === "patientTransport") {
- // 转运,扫描患者腕带码
- if (gdStateValue_seimin == 4) { //转运待到达
- post('/workerOrder/handleTrans', {
- "code": result.patientBarCode,
- "ids": [id_seimin]
- }).then(result1 => {
- console.log('result1=====',result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
- }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
- }&patient=${result1.patient}&patientCode=${result1.patientCode
- }&deptName=${result1.deptName}&bedNum=${result1.bedNum
- }&status=${result1.status}&msg=${result1.msg
- }&model=${encodeURIComponent(JSON.stringify(result1))}`,
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- } else if (gdStateValue_seimin == 5) { //转运待送达
- post('/workerOrder/handleTrans', {
- "code": result.patientBarCode,
- "ids": [id_seimin],
- "type": deptObj.infoType,
- "deptCode": deptObj.DEPTCode,
- }).then(result1 => {
- console.log(result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- 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))}`
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- }
- } else if (asTypeValue_seimin === "inspect") {
- // 陪检,扫描患者腕带码
- if (gdStateValue_seimin == 4) { //陪检待到达
- console.log('怎么了')
- post('/workerOrder/handleIns', {
- "code": result.patientBarCode,
- "ids": [id_seimin]
- }).then(result1 => {
- console.log(result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
- }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
- }&patient=${result1.patient}&patientCode=${result1.patientCode
- }&deptName=${result1.deptName}&bedNum=${result1.bedNum
- }&status=${result1.status}&msg=${result1.msg
- }&model=${encodeURIComponent(JSON.stringify(result1))}`,
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- } else if (gdStateValue_seimin == 5 || gdStateValue_seimin == 8) { //陪检待送达,执行中
- post('/workerOrder/handleIns', {
- "code": result.patientBarCode,
- "ids": [id_seimin],
- "type": deptObj.infoType,
- "deptCode": deptObj.DEPTCode,
- }).then(result1 => {
- console.log(result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- 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))}`
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- }
- }
- },
- fail: err => {
- console.error(err);
- uni.hideLoading();
- uni.showToast({
- icon: 'none',
- title: '上传失败',
- duration: 2000
- });
- }
- });
- }, 'image/jpeg', 0.3)
- },
- fail: function () {
- uni.hideLoading();
- uni.showToast({
- icon: 'none',
- title: '上传失败',
- duration: 2000
- });
- }
- })
- } else {
- uni.hideLoading();
- uni.showToast({
- icon: "none",
- title: result.msg || "接口获取数据失败!",
- });
- }
- })
- }
- });
- //#endif
- // #ifdef APP-PLUS
- uni.chooseImage({
- count: 1,
- sourceType: ['camera'],
- sizeType: ['compressed'],
- success: (chooseImageRes) => {
- console.log(chooseImageRes, pathUrl)
- const tempFilePaths = chooseImageRes.tempFilePaths;
- const tempFiles = chooseImageRes.tempFiles;
- let tp = tempFilePaths[0];
- uni.showLoading({
- mask: true,
- title: '上传中'
- });
- post('/workerOrder/findPatientCodeByWorkOrderId', {
- WorkOrderId: id_seimin
- }).then(result => {
- console.log(result)
- if (result.state == 200) {
- uni.uploadFile({
- url: pathUrl + '/common/common/uploadAttachment/inspectAndPatient/' + id_seimin + '/' + result.recordId,
- filePath: tp,
- name: 'file',
- formData: {
- 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[0].path
- .split(
- /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
- },
- success: (uploadFileRes) => {
- console.log(uploadFileRes, 10086, asTypeValue_seimin);
- if (asTypeValue_seimin === "patientTransport") {
- // 转运,扫描患者腕带码
- if (gdStateValue_seimin == 4) { //转运待到达
- post('/workerOrder/handleTrans', {
- "code": result.patientBarCode,
- "ids": [id_seimin]
- }).then(result1 => {
- console.log(result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
- }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
- }&patient=${result1.patient}&patientCode=${result1.patientCode
- }&deptName=${result1.deptName}&bedNum=${result1.bedNum
- }&status=${result1.status}&msg=${result1.msg
- }&model=${encodeURIComponent(JSON.stringify(result1))}`,
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- } else if (gdStateValue_seimin == 5) { //转运待送达
- post('/workerOrder/handleTrans', {
- "code": result.patientBarCode,
- "ids": [id_seimin],
- "type": deptObj.infoType,
- "deptCode": deptObj.DEPTCode,
- }).then(result1 => {
- console.log(result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- 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))}`
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- }
- } else if (asTypeValue_seimin === "inspect") {
- // 陪检,扫描患者腕带码
- if (gdStateValue_seimin == 4) { //陪检待到达
- console.log('怎么了')
- post('/workerOrder/handleIns', {
- "code": result.patientBarCode,
- "ids": [id_seimin]
- }).then(result1 => {
- console.log(result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- url: `../scanning_Result/scanning_Result?type=${asTypeValue_seimin
- }&type1=${result1.type}&id=${id_seimin}&deptCode=${result.patientCode
- }&patient=${result1.patient}&patientCode=${result1.patientCode
- }&deptName=${result1.deptName}&bedNum=${result1.bedNum
- }&status=${result1.status}&msg=${result1.msg
- }&model=${encodeURIComponent(JSON.stringify(result1))}`,
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- } else if (gdStateValue_seimin == 5 || gdStateValue_seimin == 8) { //陪检待送达,执行中
- post('/workerOrder/handleIns', {
- "code": result.patientBarCode,
- "ids": [id_seimin],
- "type": deptObj.infoType,
- "deptCode": deptObj.DEPTCode,
- }).then(result1 => {
- console.log(result1);
- uni.hideLoading();
- if (result1.status == 200) {
- uni.showToast({
- title: '上传成功',
- duration: 2000
- });
- // 小扫描
- uni.navigateTo({
- 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))}`
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result1.msg || "接口获取数据失败!",
- });
- }
- })
- }
- }
- },
- fail: err => {
- console.error(err);
- uni.hideLoading();
- uni.showToast({
- icon: 'none',
- title: '上传失败',
- duration: 2000
- });
- }
- });
- } else {
- uni.hideLoading();
- uni.showToast({
- icon: "none",
- title: result.msg || "接口获取数据失败!",
- });
- }
- })
- }
- });
- // #endif
- }
|