outpatientEndComplete.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. <view class="text1"> 服务完成 </view>
  7. </view>
  8. <view class="Scanning_top_text">
  9. <view class="red">您服务{{patient}}{{orderList.length}}项服务</view>
  10. <strong class="red">请您确认患者的所有资料物品并完成交接!</strong>
  11. </view>
  12. </view>
  13. <view class="Scanning_cont">
  14. <view class="Scanning_cont_list">
  15. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
  16. <view class="Scanning_cont_list_item" v-for="item in orderList" :key="item.id">
  17. <view class="name">
  18. {{item.taskType ? item.taskType.taskName : ''}}
  19. </view>
  20. <view class="value">
  21. {{item.completeDateTime | formatDate('yyyy-MM-dd hh:mm')}}
  22. </view>
  23. </view>
  24. </scroll-view>
  25. </view>
  26. </view>
  27. <view class="foot_btn">
  28. <view class="btn" @click="goToIndex()"> 知道了 </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. import {
  34. get,
  35. post,
  36. SM,
  37. webHandle
  38. } from "../../../http/http.js";
  39. export default {
  40. data() {
  41. return {
  42. patient: '',
  43. infoData: {},
  44. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  45. queryObj: {}, //路由传递过来的数据
  46. orderList: [],
  47. };
  48. },
  49. methods: {
  50. goToIndex(){
  51. uni.navigateTo({
  52. url: `/pages/receiptpage/receiptpage`,
  53. });
  54. },
  55. },
  56. onLoad(options) {
  57. console.log(options, "result");
  58. this.queryObj = options;
  59. if(options.model){
  60. this.infoData = JSON.parse(options.model);
  61. this.orderList = this.infoData.orderList || [];
  62. this.patient = this.infoData.patient;
  63. }
  64. // #ifdef APP-PLUS
  65. webHandle("no", "app");
  66. // #endif
  67. // #ifdef H5
  68. webHandle("no", "wx");
  69. // #endif
  70. },
  71. };
  72. </script>
  73. <style lang="less" scoped>
  74. .Scanning_Result {
  75. height: 100vh;
  76. display: flex;
  77. flex-direction: column;
  78. background-color: #fff;
  79. .Scanning_top {
  80. flex-shrink: 0;
  81. .Scanning_top_icon {
  82. padding-top: 26rpx;
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: center;
  86. align-items: center;
  87. .cubeic-ok {
  88. font-size: 140rpx;
  89. color: #35b34a;
  90. }
  91. .text1 {
  92. margin-top: 30rpx;
  93. font-size: 40rpx;
  94. font-weight: bold;
  95. }
  96. }
  97. .Scanning_top_text{
  98. text-align: center;
  99. font-size: 30rpx;
  100. font-weight: bold;
  101. padding: 8rpx 0 23rpx 0;
  102. }
  103. }
  104. .Scanning_cont {
  105. flex: 1;
  106. min-height: 0;
  107. display: flex;
  108. flex-direction: column;
  109. margin: 0 45rpx;
  110. .Scanning_cont_head{
  111. flex-shrink: 0;
  112. height: 78rpx;
  113. display: flex;
  114. border-top: 1rpx solid #EEEEEE;
  115. border-bottom: 1rpx solid #EEEEEE;
  116. .Scanning_cont_head_item{
  117. flex: 1;
  118. font-size: 32rpx;
  119. font-weight: bold;
  120. display: flex;
  121. justify-content: center;
  122. align-items: center;
  123. position: relative;
  124. &.active{
  125. color: #49B856;
  126. &::before{
  127. content: '';
  128. width: 70rpx;
  129. height: 10rpx;
  130. background-color: #49B856;
  131. position: absolute;
  132. left: 50%;
  133. bottom: 0;
  134. transform: translateX(-50%);
  135. border-radius: 6rpx;
  136. }
  137. }
  138. &::after{
  139. content: '';
  140. width: 2rpx;
  141. height: 44rpx;
  142. background-color: #D1D1D1;
  143. position: absolute;
  144. right: 0;
  145. top: 50%;
  146. transform: translateY(-50%);
  147. }
  148. &:last-of-type::after{
  149. opacity: 0;
  150. }
  151. }
  152. }
  153. .Scanning_cont_list{
  154. flex: 1;
  155. min-height: 0;
  156. display: flex;
  157. flex-direction: column;
  158. .Scanning_cont_list_scroll{
  159. flex: 1;
  160. min-height: 0;
  161. border: 1rpx solid #E9E9E9;
  162. }
  163. .Scanning_cont_list_item{
  164. height: 63rpx;
  165. display: flex;
  166. align-items: center;
  167. font-size: 30rpx;
  168. border-bottom: 2rpx dashed #D3D3D3;
  169. border-top: none;
  170. margin: 0 18rpx;
  171. &:last-of-type{
  172. border-bottom: 1rpx dashed #E9E9E9;
  173. }
  174. &.Scanning_cont_list_head{
  175. font-weight: bold;
  176. font-size: 28rpx;
  177. border-top: 1rpx solid #272727;
  178. flex-shrink: 0;
  179. }
  180. .name,
  181. .value{
  182. display: flex;
  183. align-items: center;
  184. height: 100%;
  185. font-weight: bold;
  186. line-height: 1;
  187. }
  188. .name{
  189. flex: 1;
  190. }
  191. .value {
  192. justify-content: flex-end;
  193. }
  194. }
  195. }
  196. }
  197. .foot_btn {
  198. margin: 30rpx;
  199. flex-shrink: 0;
  200. line-height: 88rpx;
  201. display: flex;
  202. justify-content: center;
  203. .btn {
  204. height: 88rpx;
  205. flex: 1;
  206. margin-right: 1%;
  207. background-image: linear-gradient(to right, #72c172, #3bb197);
  208. color: #fff;
  209. border-radius: 8rpx;
  210. font-size: 34rpx;
  211. font-weight: bold;
  212. text-align: center;
  213. &:last-of-type{
  214. margin-right: 0;
  215. }
  216. }
  217. }
  218. }
  219. </style>