scan.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637
  1. <template>
  2. <view class="content">
  3. <view class="info">
  4. <view class="header">
  5. <view class="center" :class="list.length < infoData.specimenNum?'par-top1':'par-top2'">
  6. <view class="sign red">{{list.length}}/{{specimenNum}}</view>
  7. </view>
  8. <view class="tip" v-if="list.length < infoData.specimenNum">请继续扫描标本!</view>
  9. <view class="title">申请单共有<span class="red">{{totalNum}}</span>份,已固定<span class="red">{{fixationNum}}</span>份还需固定<span class="red">{{specimenNum}}</span>份</view>
  10. </view>
  11. <view>
  12. <view class="list" v-for="(item, index) in list" :key="index">
  13. <view class="df-list">
  14. <view class="list-title">标本名称:</view>
  15. <view class="no-center">{{item.specimenName}}</view>
  16. </view>
  17. <view class="df-list">
  18. <view class="list-title">条码号:</view>
  19. <view class="no-center">{{item.specimenCode}}</view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="list list-top" v-if="infoData">
  24. <view class="df-list">
  25. <view class="list-title">患者姓名:</view>
  26. <view class="no-center">{{infoData.patientName}}({{infoData.patientDTO.bedNum}}床)</view>
  27. </view>
  28. <view class="df-list">
  29. <view class="list-title">住院号:</view>
  30. <view class="no-center">{{infoData.patientDTO.patientCode}}</view>
  31. </view>
  32. <view class="df-list">
  33. <view class="list-title">科室名称:</view>
  34. <view class="no-center">{{infoData.patientDTO.department.dept}}</view>
  35. </view>
  36. <view class="df-list">
  37. <view class="list-title">申请单号:</view>
  38. <view class="no-center">{{infoData.applyCode}}</view>
  39. </view>
  40. </view>
  41. </view>
  42. <!-- <view class="btn-view" v-if="list.length < infoData.specimenNum">
  43. <button class="back-btn" @click="back">返回</button>
  44. </view> -->
  45. <view class="btn-view df-sb">
  46. <button class="back-btn2" @click="back">返回</button>
  47. <button class="back-btn3" @click="fixation">标本固定存放</button>
  48. </view>
  49. <!-- PDA扫描 -->
  50. <scanner></scanner>
  51. <!-- 标本固定 -->
  52. <uni-popup ref="popup" type="dialog" background-color="#fff" :mask-click="false">
  53. <view class="pop-content">
  54. <view class="pop-title">提示</view>
  55. <view class="pop-tip">您标本已扫描完成,请填写固定信息。</view>
  56. <uni-forms ref="baseForm" :model="form" label-width="110px">
  57. <uni-forms-item label="工号" required>
  58. <uni-easyinput v-model="form.code" :clearable="false" @input="inputChange" primaryColor='#49b856' placeholder="请输入工号" />
  59. </uni-forms-item>
  60. <uni-forms-item label="姓名" required>
  61. <view class="text-left">{{form.name}}</view>
  62. </uni-forms-item>
  63. <uni-forms-item label="固体液类型" required class="select">
  64. <uni-data-picker placeholder="请选择固体液类型" :clear-icon="false" :localdata="fixedData" v-model="form.fixative"
  65. :map="{text:'name',value:'id'}">
  66. </uni-data-picker>
  67. </uni-forms-item>
  68. <uni-forms-item label="固定时间" required class="time">
  69. <uni-datetime-picker type="datetime" :clear-icon="false" placeholder="请选择固定时间" v-model="form.fixationTime"/>
  70. </uni-forms-item>
  71. </uni-forms>
  72. <view class="pou-btn">
  73. <view class="btn border-right" @click="fixationClose">取消</view>
  74. <view class="btn confirm" @click="dialogConfirm">固定标本</view>
  75. </view>
  76. </view>
  77. </uni-popup>
  78. </view>
  79. </template>
  80. <script>
  81. import {
  82. get,
  83. post
  84. } from "../../http/http.js";
  85. import scanner from "../../components/scanner/scanner.vue";
  86. export default {
  87. data(){
  88. return{
  89. infoData:null,
  90. list:[],
  91. SMFlag:true,
  92. fixationModal:false,
  93. fixedData:[],
  94. styles:{
  95. borderColor: '#49b856',
  96. },
  97. userInfo:uni.getStorageSync('userData').user,
  98. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  99. form:{
  100. name:'',
  101. code:'',
  102. fixationTime:'',
  103. fixative:'',
  104. handoverUserId:''
  105. },
  106. pathologyFormId:null,
  107. fixationNum:null,
  108. specimenNum:null,
  109. totalNum:null,
  110. }
  111. },
  112. components: {
  113. scanner
  114. },
  115. methods:{
  116. // 时间格式化
  117. yyTimeFilter(timestamp) {
  118. var date = new Date(timestamp); // 时间戳为毫秒级别
  119. var year = date.getFullYear();
  120. var month = date.getMonth() + 1;
  121. var day = date.getDate();
  122. var hours = date.getHours();
  123. var minutes = date.getMinutes();
  124. var seconds = date.getSeconds();
  125. // 格式化月份、日期、小时、分钟、秒
  126. month = month < 10 ? '0' + month : month;
  127. day = day < 10 ? '0' + day : day;
  128. hours = hours < 10 ? '0' + hours : hours;
  129. minutes = minutes < 10 ? '0' + minutes : minutes;
  130. seconds = seconds < 10 ? '0' + seconds : seconds;
  131. return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
  132. },
  133. inputChange(e){
  134. console.log(e)
  135. if(e.length < 3) {
  136. return
  137. }
  138. let query = {
  139. account: e
  140. };
  141. post('/data/isRepeat',query).then((data) => {
  142. if(data.status==200){
  143. this.form.name = data.userName;
  144. this.form.handoverUserId = data.userId
  145. }else{
  146. this.form.name = '';
  147. this.form.handoverUserId =null
  148. }
  149. });
  150. },
  151. back(){
  152. // this.padChange('86386627710976\n')
  153. this.cancelSpecimenModal()
  154. uni.setStorageSync('pathologyFormId', null)
  155. uni.navigateTo({
  156. url: `/pages/specimenPort/specimenPort?backType=detail`
  157. });
  158. },
  159. // 标本重置
  160. cancelSpecimenModal(){
  161. let ids = []
  162. for(let i of this.list){
  163. ids.push(i.id)
  164. }
  165. let data = {
  166. pathologySpecimenIds:ids.join(',')
  167. }
  168. post('/pathology/cancel', data).then((res) => {
  169. });
  170. },
  171. // 标本固定
  172. fixation(){
  173. this.form={
  174. name:'',
  175. code:'',
  176. fixationTime: Date.now() - 2*24*1000,
  177. fixative:this.fixedData[0].id,
  178. handoverUserId:''
  179. }
  180. // this.form.fixationTime = Date.now() - 2*24*1000
  181. this.$refs.popup.open()
  182. },
  183. // 获取固定液类型
  184. getFixation(){
  185. post('/common/common/getDictionary', {
  186. key: "fixing_liquid_type",
  187. type: "list"
  188. }).then((res) => {
  189. this.fixedData = res
  190. });
  191. },
  192. fixationClose(){
  193. this.$refs.popup.close()
  194. },
  195. // 确定固定标本
  196. dialogConfirm(){
  197. if(!this.form.code){
  198. uni.showToast({
  199. title: '工号不能为空',
  200. duration: 1000,
  201. icon:'none'
  202. });
  203. return
  204. }
  205. if(!this.form.name){
  206. uni.showToast({
  207. title: '姓名不能为空',
  208. duration: 1000,
  209. icon:'none'
  210. });
  211. return
  212. }
  213. if(!this.form.fixative){
  214. uni.showToast({
  215. title: '固体液类型不能为空',
  216. duration: 1000,
  217. icon:'none'
  218. });
  219. return
  220. }
  221. if(!this.form.fixationTime){
  222. uni.showToast({
  223. title: '固定时间不能为空',
  224. duration: 1000,
  225. icon:'none'
  226. });
  227. return
  228. }
  229. let time = null
  230. if(Number.isInteger(this.form.fixationTime) && this.form.fixationTime > 0){
  231. time = this.yyTimeFilter(this.form.fixationTime)
  232. }else{
  233. time = this.form.fixationTime
  234. }
  235. let str = this.list.map(i=>{
  236. return i.specimenCode
  237. })
  238. uni.showLoading({
  239. title: "加载中",
  240. mask: true,
  241. });
  242. let query={
  243. hosId:this.hosId,
  244. id:this.infoData.id,
  245. specimenFixingLiquid:{
  246. id:this.form.fixative
  247. },
  248. specimenCodes:str.join(','),
  249. handoverUserId:this.form.handoverUserId,
  250. fixationTime:time,
  251. specimenDeptId:this.userInfo.dept.id
  252. }
  253. post('/simple/data/addData/pathologyForm',query).then((res) => {
  254. uni.hideLoading();
  255. this.$refs.popup.close()
  256. uni.showToast({
  257. title: '固定成功',
  258. duration: 1000
  259. });
  260. setTimeout(_=>{
  261. this.back()
  262. },1000)
  263. });
  264. },
  265. // PDA扫描
  266. padChange(scannerCode){
  267. scannerCode = scannerCode.replace('\n','')
  268. if (!this.SMFlag) {
  269. return;
  270. }
  271. this.SMFlag = false;
  272. uni.showLoading({
  273. title: "加载中",
  274. mask: true,
  275. });
  276. this.pathologyFormId = uni.getStorageSync('pathologyFormId');
  277. let query={
  278. barcode:scannerCode,
  279. pathologyFormId:this.pathologyFormId,
  280. platform:"app"
  281. }
  282. if(!this.pathologyFormId){
  283. delete query.pathologyFormId
  284. }
  285. post("/pathology/scanCode", query).then((res) => {
  286. this.SMFlag = true
  287. uni.hideLoading();
  288. if(res.status==200){
  289. let data = res.data[0]
  290. let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
  291. uni.setStorageSync('pathologyFormId', data.id);
  292. if(!item.fixationTime && data.pathologyFormType==0){
  293. if(data.status.value==2 || data.status.value==3 ||
  294. data.status.value==4){
  295. uni.navigateTo({
  296. url: `/pages/specimenPort/scan?data=${JSON.stringify(data)}&type=${res.type}`
  297. });
  298. }else{
  299. uni.showToast({
  300. title: '查询到标本申请单信息',
  301. duration: 1000,
  302. icon:'none'
  303. });
  304. setTimeout(_=>{
  305. uni.navigateTo({
  306. url: `/pages/specimenPort/detail?detailId=${data.id}`
  307. });
  308. },800)
  309. }
  310. }else if(item.fixationTime && data.pathologyFormType==0){
  311. uni.showToast({
  312. title: '查询到标本申请单信息',
  313. duration: 1000,
  314. icon:'none'
  315. });
  316. setTimeout(_=>{
  317. uni.navigateTo({
  318. url: `/pages/specimenPort/detail?detailId=${data.id}`
  319. });
  320. },800)
  321. }else{
  322. uni.showToast({
  323. title: '该申请单类型不是病理检查申请单',
  324. duration: 1000,
  325. icon:'none'
  326. });
  327. }
  328. }else{
  329. uni.showModal({
  330. title: "提示",
  331. content: `${res.msg} \n 扫描内容:${scannerCode}`,
  332. confirmColor:'#49b856',
  333. success: (res) => {
  334. if (res.confirm) {
  335. console.log("用户点击确定");
  336. } else if (res.cancel) {
  337. console.log("用户点击取消");
  338. }
  339. },
  340. });
  341. }
  342. })
  343. },
  344. getSpecimenNum(){
  345. post(`/pathology/check/pathologyForm/${this.infoData.id}`, {
  346. operationType:'fixation'
  347. }).then(res=>{
  348. this.fixationNum = res.fixationNum
  349. this.specimenNum = res.specimenNum
  350. this.totalNum = res.totalNum
  351. })
  352. }
  353. },
  354. onBackPress(e) {
  355. // backbutton:物理按键返回
  356. if (e.from === 'backbutton') {
  357. this.back()
  358. return true
  359. }
  360. },
  361. onShow() {
  362. let that = this
  363. // #ifdef APP-PLUS
  364. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  365. uni.$on('scan', function(data) {
  366. that.padChange(data)
  367. })
  368. // #endif
  369. },
  370. onLoad(option){
  371. let data = JSON.parse(option.data)
  372. this.infoData = data
  373. this.getSpecimenNum()
  374. this.type = option.type
  375. this.list = data.pathologySpecimenDTOList?data.pathologySpecimenDTOList:[]
  376. // if(this.list.length == this.infoData.specimenNum){
  377. // uni.showToast({
  378. // title: '您标本已扫描完成,请填写固定信息',
  379. // duration: 2000,
  380. // icon:'none'
  381. // });
  382. // }
  383. this.getFixation()
  384. }
  385. }
  386. </script>
  387. <style scoped>
  388. >>> .uni-forms-item__content{
  389. display: flex;
  390. align-items: center;
  391. }
  392. >>>.uni-easyinput__content-input,
  393. >>>.uni-input-wrapper,
  394. >>>.uni-input-placeholder{
  395. display: flex;
  396. align-items: center;
  397. line-height: 1;
  398. height: 35px;
  399. }
  400. .select >>>.dialog-close{
  401. /* display: flex !important; */
  402. }
  403. .select >>>.dialog-close-plus{
  404. }
  405. .select >>>.dialog-close-rotate{
  406. top: 20.8px;
  407. left: 14px;
  408. }
  409. .time >>>.dialog-close-rotate{
  410. top: 24px;
  411. left: 24.5px;
  412. }
  413. </style>
  414. <style lang="less" scoped>
  415. page {
  416. background: #F8F8F8;
  417. }
  418. .red{
  419. color: red;
  420. }
  421. .content {
  422. .header {
  423. width: 100%;
  424. height: 450rpx;
  425. text-align: center;
  426. .center{
  427. .sign{
  428. font-size: 70rpx;
  429. font-weight: bold;
  430. }
  431. }
  432. .title{
  433. font-weight: 500;
  434. font-size: 34rpx;
  435. padding: 0 20rpx;
  436. }
  437. .par-top1{
  438. padding-top: 100rpx;
  439. }
  440. .par-top2{
  441. padding-top: 150rpx;
  442. }
  443. .tip{
  444. font-size: 30rpx;
  445. font-weight: bold;
  446. padding: 40rpx 0;
  447. }
  448. }
  449. .info{
  450. // padding: 0 20rpx;
  451. // background: #fff;
  452. height: calc(100vh - 120rpx);
  453. overflow-y: auto;
  454. background: #F8F8F8;
  455. .info-list{
  456. padding: 14rpx 0;
  457. display: flex;
  458. font-size: 28rpx;
  459. color: #555555;
  460. .info-title{
  461. color: #000;
  462. }
  463. .info-content{
  464. flex: 1;
  465. }
  466. }
  467. }
  468. .height-list {
  469. height: 44px;
  470. }
  471. .list {
  472. background: #fff;
  473. border-bottom: 1px solid #D2D2D2;
  474. .df-list {
  475. display: flex;
  476. align-items: center;
  477. padding: 14rpx 20rpx;
  478. font-size: 28rpx;
  479. color: #555555;
  480. .no-center{
  481. align-items: baseline;
  482. line-height: 1;
  483. }
  484. .list-title{
  485. color: #000;
  486. line-height: 1;
  487. }
  488. }
  489. }
  490. .list-top{
  491. margin-top: 20rpx;
  492. }
  493. .info-log{
  494. background: #fff;
  495. height: calc(100vh - 80rpx);
  496. }
  497. .df {
  498. display: flex;
  499. height: 80rpx;
  500. align-items: center;
  501. padding: 0 20rpx;
  502. border-bottom: 1px solid #D2D2D2;
  503. }
  504. .execFilterMask{
  505. .execFilter{
  506. position: relative;
  507. background-color: #fff;
  508. height: calc(100vh - 80rpx);
  509. .execFilterHeader{
  510. height: 70rpx;
  511. display: flex;
  512. justify-content: center;
  513. align-items: center;
  514. border-bottom: 2rpx solid #ccc;
  515. }
  516. .execFilterBody{
  517. .execFilterItem{
  518. padding: 32rpx;
  519. border-bottom: 2rpx dashed #ccc;
  520. &:last-of-type{
  521. border-bottom: none;
  522. }
  523. .execFilterItemHeader{}
  524. .execFilterItemBody{
  525. display: flex;
  526. flex-wrap: wrap;
  527. padding: 32rpx 0 0;
  528. justify-content: space-between;
  529. text-align: left;
  530. .execFilterItemBox{
  531. width: 200rpx;
  532. height: 80rpx;
  533. text-align: center;
  534. line-height: 80rpx;
  535. background-color: #f6f6f6;
  536. margin-bottom: 20rpx;
  537. &.active{
  538. color: #fff;
  539. background-color: #49b856;
  540. }
  541. }
  542. .deptName {
  543. height: 80rpx;
  544. background-color: #f6f6f6;
  545. padding: 0 20rpx;
  546. width: 100%;
  547. }
  548. }
  549. }
  550. }
  551. }
  552. }
  553. .btn-view{
  554. width: 100%;
  555. bottom: 20rpx;
  556. position: fixed;
  557. .back-btn{
  558. background: #49B856;
  559. border-radius: 10rpx;
  560. color: #fff;
  561. font-size: 30rpx;
  562. text-align: center;
  563. line-height: 80rpx;
  564. width: 95%;
  565. }
  566. .back-btn2{
  567. background: #8F939C;
  568. border-radius: 10rpx;
  569. color: #fff;
  570. font-size: 30rpx;
  571. text-align: center;
  572. line-height: 80rpx;
  573. width: 45%;
  574. }
  575. .back-btn3{
  576. background: #49B856;
  577. border-radius: 10rpx;
  578. color: #fff;
  579. font-size: 30rpx;
  580. text-align: center;
  581. line-height: 80rpx;
  582. width: 45%;
  583. }
  584. }
  585. .df-sb{
  586. display: flex;
  587. justify-content: space-between;
  588. }
  589. .pop-content{
  590. text-align: center;
  591. .pop-title{
  592. font-size: 32rpx;
  593. color: #000;
  594. margin-top: 20rpx;
  595. }
  596. .pop-tip{
  597. font-size: 28rpx;
  598. color: #6C6C6C;
  599. margin-top: 10rpx;
  600. }
  601. .uni-forms{
  602. padding: 20rpx 20rpx 0 20rpx;
  603. }
  604. .text-left{
  605. text-align: left;
  606. }
  607. .pou-btn{
  608. color: #000;
  609. font-size: 30rpx;
  610. border-top: 1px solid #E3E3E3;
  611. display: flex;
  612. padding: 0 20rpx;
  613. .btn{
  614. text-align: center;
  615. line-height: 80rpx;
  616. width: 50%;
  617. }
  618. }
  619. .border-right{
  620. border-right: 1px solid #E3E3E3;
  621. }
  622. .confirm{
  623. color: #49B856 !important;
  624. }
  625. }
  626. }
  627. </style>