detail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. <template>
  2. <view class="conte">
  3. <view class="header">
  4. <view class="tabs" :class="tabsActive==index?'activeClass':''"
  5. v-for="(item, index) in tabs" @click="tabsClick(index)">
  6. {{item.name}}
  7. </view>
  8. </view>
  9. <view class="height-list"></view>
  10. <view v-if="tabsActive==0 && infoData" class="info">
  11. <view class="info-list no-center"><view class="info-title">申请单号:</view>{{infoData.applyCode}}</view>
  12. <view class="info-list"><view class="info-title">状态:</view>{{infoData.status.name}}</view>
  13. <view class="info-list"><view class="info-title">科室名称:</view>{{infoData.patientDTO.department.dept}}</view>
  14. <view class="info-list no-center"><view class="info-title">患者姓名:</view>{{infoData.patientName}}({{infoData.patientDTO.bedNum}}床)</view>
  15. <view class="info-list no-center"><view class="info-title">住院号:</view>{{infoData.patientDTO.patientCode}}</view>
  16. <view class="info-list no-center"><view class="info-title">年龄:</view>{{infoData.patientDTO.age}}</view>
  17. <view class="info-list"><view class="info-title">性别:</view>{{infoData.patientDTO.gender && infoData.patientDTO.gender.name || '-'}}</view>
  18. <view class="info-list no-center">
  19. <view class="info-title">检查项目:</view>
  20. <view class="info-content">
  21. {{examineName.join('、')}}
  22. </view>
  23. </view>
  24. <view class="info-list"><view class="info-title">标本类型:</view>{{infoData.specimenType.name}}</view>
  25. <view class="info-list no-center"><view class="info-title">标本数量:</view>{{infoData.specimenNum}}</view>
  26. <view class="info-list no-center">
  27. <view class="info-title">部位:</view>
  28. <view class="info-content">
  29. {{infoData.takePart}}
  30. </view>
  31. </view>
  32. <view class="info-list"><view class="info-title">送检医生:</view>{{infoData.surgeryDoctorDTO.name}}</view>
  33. <view class="info-list no-center"><view class="info-title">离体时间:</view>{{yyTimeFilter(infoData.inVitroTime)}}</view>
  34. <view class="info-list no-center"><view class="info-title">固定时间:</view>{{yyTimeFilter(infoData.fixationTime)}}</view>
  35. <view class="info-list no-center">
  36. <view class="info-title">诊断:</view>
  37. <view class="info-content">
  38. {{infoData.diagnose}}
  39. </view>
  40. </view>
  41. <view class="info-list no-center">
  42. <view class="info-title">病历摘要:</view>
  43. <view class="info-content">
  44. {{infoData.medicalRecords}}
  45. </view>
  46. </view>
  47. <view class="info-list no-center">
  48. <view class="info-title">手术方案:</view>
  49. <view class="info-content">
  50. {{infoData.surgicalPlan}}
  51. </view>
  52. </view>
  53. </view>
  54. <view v-if="tabsActive==1" class="list-body">
  55. <view class="list" v-for="(item, index) in list" :key="index">
  56. <view class="df-list">
  57. <view class="list-title">标本名称:</view>{{item.specimenName}}
  58. </view>
  59. <view class="df-list">
  60. <view class="list-title">条码号:</view>{{item.specimenCode}}
  61. </view>
  62. <view class="list-content"></view>
  63. </view>
  64. </view>
  65. <view v-if="tabsActive==2 && stepsList.length" class="info-log">
  66. <uni-section type="line" padding>
  67. <uni-steps :options="stepsList" active-color="#49B856" :active="stepsActive" direction="column" />
  68. </uni-section>
  69. </view>
  70. <view class="btn-view">
  71. <button class="back-btn" @click="back">返回</button>
  72. </view>
  73. <!-- PDA扫描 -->
  74. <scanner></scanner>
  75. </view>
  76. </template>
  77. <script>
  78. import {
  79. get,
  80. post
  81. } from "../../http/http.js";
  82. import scanner from "../../components/scanner/scanner.vue";
  83. export default {
  84. data() {
  85. return {
  86. tabs: [
  87. {name:'申请单'},
  88. {name:'标本信息'},
  89. {name:'历史记录'},
  90. ],
  91. tabsActive:0,
  92. infoData:null,
  93. list:[],
  94. idx: 0,
  95. userInfo:uni.getStorageSync('userData').user,
  96. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  97. stepsList: [],
  98. stepsActive:0,
  99. SMFlag:true,
  100. }
  101. },
  102. components: {
  103. scanner
  104. },
  105. methods: {
  106. back(){
  107. uni.navigateTo({
  108. url: `/pages/specimenPort/specimenPort?backType=detail`
  109. });
  110. },
  111. // 时间格式化
  112. yyTimeFilter(timestamp) {
  113. var date = new Date(timestamp); // 时间戳为毫秒级别
  114. var year = date.getFullYear();
  115. var month = date.getMonth() + 1;
  116. var day = date.getDate();
  117. var hours = date.getHours();
  118. var minutes = date.getMinutes();
  119. var seconds = date.getSeconds();
  120. // 格式化月份、日期、小时、分钟、秒
  121. month = month < 10 ? '0' + month : month;
  122. day = day < 10 ? '0' + day : day;
  123. hours = hours < 10 ? '0' + hours : hours;
  124. minutes = minutes < 10 ? '0' + minutes : minutes;
  125. seconds = seconds < 10 ? '0' + seconds : seconds;
  126. return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
  127. },
  128. // 切换tabs
  129. tabsClick(index) {
  130. this.idx = 0;
  131. this.tabsActive = index;
  132. },
  133. // 详情数据
  134. getDetail(detailId) {
  135. uni.showLoading({
  136. title: "加载中",
  137. mask: true,
  138. });
  139. get(`/data/fetchData/pathologyForm/${detailId}`).then(res => {
  140. uni.hideLoading();
  141. this.infoData = res.data
  142. this.examineName = res.data.pathologyInspectDTOS.map(i=>i.inspectProject.name)
  143. this.stepsList = res.data.formLogDTOS.map(i=>{
  144. if(i.handoverUserDto){
  145. return{
  146. title:i.operationType.name+' '+ i.handoverUserDto.name,
  147. desc:this.yyTimeFilter(i.createTime) +' '+ i.operationUserDto.name
  148. }
  149. }else{
  150. return{
  151. title:i.operationType.name,
  152. desc:this.yyTimeFilter(i.createTime) +' '+ i.operationUserDto.name
  153. }
  154. }
  155. })
  156. this.stepsActive = this.stepsList.length-1
  157. this.list = res.data.pathologySpecimenDTOList
  158. });
  159. },
  160. // PDA扫描
  161. padChange(scannerCode){
  162. scannerCode = scannerCode.replace('\n','')
  163. if (!this.SMFlag) {
  164. return;
  165. }
  166. this.SMFlag = false;
  167. uni.showLoading({
  168. title: "加载中",
  169. mask: true,
  170. });
  171. post("/pathology/scanCode", {
  172. barcode:scannerCode,
  173. platform:"app"
  174. }).then((res) => {
  175. this.SMFlag = true
  176. uni.hideLoading();
  177. if(res.status==200){
  178. let data = res.data[0]
  179. let item = null
  180. let str = null
  181. if(scannerCode.indexOf(':')!=-1){
  182. str = scannerCode.split(':')
  183. item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == str[1])
  184. }else{
  185. item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
  186. }
  187. // let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
  188. if(!item.fixationTime && data.pathologyFormType==0){
  189. if(data.status.value==2 || data.status.value==3 ||
  190. data.status.value==4){
  191. uni.navigateTo({
  192. url: `/pages/specimenPort/scan?data=${JSON.stringify(data)}&type=${res.type}`
  193. });
  194. }else{
  195. uni.showToast({
  196. title: '查询到标本申请单信息',
  197. duration: 1000,
  198. icon:'none'
  199. });
  200. setTimeout(_=>{
  201. uni.navigateTo({
  202. url: `/pages/specimenPort/detail?detailId=${data.id}`
  203. });
  204. },800)
  205. }
  206. }else if(item.fixationTime && data.pathologyFormType==0){
  207. uni.showToast({
  208. title: '查询到标本申请单信息',
  209. duration: 1000,
  210. icon:'none'
  211. });
  212. setTimeout(_=>{
  213. uni.navigateTo({
  214. url: `/pages/specimenPort/detail?detailId=${data.id}`
  215. });
  216. },800)
  217. }else{
  218. uni.showToast({
  219. title: '该申请单类型不是病理检查申请单',
  220. duration: 1000,
  221. icon:'none'
  222. });
  223. }
  224. }else{
  225. uni.showModal({
  226. title: "提示",
  227. content: `${res.msg} \n 扫描内容:${scannerCode}`,
  228. confirmColor:'#49b856',
  229. success: (res) => {
  230. if (res.confirm) {
  231. console.log("用户点击确定");
  232. } else if (res.cancel) {
  233. console.log("用户点击取消");
  234. }
  235. },
  236. });
  237. }
  238. })
  239. },
  240. },
  241. onBackPress(e) {
  242. // backbutton:物理按键返回
  243. if (e.from === 'backbutton') {
  244. this.back()
  245. return true
  246. }
  247. },
  248. onShow() {
  249. let that = this
  250. // #ifdef APP-PLUS
  251. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  252. uni.$on('scan', function(data) {
  253. that.padChange(data)
  254. })
  255. // #endif
  256. },
  257. onLoad(options) {
  258. this.getDetail(options.detailId)
  259. }
  260. }
  261. </script>
  262. <style lang="less" scoped>
  263. page {
  264. background: #F7F7F7;
  265. }
  266. .conte {
  267. .header {
  268. display: flex;
  269. position: fixed;
  270. width: 100%;
  271. background: #fff;
  272. z-index: 999;
  273. .tabs{
  274. height: 80rpx;
  275. display: flex;
  276. align-items: center;
  277. justify-content: center;
  278. border-bottom: 1px solid #fff;
  279. flex: 1;
  280. }
  281. }
  282. .activeClass{
  283. border-bottom: 1px solid #49B856 !important;
  284. color: #49B856;
  285. }
  286. .info{
  287. padding: 0 20rpx;
  288. background: #fff;
  289. height: calc(100vh - 180rpx);
  290. overflow-y: auto;
  291. .info-list{
  292. padding: 14rpx 0;
  293. display: flex;
  294. align-items: center;
  295. font-size: 28rpx;
  296. color: #555555;
  297. .info-title{
  298. color: #000;
  299. }
  300. .info-content{
  301. flex: 1;
  302. }
  303. }
  304. .no-center{
  305. align-items: baseline;
  306. }
  307. }
  308. .height-list {
  309. height: 44px;
  310. }
  311. .list-body{
  312. height: calc(100vh - 180rpx);
  313. overflow-y: auto;
  314. .list {
  315. // margin-top: 20rpx;
  316. background: #fff;
  317. .list-content{
  318. height: 20rpx;
  319. background: #F7F7F7;
  320. }
  321. .df-list {
  322. display: flex;
  323. padding: 14rpx 20rpx;
  324. font-size: 28rpx;
  325. color: #555555;
  326. .list-title{
  327. color: #000;
  328. }
  329. }
  330. }
  331. }
  332. .info-log{
  333. background: #fff;
  334. height: calc(100vh - 80rpx);
  335. }
  336. .df {
  337. display: flex;
  338. height: 80rpx;
  339. align-items: center;
  340. padding: 0 20rpx;
  341. border-bottom: 1px solid #D2D2D2;
  342. }
  343. .execFilterMask{
  344. .execFilter{
  345. position: relative;
  346. background-color: #fff;
  347. height: calc(100vh - 80rpx);
  348. .execFilterHeader{
  349. height: 70rpx;
  350. display: flex;
  351. justify-content: center;
  352. align-items: center;
  353. border-bottom: 2rpx solid #ccc;
  354. }
  355. .execFilterBody{
  356. .execFilterItem{
  357. padding: 32rpx;
  358. border-bottom: 2rpx dashed #ccc;
  359. &:last-of-type{
  360. border-bottom: none;
  361. }
  362. .execFilterItemHeader{}
  363. .execFilterItemBody{
  364. display: flex;
  365. flex-wrap: wrap;
  366. padding: 32rpx 0 0;
  367. justify-content: space-between;
  368. text-align: left;
  369. .execFilterItemBox{
  370. width: 200rpx;
  371. height: 80rpx;
  372. text-align: center;
  373. line-height: 80rpx;
  374. background-color: #f6f6f6;
  375. margin-bottom: 20rpx;
  376. &.active{
  377. color: #fff;
  378. background-color: #49b856;
  379. }
  380. }
  381. .deptName {
  382. height: 80rpx;
  383. background-color: #f6f6f6;
  384. padding: 0 20rpx;
  385. width: 100%;
  386. }
  387. }
  388. }
  389. }
  390. }
  391. }
  392. .btn-view{
  393. width: 100%;
  394. bottom: 20rpx;
  395. position: fixed;
  396. .back-btn{
  397. background: #49B856;
  398. border-radius: 10rpx;
  399. color: #fff;
  400. font-size: 30rpx;
  401. text-align: center;
  402. line-height: 80rpx;
  403. width: 95%;
  404. }
  405. }
  406. }
  407. </style>