continueScanning.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">{{scanCount}}</view>
  5. </view>
  6. <view class="Scanning_cont">
  7. <scroll-view scroll-y class="scrollContent">
  8. <view class="column">
  9. <view class="name">单号:</view>
  10. <view class="value">{{drugsBag.batchNo}}</view>
  11. </view>
  12. <view class="column">
  13. <view class="name">申请科室:</view>
  14. <view class="value">{{drugsBag.target ? drugsBag.target.dept : ''}}</view>
  15. </view>
  16. <view class="column">
  17. <view class="name">发药科室:</view>
  18. <view class="value">{{drugsBag.launch ? drugsBag.launch.dept : ''}}</view>
  19. </view>
  20. <view class="column">
  21. <view class="name">种类数:</view>
  22. <view class="value">{{drugsBag.drugsTypeCount}}</view>
  23. </view>
  24. <view class="column">
  25. <view class="name">药品数:</view>
  26. <view class="value">{{drugsBag.drugsCount}}</view>
  27. </view>
  28. </scroll-view>
  29. </view>
  30. <view class="foot_btn_spe">
  31. <view class="column">
  32. <view class="btn" @click="Scanning_again()">继续扫描</view>
  33. <view class="btn" @click="hand_again()">手动录入</view>
  34. </view>
  35. <view class="column">
  36. <view class="btn" @click="checkHandover()">核对交接</view>
  37. </view>
  38. </view>
  39. <!-- 手动查询药品弹窗 -->
  40. <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
  41. :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
  42. </handViewDrugsBag>
  43. </view>
  44. </template>
  45. <script>
  46. import {
  47. get,
  48. post,
  49. SM,
  50. webHandle
  51. } from "@/http/http.js";
  52. export default {
  53. data() {
  54. return {
  55. drugsBag: {}, //药包信息
  56. queryObj: {}, //路由传递过来的数据
  57. scanCount: '', //已扫描数量
  58. SMFlag: true,
  59. // 手动查询弹窗model
  60. drugbagModels: {
  61. disjunctor: false,
  62. },
  63. };
  64. },
  65. onShow() {
  66. this.SMFlag = true;
  67. },
  68. methods: {
  69. // 手动查询药品-确认
  70. drugbagOk(data) {
  71. console.log(data);
  72. if (!data.id) {
  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. }
  88. this.drugbagModels.disjunctor = false;
  89. this.hand_scanning_common(data.packid, 'hand');
  90. },
  91. // 手动查询药品-取消
  92. drugbagCancel() {
  93. this.drugbagModels.disjunctor = false;
  94. },
  95. // 手动查询药品弹窗
  96. showHandViewDrugsbag() {
  97. this.drugbagModels = {
  98. title: '填写发药单号',
  99. disjunctor: true,
  100. }
  101. },
  102. // 手动录入
  103. hand_again() {
  104. this.showHandViewDrugsbag();
  105. },
  106. // 核对交接
  107. checkHandover(){
  108. uni.navigateTo({
  109. url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${this.queryObj.drugsBagType}&orderId=${this.queryObj.orderId}`,
  110. });
  111. },
  112. // 继续扫描
  113. Scanning_again(isFlag = false) {
  114. if (!this.SMFlag) {
  115. return;
  116. }
  117. this.SMFlag = false;
  118. SM().then((ress1) => {
  119. this.hand_scanning_common(ress1, 'scan', isFlag);
  120. }).catch(err => {
  121. this.SMFlag = true;
  122. });
  123. },
  124. // 手动输入和扫码公共方法
  125. hand_scanning_common(ress1, type, isFlag = false) {
  126. // ----------------
  127. uni.showLoading({
  128. title: "加载中",
  129. mask: true,
  130. });
  131. //检验二维码的有效性
  132. post("/dept/scanning", {
  133. content: ress1,
  134. }).then((result) => {
  135. this.SMFlag = true;
  136. if (result.state == 200 || result.state == 201) {
  137. let codes = result.code;
  138. if (codes) {
  139. this.input_common(ress1, type, isFlag);
  140. } else {
  141. uni.hideLoading();
  142. }
  143. } else {
  144. uni.hideLoading();
  145. uni.showToast({
  146. icon: "none",
  147. title: result.info || "接口获取数据失败!",
  148. });
  149. }
  150. });
  151. // ------------------------------
  152. },
  153. // 录入到工单
  154. input_common(ress1, type, isFlag = false){
  155. uni.showLoading({
  156. title: "加载中",
  157. mask: true,
  158. });
  159. post("/transflow/scanBind", { type: this.queryObj.drugsBagType, orderId: this.queryObj.orderId, code: ress1 }).then((ress) => {
  160. uni.hideLoading();
  161. if (ress.state == 200) {
  162. if(ress.data.msg){
  163. uni.showToast({
  164. icon: "none",
  165. title: ress.data.msg || "接口获取数据失败!",
  166. });
  167. }else{
  168. uni.redirectTo({
  169. url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${this.queryObj.drugsBagType}&orderId=${this.queryObj.orderId}&scanOrHand=${type}&drugsBagId=${this.queryObj.drugsBagId}&orderStateValue=${this.queryObj.orderStateValue}`,
  170. });
  171. }
  172. } else {
  173. uni.showToast({
  174. icon: "none",
  175. title: ress.msg || "接口获取数据失败!",
  176. });
  177. }
  178. });
  179. },
  180. //获取页面信息
  181. getInfo(){
  182. uni.showLoading({
  183. title: "加载中",
  184. mask: true,
  185. });
  186. post(`/transflow/scanInfo`, {type: this.queryObj.drugsBagType, id: +this.queryObj.drugsBagId, orderStateValue: this.queryObj.orderStateValue, orderId: +this.queryObj.orderId}).then(res => {
  187. uni.hideLoading();
  188. if(res.state == 200){
  189. if(res.data){
  190. this.scanCount = res.data.scanCount;
  191. this.drugsBag = res.data.dto || {};
  192. }
  193. }else{
  194. uni.showToast({
  195. icon: "none",
  196. title: res.msg || "接口获取数据失败!",
  197. });
  198. }
  199. })
  200. },
  201. },
  202. onLoad(options) {
  203. console.log(options, "options");
  204. this.queryObj = options;
  205. this.getInfo();
  206. // #ifdef APP-PLUS
  207. webHandle("no", "app");
  208. // #endif
  209. // #ifdef H5
  210. webHandle("no", "wx");
  211. // #endif
  212. },
  213. };
  214. </script>
  215. <style lang="less" scoped>
  216. .Scanning_Result {
  217. background: #FAFBFD;
  218. padding: 0 24rpx;
  219. display: flex;
  220. flex-direction: column;
  221. height: 100vh;
  222. .Scanning_top {
  223. margin: 24rpx auto;
  224. .Scanning_top_icon {
  225. font-size: 140rpx;
  226. color: #FF0000;
  227. font-weight: bold;
  228. }
  229. }
  230. .Scanning_cont {
  231. flex: 1;
  232. min-height: 0;
  233. display: flex;
  234. flex-direction: column;
  235. .scrollContent{
  236. flex: 1;
  237. min-height: 0;
  238. }
  239. .column{
  240. display: flex;
  241. justify-content: center;
  242. align-items: center;
  243. font-size: 30rpx;
  244. margin-bottom: 32rpx;
  245. .name{
  246. font-weight: bold;
  247. word-break: break-all;
  248. flex-shrink: 0;
  249. }
  250. .value{
  251. word-break: break-all;
  252. }
  253. }
  254. }
  255. .foot_btn_spe {
  256. margin: 24rpx 0;
  257. display: flex;
  258. flex-direction: column;
  259. align-items: center;
  260. gap: 24rpx;
  261. font-weight: bold;
  262. .column{
  263. width: 100%;
  264. height: 78rpx;
  265. display: flex;
  266. align-items: center;
  267. justify-content: space-between;
  268. gap: 24rpx;
  269. .btn {
  270. height: 100%;
  271. flex: 1;
  272. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  273. color: #fff;
  274. border-radius: 4rpx;
  275. font-size: 30rpx;
  276. display: flex;
  277. justify-content: center;
  278. align-items: center;
  279. }
  280. }
  281. }
  282. }
  283. </style>