photoRetention.vue 11 KB

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