detail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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 = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
  180. if(!item.fixationTime && data.pathologyFormType==0){
  181. if(data.status.value==2 || data.status.value==3 ||
  182. data.status.value==4){
  183. uni.navigateTo({
  184. url: `/pages/specimenPort/scan?data=${JSON.stringify(data)}&type=${res.type}`
  185. });
  186. }else{
  187. uni.showToast({
  188. title: '查询到标本申请单信息',
  189. duration: 1000,
  190. icon:'none'
  191. });
  192. setTimeout(_=>{
  193. uni.navigateTo({
  194. url: `/pages/specimenPort/detail?detailId=${data.id}`
  195. });
  196. },800)
  197. }
  198. }else if(item.fixationTime && data.pathologyFormType==0){
  199. uni.showToast({
  200. title: '查询到标本申请单信息',
  201. duration: 1000,
  202. icon:'none'
  203. });
  204. setTimeout(_=>{
  205. uni.navigateTo({
  206. url: `/pages/specimenPort/detail?detailId=${data.id}`
  207. });
  208. },800)
  209. }else{
  210. uni.showToast({
  211. title: '该申请单类型不是病理检查申请单',
  212. duration: 1000,
  213. icon:'none'
  214. });
  215. }
  216. }else{
  217. uni.showModal({
  218. title: "提示",
  219. content: `${res.msg} \n 扫描内容:${scannerCode}`,
  220. confirmColor:'#49b856',
  221. success: (res) => {
  222. if (res.confirm) {
  223. console.log("用户点击确定");
  224. } else if (res.cancel) {
  225. console.log("用户点击取消");
  226. }
  227. },
  228. });
  229. }
  230. })
  231. },
  232. },
  233. onBackPress(e) {
  234. // backbutton:物理按键返回
  235. if (e.from === 'backbutton') {
  236. this.back()
  237. return true
  238. }
  239. },
  240. onShow() {
  241. let that = this
  242. // #ifdef APP-PLUS
  243. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  244. uni.$on('scan', function(data) {
  245. that.padChange(data)
  246. })
  247. // #endif
  248. },
  249. onLoad(options) {
  250. this.getDetail(options.detailId)
  251. }
  252. }
  253. </script>
  254. <style lang="less" scoped>
  255. page {
  256. background: #F7F7F7;
  257. }
  258. .conte {
  259. .header {
  260. display: flex;
  261. position: fixed;
  262. width: 100%;
  263. background: #fff;
  264. z-index: 999;
  265. .tabs{
  266. height: 80rpx;
  267. display: flex;
  268. align-items: center;
  269. justify-content: center;
  270. border-bottom: 1px solid #fff;
  271. flex: 1;
  272. }
  273. }
  274. .activeClass{
  275. border-bottom: 1px solid #49B856 !important;
  276. color: #49B856;
  277. }
  278. .info{
  279. padding: 0 20rpx;
  280. background: #fff;
  281. height: calc(100vh - 180rpx);
  282. overflow-y: auto;
  283. .info-list{
  284. padding: 14rpx 0;
  285. display: flex;
  286. align-items: center;
  287. font-size: 28rpx;
  288. color: #555555;
  289. .info-title{
  290. color: #000;
  291. }
  292. .info-content{
  293. flex: 1;
  294. }
  295. }
  296. .no-center{
  297. align-items: baseline;
  298. }
  299. }
  300. .height-list {
  301. height: 44px;
  302. }
  303. .list-body{
  304. height: calc(100vh - 180rpx);
  305. overflow-y: auto;
  306. .list {
  307. // margin-top: 20rpx;
  308. background: #fff;
  309. .list-content{
  310. height: 20rpx;
  311. background: #F7F7F7;
  312. }
  313. .df-list {
  314. display: flex;
  315. padding: 14rpx 20rpx;
  316. font-size: 28rpx;
  317. color: #555555;
  318. .list-title{
  319. color: #000;
  320. }
  321. }
  322. }
  323. }
  324. .info-log{
  325. background: #fff;
  326. height: calc(100vh - 80rpx);
  327. }
  328. .df {
  329. display: flex;
  330. height: 80rpx;
  331. align-items: center;
  332. padding: 0 20rpx;
  333. border-bottom: 1px solid #D2D2D2;
  334. }
  335. .execFilterMask{
  336. .execFilter{
  337. position: relative;
  338. background-color: #fff;
  339. height: calc(100vh - 80rpx);
  340. .execFilterHeader{
  341. height: 70rpx;
  342. display: flex;
  343. justify-content: center;
  344. align-items: center;
  345. border-bottom: 2rpx solid #ccc;
  346. }
  347. .execFilterBody{
  348. .execFilterItem{
  349. padding: 32rpx;
  350. border-bottom: 2rpx dashed #ccc;
  351. &:last-of-type{
  352. border-bottom: none;
  353. }
  354. .execFilterItemHeader{}
  355. .execFilterItemBody{
  356. display: flex;
  357. flex-wrap: wrap;
  358. padding: 32rpx 0 0;
  359. justify-content: space-between;
  360. text-align: left;
  361. .execFilterItemBox{
  362. width: 200rpx;
  363. height: 80rpx;
  364. text-align: center;
  365. line-height: 80rpx;
  366. background-color: #f6f6f6;
  367. margin-bottom: 20rpx;
  368. &.active{
  369. color: #fff;
  370. background-color: #49b856;
  371. }
  372. }
  373. .deptName {
  374. height: 80rpx;
  375. background-color: #f6f6f6;
  376. padding: 0 20rpx;
  377. width: 100%;
  378. }
  379. }
  380. }
  381. }
  382. }
  383. }
  384. .btn-view{
  385. width: 100%;
  386. bottom: 20rpx;
  387. position: fixed;
  388. .back-btn{
  389. background: #49B856;
  390. border-radius: 10rpx;
  391. color: #fff;
  392. font-size: 30rpx;
  393. text-align: center;
  394. line-height: 80rpx;
  395. width: 95%;
  396. }
  397. }
  398. }
  399. </style>