photoRetention.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. 您需要上传图片留存,请拍摄照片上传!
  6. </view>
  7. </view>
  8. <view class="Scanning_cont">
  9. <scroll-view scroll-y class="scrollContent">
  10. <view class="content">
  11. <view class="dept">
  12. {{workOrder.startDept ? workOrder.startDept.dept : ''}}<text class="newicon newicon-arrow-right-full"></text>{{workOrder.endDeptNames || ''}}
  13. </view>
  14. <view class="column">
  15. <view class="name">工单单号:</view>
  16. <view class="value">{{workOrder.gdcode}}</view>
  17. </view>
  18. <view class="column">
  19. <view class="name">任务类型:</view>
  20. <view class="value">{{workOrder.taskType ? workOrder.taskType.taskName : ''}}</view>
  21. </view>
  22. <view class="column">
  23. <view class="name">签到科室:</view>
  24. <view class="value">{{queryObj.accountDeptName}}</view>
  25. </view>
  26. <view class="column" v-if="queryObj.accountName">
  27. <view class="name">交接人:</view>
  28. <view class="value">{{queryObj.accountName}}</view>
  29. </view>
  30. <template v-if="config.drugsModel === 1">
  31. <view class="column">
  32. <view class="name">药品数:</view>
  33. <view class="value">{{drugsBagList.length ? drugsBagList[0].drugsCount : ''}}</view>
  34. </view>
  35. <view class="column">
  36. <view class="name">药品单号:</view>
  37. <view class="value">{{drugsBagList.length ? drugsBagList[0].batchNo : ''}}</view>
  38. </view>
  39. </template>
  40. <template v-if="config.drugsModel === 2">
  41. <view class="column">
  42. <view class="name">药单数:</view>
  43. <view class="value">{{drugsBagList.length}}</view>
  44. </view>
  45. </template>
  46. <view class="column top">
  47. <view class="name">留存照片:</view>
  48. <view class="value flex1">
  49. <uni-file-picker ref="handlerImgRef" v-model="imgList" limit="1" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
  50. <text class="imgTips">(支持JPG/PNG格式图片,单张大小10M以内)</text>
  51. </view>
  52. </view>
  53. </view>
  54. </scroll-view>
  55. </view>
  56. <view class="foot_btn_spe">
  57. <view class="column">
  58. <view class="btn" @click="goBack()">返回</view>
  59. <view class="btn" @click="completeOrder()">提交</view>
  60. </view>
  61. </view>
  62. </view>
  63. </template>
  64. <script>
  65. import { uploadFile } from '@/tools/uploadFile.js'
  66. import {
  67. get,
  68. post,
  69. SM,
  70. webHandle
  71. } from "@/http/http.js";
  72. export default {
  73. data() {
  74. return {
  75. imgList: [],//图片列表
  76. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  77. queryObj: {}, //路由传递过来的数据
  78. drugsBagList: [], //药包列表
  79. drugsList: [], //药品列表
  80. workOrder: {}, //工单信息
  81. config: {}, //配置
  82. };
  83. },
  84. methods: {
  85. // 返回
  86. goBack(){
  87. uni.navigateBack();
  88. },
  89. // 工单完成
  90. completeOrder(){
  91. uni.showLoading({
  92. title: "加载中",
  93. mask: true,
  94. });
  95. if(this.imgList.length){
  96. // 有图片
  97. this.$refs.handlerImgRef.upload();
  98. }else{
  99. // 没有图片
  100. let handlerOrder$ = this.handlerOrder();
  101. let requestList = [handlerOrder$];
  102. Promise.all(requestList).then(resList => {
  103. uni.hideLoading();
  104. console.log(resList);
  105. if(resList[0].state == 200){
  106. uni.showToast({
  107. icon: "none",
  108. title: this.workOrder.gdState.value == 4 ? "交接成功,请尽快送达科室!" : (this.workOrder.gdState.value == 5 ? "交接成功,完成配送!" : ""),
  109. duration: 60000,
  110. mask: true,
  111. complete(){
  112. setTimeout(() => {
  113. uni.hideToast();
  114. uni.redirectTo({
  115. url: `/pages/receiptpage/receiptpage`,
  116. });
  117. }, 2000)
  118. }
  119. });
  120. }else{
  121. uni.showToast({
  122. icon: 'none',
  123. title: resList[0].msg || '请求数据失败!'
  124. });
  125. }
  126. })
  127. }
  128. },
  129. // 工单完成接口
  130. handlerOrder(){
  131. let postData = {
  132. "type": this.queryObj.drugsBagType,
  133. "orderId": this.workOrder.id,
  134. "handover": this.queryObj.accountId ? +this.queryObj.accountId : undefined,
  135. };
  136. return post('/transflow/checkComplete', postData);
  137. },
  138. // 处理图片
  139. handlerOrderImg(imgObj){
  140. return uploadFile(imgObj, this.workOrder.gdState.value == 4 ? 'drugsBagStartCheck' : 'drugsBagEndCheck', this.workOrder.id)
  141. },
  142. // 上传报修图片成功
  143. handlerImgSuccess(e){
  144. this.imgList.forEach(v => {
  145. v.url = v.path;
  146. })
  147. console.log(this.imgList);
  148. let handlerOrder$ = this.handlerOrder();
  149. let requestList = [handlerOrder$];
  150. this.imgList.forEach(v => {
  151. let handlerOrderImg$ = this.handlerOrderImg(v);
  152. requestList.push(handlerOrderImg$);
  153. })
  154. Promise.all(requestList).then(resList => {
  155. uni.hideLoading();
  156. console.log(resList);
  157. if(resList[0].state == 200){
  158. uni.showToast({
  159. icon: "none",
  160. title: this.workOrder.gdState.value == 4 ? "交接成功,请尽快送达科室!" : (this.workOrder.gdState.value == 5 ? "交接成功,完成配送!" : ""),
  161. duration: 60000,
  162. mask: true,
  163. complete(){
  164. setTimeout(() => {
  165. uni.hideToast();
  166. uni.redirectTo({
  167. url: `/pages/receiptpage/receiptpage`,
  168. });
  169. }, 2000)
  170. }
  171. });
  172. }else{
  173. uni.showToast({
  174. icon: 'none',
  175. title: resList[0].msg || '请求数据失败!'
  176. });
  177. }
  178. })
  179. },
  180. // 上传报修图片失败
  181. handlerImgFail(e){
  182. this.imgList.forEach(v => {
  183. v.url = v.path;
  184. })
  185. console.log(this.imgList);
  186. },
  187. // 选择上传图片
  188. handlerImgSelect(e){
  189. this.imgList = this.imgList.concat(e.tempFiles);
  190. console.log(this.imgList);
  191. },
  192. // 删除上传图片
  193. handlerImgDelete(e){
  194. this.imgList = this.imgList.filter(v => e.tempFile.uuid != v.uuid);
  195. console.log(this.imgList);
  196. },
  197. // 初始化
  198. init(){
  199. uni.showLoading({
  200. title: "加载中",
  201. mask: true,
  202. });
  203. let info$ = post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId});
  204. let config$ = post(`/simple/data/fetchDataList/taskTypeConfig`, {
  205. "idx": 0,
  206. "sum": 1,
  207. "taskTypeConfig": {
  208. "taskTypeDTO": {
  209. "hosId": {
  210. "id": this.hosId
  211. },
  212. "ordinaryField": {
  213. "key": "ordinary_field",
  214. "value": this.queryObj.drugsBagType
  215. }
  216. }
  217. }
  218. });
  219. Promise.all([info$, config$]).then(result => {
  220. uni.hideLoading();
  221. let [info, config] = result || [];
  222. if(info.state == 200){
  223. if(info.data){
  224. this.drugsBagList = info.data.drugsBagList || [];
  225. if(Array.isArray(info.data.workOrder.endDepts)){
  226. info.data.workOrder.endDeptNames = info.data.workOrder.endDepts.map(v => v.dept).join();
  227. }
  228. this.workOrder = info.data.workOrder || {};
  229. }
  230. }else{
  231. uni.showToast({
  232. icon: "none",
  233. title: info.msg || "接口获取数据失败!",
  234. });
  235. }
  236. if(config.status == 200){
  237. let list = config.list || [];
  238. this.config = list.length ? list[0] : {};
  239. }else{
  240. uni.showToast({
  241. icon: "none",
  242. title: config.msg || "接口获取数据失败!",
  243. });
  244. }
  245. })
  246. },
  247. },
  248. onLoad(options) {
  249. console.log(options, "options");
  250. this.queryObj = options;
  251. this.init();
  252. // #ifdef APP-PLUS
  253. webHandle("no", "app");
  254. // #endif
  255. // #ifdef H5
  256. webHandle("no", "wx");
  257. // #endif
  258. },
  259. };
  260. </script>
  261. <style lang="less" scoped>
  262. .Scanning_Result {
  263. background: #FAFBFD;
  264. padding: 0 24rpx;
  265. display: flex;
  266. flex-direction: column;
  267. height: 100vh;
  268. .Scanning_top {
  269. margin: 32rpx auto;
  270. .Scanning_top_icon {
  271. font-size: 28rpx;
  272. font-weight: bold;
  273. }
  274. }
  275. .Scanning_cont {
  276. flex: 1;
  277. min-height: 0;
  278. display: flex;
  279. flex-direction: column;
  280. .scrollContent{
  281. flex: 1;
  282. min-height: 0;
  283. }
  284. .content{
  285. border: 1rpx solid #C5C5C5;
  286. background: #FFFFFF;
  287. padding: 32rpx;
  288. .dept{
  289. font-size: 30rpx;
  290. font-weight: bold;
  291. .newicon{
  292. margin: 0 32rpx;
  293. }
  294. }
  295. .column{
  296. display: flex;
  297. align-items: center;
  298. font-size: 30rpx;
  299. margin-top: 32rpx;
  300. &.top{
  301. align-items: flex-start;
  302. }
  303. .name{
  304. font-weight: bold;
  305. word-break: break-all;
  306. flex-shrink: 0;
  307. }
  308. .value{
  309. word-break: break-all;
  310. &.flex1{
  311. flex: 1;
  312. flex-shrink: 0;
  313. }
  314. .imgTips{
  315. font-size: 22rpx;
  316. color: #8E8E8E;
  317. }
  318. }
  319. }
  320. }
  321. }
  322. .foot_btn_spe {
  323. margin: 24rpx 0;
  324. display: flex;
  325. flex-direction: column;
  326. align-items: center;
  327. gap: 24rpx;
  328. font-weight: bold;
  329. .column{
  330. width: 100%;
  331. height: 78rpx;
  332. display: flex;
  333. align-items: center;
  334. justify-content: space-between;
  335. gap: 24rpx;
  336. .btn {
  337. height: 100%;
  338. flex: 1;
  339. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  340. color: #fff;
  341. border-radius: 4rpx;
  342. font-size: 30rpx;
  343. display: flex;
  344. justify-content: center;
  345. align-items: center;
  346. }
  347. }
  348. }
  349. }
  350. </style>