specimenPort.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. <template>
  2. <view class="conte">
  3. <view class="header">
  4. <text class="title">{{userInfo.dept.dept}}
  5. <text class="red" v-if="otherData">
  6. (单 {{otherData.pathologyFormNum}}, 标 {{otherData.specimenNum}})
  7. </text>
  8. </text>
  9. <view class="filter" @click="filterClick">
  10. <text class="newicon newicon-shaixuan icon"></text>
  11. </view>
  12. </view>
  13. <view class="height-list"></view>
  14. <view class="list" @click="detail(item)" v-for="(item, index) in list" :key="index">
  15. <view class="df-list list-border">
  16. <view>{{item.applyCode}}</view>
  17. <view>{{item.status.name}}</view>
  18. </view>
  19. <view class="df-list">
  20. <view class="df-list-over-left">科室:{{item.patientDTO.department.dept}}</view>
  21. <view class="df-list-over">部位:{{item.takePart}}</view>
  22. </view>
  23. <view class="df-list">
  24. <view class="df-list-over-left">患者:{{item.patientName}}({{item.patientDTO.bedNum}}床)</view>
  25. <view class="df-list-over">住院号:{{item.patientDTO.patientCode}}</view>
  26. </view>
  27. <view class="df-list">
  28. <view class="df-list-over-left">离:{{yyTimeFilter(item.inVitroTime)}}</view>
  29. <view class="df-list-over">固:{{yyTimeFilter(item.fixationTime)}}</view>
  30. </view>
  31. <view class="list-content"></view>
  32. </view>
  33. <uni-drawer width="400px" :visible="isShowFilter" mode="right" :maskClick="false" @close="filterCacel()">
  34. <view class="execFilterMask" @touchmove.stop.prevent>
  35. <view class="execFilter">
  36. <radio-group @change="radioChange">
  37. <label class="df uni-list-cell uni-list-cell-pd" v-for="(item, index) in specimenData" :key="item.id">
  38. <view>
  39. <radio :value="item.id+''" activeBackgroundColor="#49B856" :checked="index == current" />
  40. </view>
  41. <view>{{item.dept}}</view>
  42. </label>
  43. </radio-group>
  44. <view>
  45. <label class="df uni-list-cell uni-list-cell-pd">固定并存放标本间</label>
  46. <checkbox-group @change="checkChange">
  47. <label class="df uni-list-cell uni-list-cell-pd">
  48. <checkbox color="#49B856" value="1" :checked="depositCheck" />是否开启
  49. </label>
  50. </checkbox-group>
  51. </view>
  52. <view class="execFilterFooter">
  53. <view class="btn" @click="filterCacel()" v-if="isDept || specimenData.length==0">取消</view>
  54. <view class="btn" @click="filterOk()">确认</view>
  55. </view>
  56. </view>
  57. </view>
  58. </uni-drawer>
  59. <!-- PDA扫描 -->
  60. <scanner></scanner>
  61. <!-- apk自动更新 -->
  62. <appUpdata v-if="isApp && isUpdate" @getUpdate="isUpdate=false"></appUpdata>
  63. </view>
  64. </template>
  65. <script>
  66. import {
  67. get,
  68. post
  69. } from "../../http/http.js";
  70. import scanner from "../../components/scanner/scanner.vue";
  71. import appUpdata from "../../components/appUpdata/appUpdata.vue";
  72. export default {
  73. data() {
  74. return {
  75. list: [],
  76. idx: 0,
  77. isDept:null,
  78. userInfo:uni.getStorageSync('userData').user,
  79. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  80. specimenData: [],
  81. isShowFilter: false,
  82. current: null,
  83. deptId:null,
  84. totalNum:0,
  85. hasMore:true,
  86. SMFlag:true,
  87. otherData:null,
  88. isApp:false,
  89. isUpdate:false,
  90. depositCheck:false,
  91. }
  92. },
  93. components: {
  94. scanner,
  95. appUpdata
  96. },
  97. methods: {
  98. // 时间格式化
  99. yyTimeFilter(timestamp) {
  100. var date = new Date(timestamp); // 时间戳为毫秒级别
  101. var year = date.getFullYear();
  102. var month = date.getMonth() + 1;
  103. var day = date.getDate();
  104. var hours = date.getHours();
  105. var minutes = date.getMinutes();
  106. var seconds = date.getSeconds();
  107. // 格式化月份、日期、小时、分钟、秒
  108. month = month < 10 ? '0' + month : month;
  109. day = day < 10 ? '0' + day : day;
  110. hours = hours < 10 ? '0' + hours : hours;
  111. minutes = minutes < 10 ? '0' + minutes : minutes;
  112. seconds = seconds < 10 ? '0' + seconds : seconds;
  113. return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
  114. },
  115. // 选择check
  116. checkChange(e){
  117. let values = e.detail.value;
  118. if(values[0]=='1'){
  119. this.depositCheck = true
  120. }else{
  121. this.depositCheck = false
  122. }
  123. },
  124. // 打开科室选择
  125. filterClick() {
  126. this.isShowFilter = true
  127. this.$nextTick(_=>{
  128. let userInfo = uni.getStorageSync('userData').user
  129. if(this.isDept){
  130. for (let i = 0; i < this.specimenData.length; i++) {
  131. if (this.specimenData[i].id == userInfo.dept.id) {
  132. this.current = i;
  133. this.deptId = userInfo.dept.id;
  134. break;
  135. }
  136. }
  137. }
  138. })
  139. },
  140. // 关闭科室弹框
  141. filterCacel() {
  142. this.isShowFilter = false
  143. },
  144. // 确定关联科室
  145. filterOk() {
  146. let userInfo = uni.getStorageSync('userData').user
  147. if(!this.isDept){
  148. if(!this.deptId){
  149. uni.showToast({
  150. title: '请选择科室',
  151. duration: 1000,
  152. icon:'none'
  153. });
  154. return
  155. }
  156. }
  157. uni.showLoading({
  158. title: "加载中",
  159. mask: true,
  160. });
  161. let query = {
  162. user: {
  163. dept:{
  164. id:this.deptId?this.deptId:userInfo.dept.id
  165. },
  166. id:userInfo.id,
  167. fixedStoredSpecimenRoom:this.depositCheck ? 1 : 0
  168. },
  169. }
  170. post('/data/updData/user', query).then(res => {
  171. uni.hideLoading();
  172. this.filterCacel();
  173. this.getCurrentUserNow()
  174. this.idx = 0
  175. this.getList()
  176. });
  177. },
  178. // getNewDept(){
  179. // let postData = {
  180. // currentHosId: this.hosId,
  181. // loginType: "Wechat",
  182. // };
  183. // post('/auth/changeHospital',postData).then((result) => {
  184. // if (result.status == 200) {
  185. // this.getCurrentUserNow();
  186. // }
  187. // });
  188. // },
  189. // 获取当前用户信息
  190. getCurrentUserNow() {
  191. get('/user/data/getCurrentUser').then((data) => {
  192. if (data["status"] == 200) {
  193. this.loginUser = data.data
  194. let user = uni.getStorageSync('userData');
  195. user.user.dept = data["data"].dept;
  196. user.user.currentHospital = data["data"].currentHospital;
  197. this.userInfo.dept.dept = data["data"].dept.dept;
  198. user.user.fixedStoredSpecimenRoom = data["data"].fixedStoredSpecimenRoom;
  199. uni.setStorageSync('userData',user)
  200. let userInfo = uni.getStorageSync('userData').user
  201. this.isDept = this.specimenData.find(i=>i.id == userInfo.dept.id)
  202. if(userInfo.fixedStoredSpecimenRoom!=null){
  203. this.depositCheck = userInfo.fixedStoredSpecimenRoom == 1 ? true : false
  204. }
  205. }
  206. });
  207. },
  208. // 选择科室
  209. radioChange(evt) {
  210. this.deptId = evt.detail.value
  211. for (let i = 0; i < this.specimenData.length; i++) {
  212. if (this.specimenData[i].id == evt.detail.value) {
  213. this.current = i;
  214. break;
  215. }
  216. }
  217. },
  218. // 查看详情
  219. detail(item){
  220. // this.padChange('862420344832\n')
  221. uni.navigateTo({
  222. url: `/pages/specimenPort/detail?detailId=${item.id}`
  223. });
  224. },
  225. // 获取标本间科室
  226. getDept(backType) {
  227. post('/common/common/getDictionary', {
  228. key: "dept_type",
  229. type: "list"
  230. }).then((res2) => {
  231. let item2 = res2.find(i => i.name == '标本间科室')
  232. let query = {
  233. idx: 0,
  234. sum: 9999,
  235. department: {
  236. hospital: {
  237. id: this.hosId || ""
  238. },
  239. type: {
  240. id: item2.id || ""
  241. },
  242. },
  243. };
  244. post('/data/fetchDataList/department', query).then((res) => {
  245. this.specimenData = res.list
  246. if(!backType){
  247. this.isShowFilter = true
  248. }
  249. let userInfo = uni.getStorageSync('userData').user
  250. if(userInfo.fixedStoredSpecimenRoom!=null){
  251. this.depositCheck = userInfo.fixedStoredSpecimenRoom == 1 ? true : false
  252. }
  253. this.isDept = this.specimenData.find(i=>i.id == userInfo.dept.id)
  254. this.$nextTick(_=>{
  255. if(this.isDept){
  256. for (let i = 0; i < this.specimenData.length; i++) {
  257. if (this.specimenData[i].id === userInfo.dept.id) {
  258. this.current = i;
  259. break;
  260. }
  261. }
  262. }
  263. })
  264. if(this.isDept){
  265. this.getList()
  266. }
  267. });
  268. });
  269. },
  270. // 分页数据
  271. getList() {
  272. uni.showLoading({
  273. title: "加载中",
  274. mask: true,
  275. });
  276. let query = {
  277. idx: this.idx,
  278. pathologyForm: {
  279. detailsType: "specimenDept",
  280. keyWords: "",
  281. hosId: this.hosId,
  282. },
  283. sum: 20
  284. }
  285. post('/data/fetchDataList/pathologyForm', query).then(res => {
  286. uni.hideLoading();
  287. if(res.list.length){
  288. this.hasMore = true;
  289. this.list = this.idx === 0 ? res.list : this.list.concat(res.list);
  290. this.otherData = res.otherData
  291. }else{
  292. if(this.idx == 0){
  293. this.list = []
  294. }
  295. this.hasMore = false;
  296. }
  297. this.totalNum = res.totalNum;
  298. });
  299. },
  300. // PDA扫描
  301. padChange(scannerCode){
  302. scannerCode = scannerCode.replace('\n','')
  303. if (!this.SMFlag) {
  304. return;
  305. }
  306. this.SMFlag = false;
  307. uni.showLoading({
  308. title: "加载中",
  309. mask: true,
  310. });
  311. post("/pathology/scanCode", {
  312. barcode:scannerCode,
  313. platform:"app"
  314. }).then((res) => {
  315. this.SMFlag = true
  316. uni.hideLoading();
  317. if(res.status==200){
  318. let data = res.data[0]
  319. let item = null
  320. let str = null
  321. if(scannerCode.indexOf(':')!=-1){
  322. str = scannerCode.split(':')
  323. item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == str[1])
  324. }else{
  325. item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
  326. }
  327. // let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
  328. if(!item.fixationTime && data.pathologyFormType==0){
  329. if(data.status.value==2 || data.status.value==3 ||
  330. data.status.value==4){
  331. uni.navigateTo({
  332. url: `/pages/specimenPort/scan?data=${JSON.stringify(data)}&type=${res.type}`
  333. });
  334. }else{
  335. uni.showToast({
  336. title: '查询到标本申请单信息',
  337. duration: 1000,
  338. icon:'none'
  339. });
  340. setTimeout(_=>{
  341. uni.navigateTo({
  342. url: `/pages/specimenPort/detail?detailId=${data.id}`
  343. });
  344. },800)
  345. }
  346. }else if(item.fixationTime && data.pathologyFormType==0){
  347. uni.showToast({
  348. title: '查询到标本申请单信息',
  349. duration: 1000,
  350. icon:'none'
  351. });
  352. setTimeout(_=>{
  353. uni.navigateTo({
  354. url: `/pages/specimenPort/detail?detailId=${data.id}`
  355. });
  356. },800)
  357. }else{
  358. uni.showToast({
  359. title: '该申请单类型不是病理检查申请单',
  360. duration: 1000,
  361. icon:'none'
  362. });
  363. }
  364. }else{
  365. uni.showModal({
  366. title: "提示",
  367. content: `${res.msg} \n 扫描内容:${scannerCode}`,
  368. confirmColor:'#49b856',
  369. success: (res) => {
  370. if (res.confirm) {
  371. console.log("用户点击确定");
  372. } else if (res.cancel) {
  373. console.log("用户点击取消");
  374. }
  375. },
  376. });
  377. }
  378. })
  379. },
  380. },
  381. onReachBottom() {
  382. this.idx++;
  383. if (this.hasMore) {
  384. this.getList(); // 当触底时加载更多数据
  385. }
  386. },
  387. onBackPress(e) {
  388. // backbutton:物理按键返回
  389. if (e.from === 'backbutton') {
  390. uni.navigateTo({
  391. url: `/pages/homePage/homePage`
  392. });
  393. return true
  394. }
  395. },
  396. onShow() {
  397. let that = this
  398. // #ifdef APP-PLUS
  399. this.isUpdate = true
  400. this.isApp = true
  401. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  402. uni.$on('scan', function(data) {
  403. that.padChange(data)
  404. })
  405. // #endif
  406. },
  407. onLoad(option) {
  408. let backType = option.backType ? option.backType : null
  409. this.getDept(backType)
  410. // #ifdef APP-PLUS
  411. this.isUpdate = true
  412. this.isApp = true
  413. // #endif
  414. }
  415. }
  416. </script>
  417. <style lang="less" scoped>
  418. page {
  419. background: #F7F7F7;
  420. }
  421. .conte {
  422. .header {
  423. height: 80rpx;
  424. display: flex;
  425. justify-content: center;
  426. align-items: center;
  427. position: relative;
  428. position: fixed;
  429. width: 100%;
  430. background: #F7F7F7;
  431. .title {
  432. color: #57BC63;
  433. font-size: 32rpx;
  434. font-weight: 500;
  435. .red{
  436. color: red;
  437. margin-left: 10px;
  438. }
  439. }
  440. .filter {
  441. position: absolute;
  442. right: 15rpx;
  443. top: 24rpx;
  444. .icon{
  445. font-size: 34rpx;
  446. }
  447. }
  448. }
  449. .height-list {
  450. height: 44px;
  451. }
  452. .list {
  453. // margin-bottom: 20rpx;
  454. background: #fff;
  455. .df-list {
  456. display: flex;
  457. justify-content: space-between;
  458. padding: 14rpx 20rpx;
  459. font-size: 28rpx;
  460. color: #555555;
  461. .df-list-over-left{
  462. overflow: hidden;
  463. flex: 1;
  464. text-overflow: ellipsis;
  465. white-space: nowrap;
  466. }
  467. .df-list-over{
  468. overflow: hidden;
  469. flex: 1;
  470. text-overflow: ellipsis;
  471. white-space: nowrap;
  472. margin-left: 20rpx;
  473. }
  474. }
  475. .list-border {
  476. border-bottom: 1px solid #D2D2D2;
  477. height: 46rpx;
  478. display: flex;
  479. justify-content: space-between;
  480. align-items: center;
  481. font-size: 32rpx !important;
  482. font-weight: 500;
  483. color: #000;
  484. }
  485. .list-content{
  486. height: 22rpx;
  487. background: #F7F7F7;
  488. }
  489. }
  490. .df {
  491. display: flex;
  492. height: 80rpx;
  493. align-items: center;
  494. padding: 0 20rpx;
  495. border-bottom: 1px solid #D2D2D2;
  496. }
  497. .execFilterMask{
  498. .execFilter{
  499. position: relative;
  500. background-color: #fff;
  501. height: 100vh;
  502. border-radius: 100rpx 100rpx 0 0;
  503. .execFilterHeader{
  504. height: 70rpx;
  505. display: flex;
  506. justify-content: center;
  507. align-items: center;
  508. border-bottom: 2rpx solid #ccc;
  509. }
  510. .execFilterBody{
  511. .execFilterItem{
  512. padding: 32rpx;
  513. border-bottom: 2rpx dashed #ccc;
  514. &:last-of-type{
  515. border-bottom: none;
  516. }
  517. .execFilterItemHeader{}
  518. .execFilterItemBody{
  519. display: flex;
  520. flex-wrap: wrap;
  521. padding: 32rpx 0 0;
  522. justify-content: space-between;
  523. text-align: left;
  524. .execFilterItemBox{
  525. width: 200rpx;
  526. height: 80rpx;
  527. text-align: center;
  528. line-height: 80rpx;
  529. background-color: #f6f6f6;
  530. margin-bottom: 20rpx;
  531. border-radius: 80rpx;
  532. &.active{
  533. color: #fff;
  534. background-color: #49b856;
  535. }
  536. }
  537. .deptName {
  538. height: 80rpx;
  539. background-color: #f6f6f6;
  540. border-radius: 20rpx;
  541. padding: 0 20rpx;
  542. width: 100%;
  543. }
  544. }
  545. }
  546. }
  547. .execFilterFooter {
  548. position: absolute;
  549. bottom: 0;
  550. right: 0;
  551. left: 0;
  552. line-height: 66rpx;
  553. height: 100rpx;
  554. display: flex;
  555. justify-content: space-between;
  556. .btn {
  557. height: 66rpx;
  558. flex: 1;
  559. margin: 0 1%;
  560. background-image: linear-gradient(to right, #72c172, #3bb197);
  561. color: #fff;
  562. border-radius: 8rpx;
  563. font-size: 28rpx;
  564. margin-top: 16rpx;
  565. text-align: center;
  566. }
  567. }
  568. }
  569. }
  570. }
  571. </style>