patientInformationInfo.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <template>
  2. <view class="patientInformationInfo" v-if="Object.keys(infoDATA).length > 0">
  3. <view class="page_head">
  4. <view class="title">{{ infoDATA.patientName }}</view>
  5. <view class="patientCode">{{ infoDATA.patientCode }}</view>
  6. <view class="info">
  7. <view class="bedNum">
  8. <text class="info_h">床号</text>
  9. <text class="info_b">{{ infoDATA.bedNum || "-" }}</text>
  10. </view>
  11. <view :class="infoDATA.careLevel?'bedNum':'waitingCount'">
  12. <text class="info_h">待检查数</text>
  13. <text class="info_b">{{ infoDATA.watingCount }}</text>
  14. </view>
  15. <view class="bedNum" v-if="infoDATA.careLevel">
  16. <text class="info_h">护理等级</text>
  17. <text class="info_b">{{ infoDATA.careLevel.name }}</text>
  18. </view>
  19. <view class="waitingCount" v-if="infoDATA.illnessState">
  20. <text class="info_h">病情级别</text>
  21. <text class="info_b">{{ infoDATA.illnessState.name }}</text>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="page_item" v-for="item in infoDATA.inspects" :key="item.id">
  26. <view class="page_item_info">
  27. <view class="page_item_info_title">检查项目:<text>{{ item.inspectName || "-" }}</text></view>
  28. <view class="page_item_info_title">检查科室:<text>{{
  29. item.execDept ? item.execDept.dept : "-"
  30. }}</text></view>
  31. <view class="page_item_info_title btn">预约时间:<text>{{ item.yyTime || "-" }}</text><button
  32. @click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button></view>
  33. <view class="page_item_info_title">预约叫号:<text>{{ item.reservationNumber || "-" }}</text></view>
  34. <view class="page_item_info_title">是否紧急:<text
  35. :class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text>
  36. </view>
  37. </view>
  38. </view>
  39. <view v-if="!infoDATA.inspects || infoDATA.inspects.length == 0" class="zwsj">
  40. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  41. <view class="zwsj-txt">暂无检查信息</view>
  42. </view>
  43. <!-- 弹窗 -->
  44. <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></inspectRemoveModel>
  45. </view>
  46. </template>
  47. <script>
  48. import {
  49. get,
  50. post,
  51. SM,
  52. webHandle
  53. } from "../../http/http.js";
  54. export default {
  55. data() {
  56. return {
  57. options: {},
  58. infoDATA: {},
  59. // 弹窗model1
  60. models1: {
  61. disjunctor: false,
  62. },
  63. };
  64. },
  65. methods: {
  66. // 修改预约时间->知道了
  67. know1() {
  68. this.models1.disjunctor = false;
  69. },
  70. // 修改预约时间->确定
  71. ok1(data) {
  72. console.log(data);
  73. const { yyTime} = data;//暂时这样
  74. if (!yyTime) {
  75. //没有填写预约时间
  76. uni.showModal({
  77. title: "提示",
  78. content: "请填写预约时间!",
  79. showCancel: false,
  80. success: function(res) {
  81. if (res.confirm) {
  82. console.log("用户点击确定");
  83. } else if (res.cancel) {
  84. console.log("用户点击取消");
  85. }
  86. },
  87. });
  88. return;
  89. }
  90. this.models1.disjunctor = false;
  91. let postData = {
  92. inspectCode: this.currentInspect.inspectCode,
  93. yyTime
  94. };
  95. uni.showLoading({
  96. title: '加载中',
  97. mask: true,
  98. })
  99. post('/workerOrder/updateInspectYytime', postData).then(res => {
  100. uni.hideLoading();
  101. if (res.status == 200) {
  102. this.getInfo(this.options.patientCode);
  103. } else {
  104. uni.showToast({
  105. icon: "none",
  106. title: "修改失败",
  107. });
  108. }
  109. })
  110. },
  111. // 修改预约时间->取消
  112. cancel1() {
  113. this.models1.disjunctor = false;
  114. },
  115. // 修改预约时间
  116. changeYyTime(item) {
  117. this.currentInspect = item;
  118. this.models1 = {
  119. disjunctor: true,
  120. content: `您要修改[${item.inspectName||''}]的预约时间`,
  121. icon: "warn",
  122. operate: {
  123. ok: "确定",
  124. cancel: "取消",
  125. },
  126. };
  127. },
  128. // 请求详细页面的数据
  129. getInfo(patientCode) {
  130. uni.showLoading({
  131. title: "加载中",
  132. mask: true,
  133. });
  134. post("/nurse/workOrder/getPatientInspectInfo", {
  135. patientCode,
  136. }).then((res) => {
  137. uni.hideLoading();
  138. if (res.status == 200) {
  139. if (res.data.inspects && Array.isArray(res.data.inspects)) {
  140. res.data.inspects = res.data.inspects.map(v => {
  141. if (v.yyTime) {
  142. let [date, time] = v.yyTime.split(" ");
  143. v.yyTime = new Date(date).Format('yyyy-MM-dd') + " " + time.slice(0, -
  144. 3);
  145. }
  146. return v;
  147. })
  148. }
  149. this.infoDATA = res.data;
  150. } else {
  151. uni.showToast({
  152. icon: "none",
  153. title: "请求失败!",
  154. });
  155. }
  156. });
  157. },
  158. },
  159. onLoad(options) {
  160. this.options = options;
  161. this.getInfo(this.options.patientCode);
  162. // #ifdef APP-PLUS
  163. webHandle("no", "app");
  164. // #endif
  165. // #ifdef H5
  166. webHandle("no", "wx");
  167. // #endif
  168. },
  169. };
  170. </script>
  171. <style lang="less">
  172. .patientInformationInfo {
  173. padding: 0 20rpx;
  174. .zwsj {
  175. text-align: center;
  176. .zwsj-img {
  177. width: 560rpx;
  178. }
  179. .zwsj-txt {
  180. font-size: 36rpx;
  181. font-weight: 700;
  182. margin-top: 20rpx;
  183. text-align: center;
  184. }
  185. }
  186. .page_head {
  187. background-color: #49b856;
  188. color: #fff;
  189. .title {
  190. font-size: 48rpx;
  191. padding-top: 24rpx;
  192. text-align: center;
  193. }
  194. .patientCode {
  195. padding-bottom: 12rpx;
  196. font-size: 28rpx;
  197. text-align: center;
  198. }
  199. .info {
  200. padding-bottom: 24rpx;
  201. margin: 8rpx 0;
  202. height: 80rpx;
  203. display: flex;
  204. justify-content: center;
  205. align-items: center;
  206. .bedNum,
  207. .waitingCount {
  208. width: 300rpx;
  209. height: 100%;
  210. display: flex;
  211. flex-direction: column;
  212. justify-content: center;
  213. align-items: center;
  214. .info_h {
  215. font-size: 30rpx;
  216. }
  217. .info_b {
  218. font-size: 26rpx;
  219. }
  220. }
  221. .bedNum {
  222. position: relative;
  223. &:after {
  224. content: "";
  225. position: absolute;
  226. width: 4rpx;
  227. height: 50rpx;
  228. right: -2rpx;
  229. top: 15rpx;
  230. background-color: #fff;
  231. }
  232. }
  233. }
  234. }
  235. .page_item {
  236. margin-top: 16rpx;
  237. margin-bottom: 16rpx;
  238. background: #fff;
  239. border-radius: 8rpx;
  240. overflow: hidden;
  241. padding: 0 16rpx;
  242. border: 2rpx solid #e5e9ed;
  243. .page_item_info {
  244. padding: 20rpx 16rpx;
  245. text-align: left;
  246. line-height: 60rpx;
  247. font-size: 30rpx;
  248. .page_item_info_title {
  249. font-weight: 700;
  250. &.btn {
  251. display: flex;
  252. button {
  253. font-size: 28rpx;
  254. color: #49b856;
  255. height: 50rpx;
  256. line-height: 50rpx;
  257. margin: 0;
  258. }
  259. }
  260. text {
  261. font-weight: normal;
  262. &.red {
  263. color: red;
  264. }
  265. }
  266. }
  267. }
  268. }
  269. }
  270. </style>