checkAfterBigScreen.vue 9.2 KB

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