checkAfterBigScreen.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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 class="text_title"> 临床科室 </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. };
  120. post("/api/specimensCheck", postData).then((res) => {
  121. uni.hideLoading();
  122. if (res.status == 200) {
  123. console.log(res)
  124. res.LCDept = res.LCDept.join(',');
  125. this.info = res;
  126. } else {
  127. uni.showToast({
  128. icon: "none",
  129. title: "请求失败!",
  130. });
  131. }
  132. })
  133. },
  134. // 取消
  135. goBack() {
  136. uni.navigateTo({
  137. url: "../receiptpage/receiptpage",
  138. });
  139. },
  140. // 跳转到已扫描标本详情页
  141. goToSpeDetail(deptName='', qrCode='') {
  142. uni.navigateTo({
  143. url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${this.queryObj.ids}&deptCode=${qrCode}&isScan=1&specimensCheck=1&noScan=1`,
  144. });
  145. },
  146. //核对完成
  147. allStart() {
  148. this.orderDeptHandler(true);
  149. },
  150. //科室签到
  151. //bigScanner----判断是否需要交接人
  152. //accountObj----弹窗填写的交接人信息
  153. orderDeptHandler(bigScanner, accountObj) {
  154. let type = "orderSign/" + this.queryObj.code;
  155. let list = {
  156. ids: JSON.parse(this.queryObj.ids),
  157. };
  158. bigScanner && (list.bigScanner = ['666']);
  159. if (accountObj) {
  160. list.handover = [accountObj.accountId];
  161. }
  162. uni.showLoading({
  163. title: "加载中",
  164. mask: true,
  165. });
  166. post("/workerOrder/" + type, list).then((res) => {
  167. uni.hideLoading();
  168. if (res.status == 200) {
  169. uni.navigateTo({
  170. url: "../receiptpage/receiptpage",
  171. });
  172. uni.showToast({
  173. title: '工单完成!',
  174. icon: 'success',
  175. duration: 3000,
  176. });
  177. } else if (res.status == "0000") {
  178. this.showSelectAccount();
  179. } else {
  180. this.flag = true;
  181. uni.navigateTo({
  182. url: `../scanning_djEnd/scanning_djEnd?type=specimen&type1=${
  183. res.type
  184. }&code=${this.queryObj.code}&dept=${res.dept}&ids=${this.queryObj.ids}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  185. });
  186. }
  187. });
  188. },
  189. },
  190. onLoad(options) {
  191. console.log(options);
  192. this.queryObj = options;
  193. this.getInfo(this.queryObj.ids);
  194. // #ifdef APP-PLUS
  195. webHandle("no", "app");
  196. // #endif
  197. // #ifdef H5
  198. webHandle("no", "wx");
  199. // #endif
  200. },
  201. };
  202. </script>
  203. <style lang="less" scoped>
  204. .checkAfterScanning {
  205. .checkAfterScanning_title {
  206. padding: 50rpx 0;
  207. font-size: 46rpx;
  208. font-weight: 550;
  209. text-align: center;
  210. border-bottom: 1px solid #ccc;
  211. }
  212. .page_item_cont {
  213. min-height: 90rpx;
  214. padding: 0 20rpx;
  215. text-align: left;
  216. position: relative;
  217. .text_title{
  218. flex-shrink: 0;
  219. margin-right: 16rpx;
  220. }
  221. .text_big {
  222. font-size: 32rpx;
  223. font-weight: 700;
  224. margin-top: 10rpx;
  225. .underline {
  226. text-decoration: underline;
  227. }
  228. }
  229. .page_item_cont_T {
  230. padding-top: 28rpx;
  231. padding-bottom: 28rpx;
  232. font-size: 28rpx;
  233. .page_item_cont_title {
  234. height: 100%;
  235. font-size: 32rpx;
  236. display: flex;
  237. justify-content: space-between;
  238. align-items: center;
  239. }
  240. .page_item_cont_title2 {
  241. margin-top: 36rpx;
  242. margin-bottom: 18rpx;
  243. height: 100%;
  244. font-size: 32rpx;
  245. font-weight: bold;
  246. display: flex;
  247. align-items: center;
  248. }
  249. }
  250. .page_item_cont_B {
  251. padding-top: 28rpx;
  252. margin-bottom: 28rpx;
  253. .page_item_cont_title {
  254. font-size: 32rpx;
  255. display: flex;
  256. justify-content: space-between;
  257. }
  258. .page_item_cont_title1 {
  259. height: 60rpx;
  260. line-height: 60rpx;
  261. font-size: 32rpx;
  262. padding-left: 64rpx;
  263. }
  264. }
  265. }
  266. .foot_btn {
  267. line-height: 88rpx;
  268. height: 100rpx;
  269. margin-top: 40rpx;
  270. display: flex;
  271. justify-content: center;
  272. .btn1,
  273. .btn2,
  274. .btn3 {
  275. height: 88rpx;
  276. flex: 1;
  277. margin: 0 1%;
  278. background-image: linear-gradient(to right, #72c172, #3bb197);
  279. color: #fff;
  280. border-radius: 8rpx;
  281. font-size: 32rpx;
  282. margin-top: 16rpx;
  283. text-align: center;
  284. }
  285. }
  286. .foot_btn_spe {
  287. line-height: 88rpx;
  288. height: 100rpx;
  289. margin-top: 40rpx;
  290. text-align: center;
  291. display: flex;
  292. justify-content: space-between;
  293. flex-wrap: wrap;
  294. &::after {
  295. content: '';
  296. flex: 1;
  297. }
  298. view {
  299. height: 88rpx;
  300. width: 48%;
  301. margin: 0 1%;
  302. background-image: linear-gradient(to right, #72c172, #3bb197);
  303. color: #fff;
  304. border-radius: 8rpx;
  305. font-size: 32rpx;
  306. margin-top: 16rpx;
  307. }
  308. }
  309. }
  310. </style>