checkPage.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. {{workOrder.startDept ? workOrder.startDept.dept : ''}}<text class="newicon newicon-arrow-right-full"></text>{{workOrder.endDeptNames || ''}}
  6. </view>
  7. </view>
  8. <view class="Scanning_cont">
  9. <view class="column head">
  10. <view class="value1">单号<text class="red">{{drugsBagList.length}}</text></view>
  11. <view class="value2">种类数</view>
  12. <view class="value3">总数</view>
  13. </view>
  14. <scroll-view scroll-y class="scrollContent">
  15. <view class="column" v-for="item in drugsBagList" :key="item.id" @click="toDetail(item.id)">
  16. <view class="value1">{{item.batchNo}}</view>
  17. <view class="value2">{{item.drugsTypeCount}}</view>
  18. <view class="value3">{{item.drugsCount}}</view>
  19. </view>
  20. </scroll-view>
  21. </view>
  22. <view class="foot_btn_spe">
  23. <view class="column">
  24. <view class="btn" @click="scanCode()">扫一扫交接</view>
  25. <view class="btn" @click="fillInManually(config.drugsStartManual.value)" v-if="workOrder.gdState && workOrder.gdState.value == 4 && config.drugsStartManual">{{config.drugsStartManual.name}}</view>
  26. <view class="btn" @click="fillInManually(config.drugsStartManual.value)" v-if="workOrder.gdState && workOrder.gdState.value == 5 && config.drugsEndManual">{{config.drugsEndManual.name}}</view>
  27. </view>
  28. </view>
  29. <!-- 填写交接人工号弹窗 -->
  30. <selectAccount @click.stop.native v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  31. @cancel="hosCancel">
  32. </selectAccount>
  33. </view>
  34. </template>
  35. <script>
  36. import {
  37. get,
  38. post,
  39. SM,
  40. webHandle
  41. } from "@/http/http.js";
  42. export default {
  43. data() {
  44. return {
  45. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  46. drugsBagList: [], //药包列表
  47. queryObj: {}, //路由传递过来的数据
  48. workOrder: {}, //工单信息
  49. config: {}, //配置
  50. SMFlag: true, //控制扫码
  51. // 填写交接人工号弹窗model
  52. hosModels: {
  53. disjunctor: false,
  54. },
  55. };
  56. },
  57. onShow() {
  58. this.SMFlag = true;
  59. },
  60. methods: {
  61. // 手动填写
  62. fillInManually(value){
  63. if(value == 1){
  64. // 填写工号
  65. this.showSelectAccount();
  66. }
  67. },
  68. // 填写交接人工号-确认
  69. hosOk(data) {
  70. console.log(data);
  71. const {
  72. accountName,
  73. account,
  74. accountId
  75. } = data;
  76. if (!accountName && !account) {
  77. //没有填写交接人
  78. uni.showModal({
  79. title: "提示",
  80. content: "请填写交接人工号!",
  81. showCancel: false,
  82. success: function(res) {
  83. if (res.confirm) {
  84. console.log("用户点击确定");
  85. } else if (res.cancel) {
  86. console.log("用户点击取消");
  87. }
  88. },
  89. });
  90. return;
  91. } else if ((!accountName && account) || (accountName && !account)) {
  92. //没有填写交接人
  93. uni.showModal({
  94. title: "提示",
  95. content: "请填写正确的交接人工号!",
  96. showCancel: false,
  97. success: function(res) {
  98. if (res.confirm) {
  99. console.log("用户点击确定");
  100. } else if (res.cancel) {
  101. console.log("用户点击取消");
  102. }
  103. },
  104. });
  105. return;
  106. }
  107. this.hosModels.disjunctor = false;
  108. this.validateAccount(data);
  109. },
  110. // 填写交接人工号-取消
  111. hosCancel() {
  112. this.hosModels.disjunctor = false;
  113. this.flag = true;
  114. },
  115. // 填写交接人工号弹窗
  116. showSelectAccount() {
  117. this.hosModels = {
  118. disjunctor: true,
  119. };
  120. },
  121. // 手动填写工号校验
  122. validateAccount(accountObj){
  123. const {
  124. accountName,
  125. account,
  126. accountId
  127. } = accountObj;
  128. uni.showLoading({
  129. title: "加载中",
  130. mask: true,
  131. });
  132. let postData = {
  133. extraType: 'inputAccountValid',
  134. type: this.queryObj.drugsBagType,
  135. orderStateValue: this.workOrder.gdState.value,
  136. userId: accountId,
  137. orderId: this.workOrder.id,
  138. }
  139. post("/transflow/extra", postData)
  140. .then((res) => {
  141. uni.hideLoading();
  142. if(res.state == 200){
  143. if(res.data){
  144. if (res.data.codeBean) {
  145. if(res.data.codeBean.valid){
  146. this.pageNavigateByConfig(this.config, this.workOrder, this.queryObj, { id: accountId, name: accountName }, res.data.codeBean.departmentDTO);
  147. }else{
  148. uni.showToast({
  149. icon: "none",
  150. title: res.data.codeBean.msg || "接口获取数据失败!",
  151. });
  152. }
  153. } else {
  154. uni.showToast({
  155. icon: "none",
  156. title: "接口获取数据失败!",
  157. });
  158. }
  159. }else{
  160. uni.showToast({
  161. icon: "none",
  162. title: "接口获取数据失败!",
  163. });
  164. }
  165. }else{
  166. uni.showToast({
  167. icon: "none",
  168. title: res.msg || "接口获取数据失败!",
  169. });
  170. }
  171. });
  172. },
  173. // 工单完成
  174. completeOrder(workOrder, queryObj, accountObj){
  175. uni.showLoading({
  176. title: "加载中",
  177. mask: true,
  178. });
  179. let postData = {
  180. "type": queryObj.drugsBagType,
  181. "orderId": workOrder.id,
  182. "handover": accountObj ? accountObj.id : undefined,
  183. };
  184. post('/transflow/checkComplete', postData).then(res => {
  185. uni.hideLoading();
  186. if(res.state == 200){
  187. uni.showToast({
  188. icon: "none",
  189. title: workOrder.gdState.value == 4 ? "交接成功,请尽快送达科室!" : (workOrder.gdState.value == 5 ? "交接成功,完成配送!" : ""),
  190. duration: 60000,
  191. mask: true,
  192. complete(){
  193. setTimeout(() => {
  194. uni.hideToast();
  195. uni.redirectTo({
  196. url: `/pages/receiptpage/receiptpage`,
  197. });
  198. }, 2000)
  199. }
  200. });
  201. }else{
  202. uni.showToast({
  203. icon: "none",
  204. title: res.msg || "接口获取数据失败!",
  205. });
  206. }
  207. })
  208. },
  209. // 根据配置跳转页面
  210. pageNavigateByConfig(config, workOrder, queryObj, accountObj, departmentDTO){
  211. console.log(accountObj, departmentDTO);
  212. let drugsBagType = queryObj.drugsBagType;
  213. let orderId = workOrder.id;
  214. if(workOrder.gdState.value == 4){
  215. // 待到达
  216. if(config.drugsStartPhoto === 1){
  217. // 起点科室支持拍照留存
  218. uni.navigateTo({
  219. url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}&accountId=${accountObj ? accountObj.id : ''}&accountName=${accountObj ? accountObj.name : ''}&accountDeptName=${departmentDTO ? departmentDTO.dept : ''}`,
  220. });
  221. }else{
  222. // 起点科室不支持拍照留存
  223. this.completeOrder(workOrder, queryObj, accountObj);
  224. }
  225. }else if(workOrder.gdState.value == 5){
  226. // 待送达
  227. if(config.drugsEndPhoto === 1){
  228. // 起点科室支持拍照留存
  229. uni.navigateTo({
  230. url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}&accountId=${accountObj ? accountObj.id : ''}&accountName=${accountObj ? accountObj.name : ''}&accountDeptName=${departmentDTO ? departmentDTO.dept : ''}`,
  231. });
  232. }else{
  233. // 起点科室不支持拍照留存
  234. this.completeOrder(workOrder, queryObj, accountObj);
  235. }
  236. }
  237. },
  238. // 扫一扫交接
  239. scanCode(){
  240. if (!this.SMFlag) {
  241. return;
  242. }
  243. this.SMFlag = false;
  244. SM().then((content) => {
  245. uni.showLoading({
  246. title: "加载中",
  247. mask: true,
  248. });
  249. let postData = {
  250. type: this.queryObj.drugsBagType,
  251. orderStateValue: this.workOrder.gdState.value,
  252. code: content,
  253. orderId: this.workOrder.id,
  254. }
  255. post("/transflow/bigScan", postData)
  256. .then((res) => {
  257. this.SMFlag = true;
  258. uni.hideLoading();
  259. if (res.codeBean) {
  260. if(res.codeBean.valid){
  261. this.pageNavigateByConfig(this.config, this.workOrder, this.queryObj, res.codeBean.userDTO, res.codeBean.departmentDTO);
  262. }else{
  263. uni.showToast({
  264. icon: "none",
  265. title: res.codeBean.msg || "接口获取数据失败!",
  266. });
  267. }
  268. } else {
  269. uni.showToast({
  270. icon: "none",
  271. title: "接口获取数据失败!",
  272. });
  273. }
  274. });
  275. }).catch(err => {
  276. this.SMFlag = true;
  277. });
  278. },
  279. // 详情
  280. toDetail(drugsBagId){
  281. uni.navigateTo({
  282. url: `/pages/newDrug/detail?drugsBagType=${this.queryObj.drugsBagType}&drugsBagId=${drugsBagId}`,
  283. });
  284. },
  285. // 初始化
  286. init(){
  287. uni.showLoading({
  288. title: "加载中",
  289. mask: true,
  290. });
  291. let info$ = post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId, checkComplete: '1'});
  292. let config$ = post(`/simple/data/fetchDataList/taskTypeConfig`, {
  293. "idx": 0,
  294. "sum": 1,
  295. "taskTypeConfig": {
  296. "taskTypeDTO": {
  297. "hosId": {
  298. "id": this.hosId
  299. },
  300. "ordinaryField": {
  301. "key": "ordinary_field",
  302. "value": this.queryObj.drugsBagType
  303. }
  304. }
  305. }
  306. });
  307. Promise.all([info$, config$]).then(result => {
  308. uni.hideLoading();
  309. let [info, config] = result || [];
  310. if(info.state == 200){
  311. if(info.data){
  312. this.drugsBagList = info.data.drugsBagList || [];
  313. if(Array.isArray(info.data.workOrder.endDepts)){
  314. info.data.workOrder.endDeptNames = info.data.workOrder.endDepts.map(v => v.dept).join();
  315. }
  316. this.workOrder = info.data.workOrder || {};
  317. }
  318. }else{
  319. uni.showToast({
  320. icon: "none",
  321. title: info.msg || "接口获取数据失败!",
  322. });
  323. }
  324. if(config.status == 200){
  325. let list = config.list || [];
  326. this.config = list.length ? list[0] : {};
  327. }else{
  328. uni.showToast({
  329. icon: "none",
  330. title: config.msg || "接口获取数据失败!",
  331. });
  332. }
  333. })
  334. },
  335. },
  336. onLoad(options) {
  337. console.log(options, "options");
  338. this.queryObj = options;
  339. this.init();
  340. // #ifdef APP-PLUS
  341. webHandle("no", "app");
  342. // #endif
  343. // #ifdef H5
  344. webHandle("no", "wx");
  345. // #endif
  346. },
  347. };
  348. </script>
  349. <style lang="less" scoped>
  350. .Scanning_Result {
  351. background: #FAFBFD;
  352. padding: 0 24rpx;
  353. display: flex;
  354. flex-direction: column;
  355. height: 100vh;
  356. .Scanning_top {
  357. margin: 24rpx auto;
  358. .Scanning_top_icon {
  359. font-size: 30rpx;
  360. font-weight: bold;
  361. .newicon{
  362. margin: 0 32rpx;
  363. }
  364. }
  365. }
  366. .Scanning_cont {
  367. flex: 1;
  368. min-height: 0;
  369. display: flex;
  370. flex-direction: column;
  371. .scrollContent{
  372. flex: 1;
  373. min-height: 0;
  374. }
  375. .column{
  376. display: flex;
  377. justify-content: center;
  378. align-items: center;
  379. font-size: 28rpx;
  380. padding: 32rpx 24rpx;
  381. color: #565656;
  382. border-bottom: 1rpx solid #D9D9D9;
  383. gap: 8rpx;
  384. &.head{
  385. font-size: 30rpx;
  386. color: #000000;
  387. border: 1rpx solid #D9D9D9;
  388. box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
  389. background: #FBFCFE;
  390. }
  391. .value1{
  392. flex: 2;
  393. text-align: left;
  394. word-break: break-all;
  395. flex-shrink: 0;
  396. }
  397. .value2,.value3{
  398. flex: 1;
  399. text-align: center;
  400. word-break: break-all;
  401. flex-shrink: 0;
  402. }
  403. }
  404. }
  405. .foot_btn_spe {
  406. margin: 24rpx 0;
  407. display: flex;
  408. flex-direction: column;
  409. align-items: center;
  410. gap: 24rpx;
  411. font-weight: bold;
  412. .column{
  413. width: 100%;
  414. height: 78rpx;
  415. display: flex;
  416. align-items: center;
  417. justify-content: space-between;
  418. gap: 24rpx;
  419. .btn {
  420. height: 100%;
  421. flex: 1;
  422. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  423. color: #fff;
  424. border-radius: 4rpx;
  425. font-size: 30rpx;
  426. display: flex;
  427. justify-content: center;
  428. align-items: center;
  429. }
  430. }
  431. }
  432. }
  433. </style>