specimenChecking.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. <template>
  2. <view class="Receipt_infopage">
  3. <view class="title">请您确认一下科室标本数量!</view>
  4. <view class="page_item_wrap" v-for="item in msg.deptDataList" :key="item[0]">
  5. <view class="page_item">
  6. <view class="page_item_top">
  7. <view class="page_item_top-inner">
  8. <view class="page_item_top_L">
  9. <view class="L_text">{{item[1]}}</view>
  10. </view>
  11. <view class="page_item_top_R">
  12. <view class="L_iocn"></view>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="page_item_cont">
  17. <view class="page_item_cont_T">
  18. <view class="page_item_cont_title">
  19. <view>
  20. 标本数量
  21. </view>
  22. <view class="text_big">{{item[2]}}</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="L"></view>
  27. <view class="R"></view>
  28. </view>
  29. <view class="L-l"></view>
  30. <view class="R-l"></view>
  31. </view>
  32. <view class="foot_btn2">
  33. <view class="btn2" @click="createOrder">确认数量并建单</view>
  34. <view class="btn2" @click="goto()">知道了</view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. import {
  40. get,
  41. webHandle
  42. } from "../../http/http.js";
  43. export default {
  44. data() {
  45. return {
  46. msg: {}, //页面展示信息
  47. targetDeptShow: [], //目标科室
  48. };
  49. },
  50. methods: {
  51. // 知道了
  52. goto() {
  53. uni.navigateTo({
  54. url: `../../pages/receiptpage/receiptpage`,
  55. });
  56. },
  57. // 新建工单并签到
  58. createOrder() {
  59. get(`/workerOrder/createQuickOrder/${this.msg.id}`, {}).then((res) => {
  60. console.log(res)
  61. if (res.status == 200) {
  62. if (res.type === 'plan-spe-ddd-2') {
  63. //需要扫描标本
  64. uni.navigateTo({
  65. url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined`,
  66. });
  67. } else {
  68. uni.navigateTo({
  69. url: "../receiptpage/receiptpage",
  70. });
  71. }
  72. } else {
  73. uni.showToast({
  74. icon: "none",
  75. title: "请求失败!",
  76. });
  77. }
  78. });
  79. },
  80. },
  81. onLoad(options) {
  82. console.log(options, "快捷建单");
  83. this.msg = JSON.parse(options.infoDATA);
  84. this.targetDeptShow = this.msg.targetDeptShow.split(",");
  85. // #ifdef APP-PLUS
  86. webHandle("no", "app");
  87. // #endif
  88. // #ifdef H5
  89. webHandle("no", "wx");
  90. // #endif
  91. },
  92. };
  93. </script>
  94. <style lang="less">
  95. .Receipt_infopage {
  96. padding-bottom: 100rpx;
  97. .title {
  98. font-size: 48rpx;
  99. margin-top: 24rpx;
  100. margin-bottom: 24rpx;
  101. text-align: center;
  102. }
  103. .page_item_wrap {
  104. width: 100%;
  105. height: auto;
  106. box-sizing: border-box;
  107. position: relative;
  108. margin-bottom: 16rpx;
  109. .page_item {
  110. margin-top: 16rpx;
  111. margin-bottom: 124rpx;
  112. background: #fff;
  113. border-radius: 8rpx;
  114. margin: 0 20rpx;
  115. border: 2rpx solid #e5e9ed;
  116. position: relative;
  117. overflow: hidden;
  118. padding: 0 16rpx;
  119. .L {
  120. width: 40rpx;
  121. height: 40rpx;
  122. border-radius: 50%;
  123. background: #f9fafb;
  124. position: absolute;
  125. left: -20rpx;
  126. top: 68rpx;
  127. border: 2rpx solid #e5e9ed;
  128. }
  129. .R {
  130. width: 40rpx;
  131. height: 40rpx;
  132. border-radius: 50%;
  133. background: #f9fafb;
  134. position: absolute;
  135. float: right;
  136. right: -20rpx;
  137. top: 68rpx;
  138. border: 2rpx solid #e5e9ed;
  139. }
  140. .starting {
  141. width: 50rpx;
  142. height: 50rpx;
  143. color: #fff;
  144. background: #49b856;
  145. display: inline-block;
  146. border-radius: 50%;
  147. text-align: center;
  148. line-height: 46rpx;
  149. font-size: 32rpx;
  150. margin-right: 6rpx;
  151. }
  152. .End {
  153. width: 50rpx;
  154. height: 50rpx;
  155. color: #fff;
  156. background: #39b199;
  157. display: inline-block;
  158. border-radius: 50%;
  159. text-align: center;
  160. line-height: 46rpx;
  161. font-size: 32rpx;
  162. margin-right: 6rpx;
  163. }
  164. .page_item_top {
  165. height: 88rpx;
  166. border-bottom: 2rpx dashed #e5e9ed;
  167. padding: 0 16rpx;
  168. .page_item_top-inner {
  169. display: flex;
  170. justify-content: space-between;
  171. align-items: center;
  172. height: 100%;
  173. .page_item_top_L {
  174. .emergencys {
  175. background: #ff3b53 !important;
  176. width: 124rpx !important;
  177. }
  178. .emergency {
  179. background: #ff3b53 !important;
  180. }
  181. .emergency1 {
  182. background: #49b856 !important;
  183. }
  184. .page_item_cont_start {
  185. text-align: center;
  186. height: 44rpx;
  187. width: 104rpx;
  188. line-height: 44rpx;
  189. border-radius: 8rpx;
  190. background: #49b856;
  191. color: #fff;
  192. display: inline-block;
  193. }
  194. .L_time {
  195. color: #6cc076;
  196. font-size: 32rpx;
  197. }
  198. .L_text {
  199. font-size: 32rpx;
  200. font-weight: 700;
  201. }
  202. }
  203. .page_item_top_R {
  204. font-size: 32rpx;
  205. .L_iocn {
  206. color: rgb(7, 134, 60);
  207. font-size: 36rpx;
  208. font-weight: 700;
  209. }
  210. }
  211. }
  212. }
  213. .page_item_cont {
  214. min-height: 90rpx;
  215. padding: 0 16rpx;
  216. text-align: left;
  217. position: relative;
  218. .text_big {
  219. font-size: 32rpx;
  220. font-weight: 700;
  221. margin-top: 10rpx;
  222. p {
  223. font-weight: 700;
  224. line-height: 1.5;
  225. }
  226. }
  227. .page_item_cont_T {
  228. padding-top: 28rpx;
  229. font-size: 28rpx;
  230. .page_item_cont_title {
  231. height: 100%;
  232. font-size: 32rpx;
  233. display: flex;
  234. justify-content: space-between;
  235. }
  236. }
  237. .page_item_cont_B {
  238. padding-top: 28rpx;
  239. margin-bottom: 28rpx;
  240. .page_item_cont_title {
  241. font-size: 32rpx;
  242. display: flex;
  243. justify-content: space-between;
  244. }
  245. .page_item_cont_title1 {
  246. height: 60rpx;
  247. line-height: 60rpx;
  248. font-size: 32rpx;
  249. padding-left: 64rpx;
  250. }
  251. }
  252. }
  253. .page_item_foot {
  254. border-top: 2rpx dashed #e5e9ed;
  255. border-bottom: 2rpx dashed #e5e9ed;
  256. padding: 28rpx 16rpx;
  257. text-align: left;
  258. .page_item_foot_text {
  259. font-size: 32rpx;
  260. margin-bottom: 20rpx;
  261. .text1 {
  262. color: rgb(102, 102, 102);
  263. }
  264. .text2 {
  265. float: right;
  266. font-weight: 700;
  267. }
  268. }
  269. }
  270. #infos {
  271. display: none;
  272. }
  273. .page_item_infos {
  274. padding-bottom: 20rpx;
  275. border-bottom: 2rpx dashed #e5e9ed;
  276. .page_item_info2 {
  277. text-align: left;
  278. line-height: 60rpx;
  279. font-size: 32rpx;
  280. padding-left: 16rpx;
  281. .page_item_foot_text {
  282. font-size: 32rpx;
  283. margin-bottom: 20rpx;
  284. .text1 {
  285. color: rgb(102, 102, 102);
  286. }
  287. .text2 {
  288. float: right;
  289. font-weight: 700;
  290. }
  291. }
  292. }
  293. }
  294. }
  295. .L-l {
  296. width: 2rpx;
  297. height: 40rpx;
  298. background: #f9fafb;
  299. position: absolute;
  300. left: 20rpx;
  301. top: 72rpx;
  302. }
  303. .R-l {
  304. width: 2rpx;
  305. height: 40rpx;
  306. background: #f9fafb;
  307. position: absolute;
  308. right: 20rpx;
  309. top: 72rpx;
  310. }
  311. }
  312. .foot_btn2 {
  313. position: fixed;
  314. bottom: 0;
  315. width: 100vw;
  316. padding: 0 20rpx;
  317. box-sizing: border-box;
  318. line-height: 66rpx;
  319. height: 100rpx;
  320. border-top: 2rpx solid #e5e9ed;
  321. background: #f9fafb;
  322. text-align: center;
  323. display: flex;
  324. justify-content: center;
  325. align-items: center;
  326. .btn2 {
  327. height: 66rpx;
  328. flex: 1;
  329. margin: 16rpx 16rpx 0;
  330. background-image: linear-gradient(to right, #72c172, #3bb197);
  331. color: #fff;
  332. border-radius: 8rpx;
  333. font-size: 32rpx;
  334. }
  335. }
  336. }
  337. </style>