specimenPort.vue 14 KB

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