outpatientEndComplete.vue 5.3 KB

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