patientInformationInfo.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. <template>
  2. <view class="patientInformationInfo" v-if="Object.keys(infoDATA).length > 0">
  3. <view class="page_head">
  4. <view class="title">{{ infoDATA.patientName }}<text class="patientCode">{{ infoDATA.residenceNo }}</text></view>
  5. <view class="info">
  6. <view :class="(infoDATA.careLevel || infoDATA.illnessState)?'bedNum':'waitingCount'">
  7. <text class="info_h">床号</text>
  8. <text class="info_b">{{ infoDATA.bedNum }}</text>
  9. </view>
  10. <!-- <view :class="(infoDATA.careLevel || infoDATA.illnessState)?'bedNum':'waitingCount'">
  11. <text class="info_h">待检查数</text>
  12. <text class="info_b">{{ infoDATA.watingCount }}</text>
  13. </view> -->
  14. <view class="bedNum" v-if="infoDATA.careLevel">
  15. <text class="info_h">护理等级</text>
  16. <text class="info_b">{{ infoDATA.careLevel.name }}</text>
  17. </view>
  18. <view class="waitingCount" v-if="infoDATA.illnessState">
  19. <text class="info_h">病情级别</text>
  20. <text class="info_b">{{ infoDATA.illnessState.name }}</text>
  21. </view>
  22. </view>
  23. </view>
  24. <scroll-view v-if="!isEmpty" scroll-y class="scrollContent">
  25. <view class="page_item" v-for="(inspects, key, index) in infoDATA.inspectListMap" :key="key">
  26. <view class="splitLine">
  27. <view class="splitLineFlex">
  28. <view class="splitLineBox"></view>
  29. </view>
  30. <view>{{key}}</view>
  31. <view class="splitLineFlex">
  32. <view class="splitLineBox"></view>
  33. </view>
  34. </view>
  35. <view class="page_item_info" :class="{mt0: i === 0}" v-for="(item, i) in inspects" :key="item.id">
  36. <view class="page_item_info_title">检查项目:<text class="bold">{{ item.inspectName }}</text></view>
  37. <view class="page_item_info_title">检查科室:<text>{{ item.execDept ? item.execDept.dept : "" }}</text></view>
  38. <view class="page_item_info_title btn row">
  39. <view>预约时间:<text>{{ item.yyTime | filterSecondDate }}</text><text v-if="item.reservationNumber">({{ item.reservationNumber }})</text></view>
  40. <button @click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button>
  41. </view>
  42. <view class="page_item_info_title row">
  43. <view>是否紧急:<text :class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text></view>
  44. <view>状态:<text v-if="item.inspectState">{{ item.inspectState.name }}</text></view>
  45. </view>
  46. <view class="buildOrder" @click="build(item)" v-if="!item.gdId&&(item.inspectState.value==1||item.inspectState.value==30)">建单</view>
  47. </view>
  48. </view>
  49. </scroll-view>
  50. <view v-if="isEmpty" class="zwsj">
  51. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  52. <view class="zwsj-txt">暂无检查信息</view>
  53. </view>
  54. <view class="toolbar" @click="Scanning()">
  55. <text class="toolbar-icon newicon newicon-saoma"></text>
  56. <text class="toolbar-sao">扫一扫</text>
  57. </view>
  58. <!-- 弹窗 -->
  59. <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></inspectRemoveModel>
  60. <!-- 弹窗 -->
  61. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  62. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  63. </view>
  64. </template>
  65. <script>
  66. import {
  67. get,
  68. post,
  69. SM,
  70. webHandle
  71. } from "../../http/http.js";
  72. export default {
  73. data() {
  74. return {
  75. SMFlag: true,
  76. isEmpty: true,
  77. options: {},
  78. infoDATA: {},
  79. // 弹窗model1
  80. models1: {
  81. disjunctor: false,
  82. },
  83. // 建单的对象
  84. jdItem: {},
  85. // 弹窗model
  86. models: {
  87. disjunctor: false,
  88. },
  89. };
  90. },
  91. methods: {
  92. // 建单
  93. build(data) {
  94. console.log(data);
  95. this.jdItem = data;
  96. this.models = {
  97. disjunctor: true,
  98. title: "提示",
  99. content: `您即将创建【${data.patientName || ""}】患者前往【${
  100. data.execDept ? data.execDept.dept : ""
  101. }】进行【${data.inspectName || ""}】检查,您确认吗?`,
  102. icon: "warn",
  103. operate: {
  104. ok: "确定",
  105. cancel: "取消",
  106. },
  107. };
  108. },
  109. //建单后知道了
  110. know() {
  111. this.models.disjunctor = false;
  112. this.getInfo(this.jdItem.patientCode);
  113. },
  114. //建单确定
  115. ok() {
  116. this.models.disjunctor = false;
  117. let postData = {
  118. deptId: this.infoDATA.department.id
  119. };
  120. let taskId;
  121. uni.showLoading({
  122. title: "加载中",
  123. mask: true,
  124. });
  125. post("/nurse/getDeptTaskType", postData).then((result) => {
  126. if (result.status == 200) {
  127. let obj = result.data.allTaskTypes.filter(
  128. (item) => item.associationType.value == "inspect"
  129. );
  130. if (obj.length) {
  131. taskId = obj[0].id;
  132. let postData = {
  133. workOrder: {
  134. sourceId: 4,
  135. taskType: {
  136. id: taskId,
  137. isHalfInspect: obj[0].isHalfInspect === 1 ? 1 : 0
  138. },
  139. createDept: this.infoDATA.department.id,
  140. startDept: {
  141. id: this.infoDATA.department.id
  142. },
  143. patient: {
  144. patientCode: this.jdItem.patientCode
  145. },
  146. checkList: [{
  147. id: this.jdItem.id
  148. }],
  149. goods: "",
  150. worker: {
  151. id: uni.getStorageSync("userData").user.id
  152. },
  153. workerStartOrderFlag: 1,
  154. },
  155. };
  156. //根据检查的紧急度加急
  157. if (this.jdItem.priority === 1 || this.jdItem.priority === '1') {
  158. postData.workOrder["urgentDetails"] = {
  159. checkStatus: {
  160. id: 329
  161. },
  162. urgentReason: '系统根据检查信息,自动进行加急',
  163. };
  164. }
  165. post("/api/startOrder", postData).then((res) => {
  166. uni.hideLoading();
  167. let msg = res.msg;
  168. let icon = "error";
  169. if (res.status == 200) {
  170. msg = "建单成功";
  171. icon = "success";
  172. }
  173. this.models = {
  174. disjunctor: true,
  175. content: msg,
  176. icon: icon,
  177. operate: {
  178. know: "知道了",
  179. },
  180. };
  181. });
  182. } else {
  183. uni.hideLoading();
  184. this.models = {
  185. disjunctor: true,
  186. content: "建单失败,科室未开通!",
  187. icon: "error",
  188. operate: {
  189. know: "知道了",
  190. },
  191. };
  192. }
  193. } else {
  194. uni.hideLoading();
  195. uni.showToast({
  196. icon: "none",
  197. title: result.msg || "接口获取数据失败!",
  198. });
  199. }
  200. });
  201. },
  202. //建单取消
  203. cancel() {
  204. this.models.disjunctor = false;
  205. },
  206. // 扫一扫
  207. Scanning(qrcodePrefix = '') {
  208. if (!this.SMFlag) {
  209. return;
  210. }
  211. this.SMFlag = false;
  212. SM().then((content) => {
  213. this.SMFlag = true;
  214. this.getInfo(content);
  215. }).catch(err => {
  216. this.SMFlag = true;
  217. });
  218. },
  219. // 修改预约时间->知道了
  220. know1() {
  221. this.models1.disjunctor = false;
  222. },
  223. // 修改预约时间->确定
  224. ok1(data) {
  225. console.log(data);
  226. const { yyTime} = data;//暂时这样
  227. if (!yyTime) {
  228. //没有填写预约时间
  229. uni.showModal({
  230. title: "提示",
  231. content: "请填写预约时间!",
  232. showCancel: false,
  233. success: function(res) {
  234. if (res.confirm) {
  235. console.log("用户点击确定");
  236. } else if (res.cancel) {
  237. console.log("用户点击取消");
  238. }
  239. },
  240. });
  241. return;
  242. }
  243. this.models1.disjunctor = false;
  244. let postData = {
  245. inspectCode: this.currentInspect.inspectCode,
  246. yyTime
  247. };
  248. uni.showLoading({
  249. title: '加载中',
  250. mask: true,
  251. })
  252. post('/workerOrder/updateInspectYytime', postData).then(res => {
  253. uni.hideLoading();
  254. if (res.status == 200) {
  255. this.getInfo(this.options.patientCode);
  256. } else {
  257. uni.showToast({
  258. icon: "none",
  259. title: "修改失败",
  260. });
  261. }
  262. })
  263. },
  264. // 修改预约时间->取消
  265. cancel1() {
  266. this.models1.disjunctor = false;
  267. },
  268. // 修改预约时间
  269. changeYyTime(item) {
  270. this.currentInspect = item;
  271. this.models1 = {
  272. disjunctor: true,
  273. content: `您要修改[${item.inspectName||''}]的预约时间`,
  274. icon: "warn",
  275. operate: {
  276. ok: "确定",
  277. cancel: "取消",
  278. },
  279. };
  280. },
  281. // 请求详细页面的数据
  282. getInfo(patientCode) {
  283. uni.showLoading({
  284. title: "加载中",
  285. mask: true,
  286. });
  287. post("/nurse/workOrder/getPatientInspectInfo", {
  288. patientCode,
  289. }).then((res) => {
  290. uni.hideLoading();
  291. if (res.status == 200) {
  292. res.data.inspectListMap = res.data.inspectListMap || {};
  293. this.isEmpty = Object.keys(res.data.inspectListMap).length === 0;
  294. this.infoDATA = res.data;
  295. } else {
  296. uni.showToast({
  297. icon: "none",
  298. title: res.msg || "接口获取数据失败!",
  299. });
  300. }
  301. });
  302. },
  303. },
  304. onLoad(options) {
  305. this.options = options;
  306. this.getInfo(this.options.patientCode);
  307. // #ifdef APP-PLUS
  308. webHandle("no", "app");
  309. // #endif
  310. // #ifdef H5
  311. webHandle("no", "wx");
  312. // #endif
  313. },
  314. onShow() {
  315. this.SMFlag = true;
  316. }
  317. };
  318. </script>
  319. <style lang="less" scoped>
  320. .toolbar {
  321. margin-bottom: 16rpx;
  322. z-index: 999;
  323. height: 88rpx;
  324. display: flex;
  325. justify-content: center;
  326. align-items: center;
  327. box-sizing: border-box;
  328. border-radius: 4rpx;
  329. background-color: #E5E8ED;
  330. .toolbar-icon {
  331. font-size: 52rpx;
  332. margin-right: 16rpx;
  333. color: #07863c;
  334. }
  335. .toolbar-sao {
  336. font-size: 36rpx;
  337. color: #333;
  338. }
  339. }
  340. .patientInformationInfo {
  341. background-color: #F7F7F7;
  342. display: flex;
  343. flex-direction: column;
  344. height: 100vh;
  345. .zwsj {
  346. flex: 1;
  347. min-height: 0;
  348. text-align: center;
  349. .zwsj-img {
  350. width: 560rpx;
  351. }
  352. .zwsj-txt {
  353. font-size: 36rpx;
  354. font-weight: 700;
  355. margin-top: 20rpx;
  356. text-align: center;
  357. }
  358. }
  359. .page_head {
  360. background-color: #49b856;
  361. color: #fff;
  362. .title {
  363. font-size: 48rpx;
  364. padding-top: 24rpx;
  365. text-align: center;
  366. }
  367. .patientCode {
  368. margin-left: 12rpx;
  369. font-size: 28rpx;
  370. }
  371. .info {
  372. padding-bottom: 24rpx;
  373. margin: 8rpx 0;
  374. height: 80rpx;
  375. display: flex;
  376. justify-content: center;
  377. align-items: center;
  378. .bedNum,
  379. .waitingCount {
  380. width: 300rpx;
  381. height: 100%;
  382. display: flex;
  383. flex-direction: column;
  384. justify-content: center;
  385. align-items: center;
  386. .info_h {
  387. font-size: 30rpx;
  388. }
  389. .info_b {
  390. font-size: 26rpx;
  391. }
  392. }
  393. .bedNum {
  394. position: relative;
  395. &:after {
  396. content: "";
  397. position: absolute;
  398. width: 4rpx;
  399. height: 50rpx;
  400. right: -2rpx;
  401. top: 15rpx;
  402. background-color: #fff;
  403. }
  404. }
  405. }
  406. }
  407. .scrollContent{
  408. flex: 1;
  409. min-height: 0;
  410. }
  411. .page_item {
  412. // margin-bottom: 10rpx;
  413. border-radius: 8rpx;
  414. overflow: hidden;
  415. .splitLine{
  416. height: 50rpx;
  417. display: flex;
  418. align-items: center;
  419. justify-content: center;
  420. color: #8F8F8F;
  421. .splitLineFlex{
  422. flex: 1;
  423. display: flex;
  424. align-items: center;
  425. justify-content: center;
  426. .splitLineBox{
  427. width: calc(100% - 48rpx);
  428. height: 1rpx;
  429. background-color: #8F8F8F;
  430. }
  431. }
  432. }
  433. .page_item_info {
  434. margin-top: 10rpx;
  435. padding: 20rpx 16rpx;
  436. text-align: left;
  437. line-height: 60rpx;
  438. font-size: 30rpx;
  439. background: #fff;
  440. &.mt0{
  441. margin-top: 0;
  442. }
  443. .buildOrder{
  444. width: 258rpx;
  445. height: 72rpx;
  446. background: #49B856;
  447. border-radius: 6rpx;
  448. margin: 0 auto;
  449. color: #FFFFFF;
  450. display: flex;
  451. align-items: center;
  452. justify-content: center;
  453. font-size: 30rpx;
  454. }
  455. .page_item_info_title {
  456. font-weight: 700;
  457. &.btn {
  458. display: flex;
  459. button {
  460. font-size: 28rpx;
  461. color: #49b856;
  462. height: 50rpx;
  463. line-height: 50rpx;
  464. margin: 0;
  465. }
  466. }
  467. &.row{
  468. display: flex;
  469. align-items: center;
  470. justify-content: space-between;
  471. }
  472. text {
  473. font-weight: normal;
  474. &.red {
  475. color: red;
  476. }
  477. &.bold{
  478. font-weight: 700;
  479. }
  480. }
  481. }
  482. }
  483. }
  484. }
  485. </style>