outpatientStartSignIn.vue 5.4 KB

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