detail.vue 10 KB

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