checkPage.vue 15 KB

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