checkAfterBigScreen.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. <template>
  2. <view class="checkAfterScanning">
  3. <view class="checkAfterScanning_title">标本核对</view>
  4. <view class="page_item_cont">
  5. <view class="page_item_cont_T">
  6. <view class="page_item_cont_title">
  7. <view> 工单数量 </view>
  8. <view class="text_big">{{info.gdNum}}</view>
  9. </view>
  10. <view class="page_item_cont_title">
  11. <view> 标本总数 </view>
  12. <view class="text_big" @click="goToSpeDetail()"><text class="underline">{{info.total}}</text>只</view>
  13. </view>
  14. <view class="page_item_cont_title">
  15. <view> 临床科室 </view>
  16. <view class="text_big">{{info.LCDept}}</view>
  17. </view>
  18. <view class="page_item_cont_title2">
  19. 检验科室标本数量:
  20. </view>
  21. <view class="page_item_cont_title" v-for="(item, i) in info.data" :key="i">
  22. <view>{{item[1]}}</view>
  23. <view class="text_big" @click="goToSpeDetail(item[1],item[2])"><text class="underline">{{item[3]}}</text>只
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="foot_btn_spe">
  29. <view class="btn1" @click="allStart()">核对完成</view>
  30. <view class="btn3" @click="goBack">取消</view>
  31. </view>
  32. <!-- 填写交接人账号弹窗 -->
  33. <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  34. @cancel="hosCancel">
  35. </selectAccount>
  36. </view>
  37. </template>
  38. <script>
  39. import {
  40. get,
  41. post,
  42. SM,
  43. webHandle
  44. } from "../../http/http.js";
  45. export default {
  46. data() {
  47. return {
  48. // 填写交接人账号弹窗model
  49. hosModels: {
  50. disjunctor: false,
  51. },
  52. info: {},
  53. queryObj: {}, //路由传递过来的数据
  54. };
  55. },
  56. methods: {
  57. // 填写交接人账号-确认
  58. hosOk(data) {
  59. console.log(data);
  60. const {
  61. accountName,
  62. account,
  63. accountId
  64. } = data;
  65. if (!accountName && !account) {
  66. //没有填写交接人
  67. uni.showModal({
  68. title: "提示",
  69. content: "请填写交接人账号!",
  70. showCancel: false,
  71. success: function(res) {
  72. if (res.confirm) {
  73. console.log("用户点击确定");
  74. } else if (res.cancel) {
  75. console.log("用户点击取消");
  76. }
  77. },
  78. });
  79. return;
  80. } else if ((!accountName && account) || (accountName && !account)) {
  81. //没有填写交接人
  82. uni.showModal({
  83. title: "提示",
  84. content: "请填写正确的交接人账号!",
  85. showCancel: false,
  86. success: function(res) {
  87. if (res.confirm) {
  88. console.log("用户点击确定");
  89. } else if (res.cancel) {
  90. console.log("用户点击取消");
  91. }
  92. },
  93. });
  94. return;
  95. }
  96. this.hosModels.disjunctor = false;
  97. this.orderDeptHandler(false, data);
  98. },
  99. // 填写交接人账号-取消
  100. hosCancel() {
  101. this.hosModels.disjunctor = false;
  102. },
  103. // 填写交接人账号弹窗
  104. showSelectAccount() {
  105. this.hosModels = {
  106. title: "填写交接人账号",
  107. disjunctor: true,
  108. };
  109. },
  110. // 获取核对信息
  111. getInfo(gdIds) {
  112. gdIds = JSON.parse(gdIds).toString();
  113. uni.showLoading({
  114. title: '加载中',
  115. mask: true
  116. });
  117. let postData = {
  118. gdIds,
  119. trueBigScanner:['666'],
  120. };
  121. post("/api/specimensCheck", postData).then((res) => {
  122. uni.hideLoading();
  123. if (res.status == 200) {
  124. console.log(res)
  125. res.LCDept = res.LCDept.join(',');
  126. this.info = res;
  127. } else {
  128. uni.showToast({
  129. icon: "none",
  130. title: "请求失败!",
  131. });
  132. }
  133. })
  134. },
  135. // 取消
  136. goBack() {
  137. uni.navigateTo({
  138. url: "../receiptpage/receiptpage",
  139. });
  140. },
  141. // 跳转到已扫描标本详情页
  142. goToSpeDetail(deptName='', qrCode='') {
  143. uni.navigateTo({
  144. url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${this.queryObj.ids}&deptCode=${qrCode}&isScan=1&specimensCheck=1&noScan=1`,
  145. });
  146. },
  147. //核对完成
  148. allStart() {
  149. this.orderDeptHandler(true);
  150. },
  151. //科室签到
  152. //bigScanner----判断是否需要交接人
  153. //accountObj----弹窗填写的交接人信息
  154. orderDeptHandler(bigScanner, accountObj) {
  155. let type = "orderSign/" + this.queryObj.code;
  156. let list = {
  157. ids: JSON.parse(this.queryObj.ids),
  158. };
  159. bigScanner && (list.bigScanner = ['666']);
  160. if (accountObj) {
  161. list.handover = [accountObj.accountId];
  162. }
  163. uni.showLoading({
  164. title: "加载中",
  165. mask: true,
  166. });
  167. post("/workerOrder/" + type, list).then((res) => {
  168. uni.hideLoading();
  169. if (res.status == 200) {
  170. uni.navigateTo({
  171. url: "../receiptpage/receiptpage",
  172. });
  173. } else if (res.status == "0000") {
  174. this.showSelectAccount();
  175. } else {
  176. this.flag = true;
  177. uni.navigateTo({
  178. url: `../scanning_djEnd/scanning_djEnd?type=specimen&type1=${
  179. res.type
  180. }&code=${this.queryObj.code}&dept=${res.dept}&ids=${this.queryObj.ids}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  181. });
  182. }
  183. });
  184. },
  185. },
  186. onLoad(options) {
  187. console.log(options);
  188. this.queryObj = options;
  189. this.getInfo(this.queryObj.ids);
  190. // #ifdef APP-PLUS
  191. webHandle("no", "app");
  192. // #endif
  193. // #ifdef H5
  194. webHandle("no", "wx");
  195. // #endif
  196. },
  197. };
  198. </script>
  199. <style lang="less" scoped>
  200. .checkAfterScanning {
  201. .checkAfterScanning_title {
  202. padding: 50rpx 0;
  203. font-size: 46rpx;
  204. font-weight: 550;
  205. text-align: center;
  206. border-bottom: 1px solid #ccc;
  207. }
  208. .page_item_cont {
  209. min-height: 90rpx;
  210. padding: 0 20rpx;
  211. text-align: left;
  212. position: relative;
  213. .text_big {
  214. font-size: 32rpx;
  215. font-weight: 700;
  216. margin-top: 10rpx;
  217. .underline {
  218. text-decoration: underline;
  219. }
  220. }
  221. .page_item_cont_T {
  222. padding-top: 28rpx;
  223. padding-bottom: 28rpx;
  224. font-size: 28rpx;
  225. .page_item_cont_title {
  226. height: 100%;
  227. font-size: 32rpx;
  228. display: flex;
  229. justify-content: space-between;
  230. align-items: center;
  231. }
  232. .page_item_cont_title2 {
  233. margin-top: 36rpx;
  234. margin-bottom: 18rpx;
  235. height: 100%;
  236. font-size: 32rpx;
  237. font-weight: bold;
  238. display: flex;
  239. align-items: center;
  240. }
  241. }
  242. .page_item_cont_B {
  243. padding-top: 28rpx;
  244. margin-bottom: 28rpx;
  245. .page_item_cont_title {
  246. font-size: 32rpx;
  247. display: flex;
  248. justify-content: space-between;
  249. }
  250. .page_item_cont_title1 {
  251. height: 60rpx;
  252. line-height: 60rpx;
  253. font-size: 32rpx;
  254. padding-left: 64rpx;
  255. }
  256. }
  257. }
  258. .foot_btn {
  259. line-height: 88rpx;
  260. height: 100rpx;
  261. margin-top: 40rpx;
  262. display: flex;
  263. justify-content: center;
  264. .btn1,
  265. .btn2,
  266. .btn3 {
  267. height: 88rpx;
  268. flex: 1;
  269. margin: 0 1%;
  270. background-image: linear-gradient(to right, #72c172, #3bb197);
  271. color: #fff;
  272. border-radius: 8rpx;
  273. font-size: 32rpx;
  274. margin-top: 16rpx;
  275. text-align: center;
  276. }
  277. }
  278. .foot_btn_spe {
  279. line-height: 88rpx;
  280. height: 100rpx;
  281. margin-top: 40rpx;
  282. text-align: center;
  283. display: flex;
  284. justify-content: space-between;
  285. flex-wrap: wrap;
  286. &::after {
  287. content: '';
  288. flex: 1;
  289. }
  290. view {
  291. height: 88rpx;
  292. width: 48%;
  293. margin: 0 1%;
  294. background-image: linear-gradient(to right, #72c172, #3bb197);
  295. color: #fff;
  296. border-radius: 8rpx;
  297. font-size: 32rpx;
  298. margin-top: 16rpx;
  299. }
  300. }
  301. }
  302. </style>