medicalWasteBind.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. 请填写以下信息绑定条码
  9. </view>
  10. </view>
  11. <view class="Scanning_cont yf">
  12. <view class="Scanning_cont_list">
  13. <view>序号:{{queryObj.qrcode}}</view>
  14. <view class="red">{{id ? '已绑定' : ''}}</view>
  15. </view>
  16. <view class="Scanning_cont_list">
  17. <view class="Scanning_cont_list_title">
  18. 科室:
  19. </view>
  20. <view class="Scanning_cont_list_desc" v-if="disabledDept">
  21. <text>{{deptName}}</text>
  22. </view>
  23. <view class="Scanning_cont_list_desc" v-else>
  24. <input disabled class="deptInput" placeholder="请搜索科室" placeholder-style="color:#C3BFBF;font-size:28rpx;padding:8rpx;line-height:1;" v-model="deptName" />
  25. <view class="mask" @click="changeDept"></view>
  26. <text class="icon_transport transport-sousuo"></text>
  27. <text class="newicon newicon-saoma" @click="scanDept"></text>
  28. </view>
  29. </view>
  30. <view class="Scanning_cont_list">
  31. <view class="Scanning_cont_list_title">
  32. 医废类型:
  33. </view>
  34. <view class="Scanning_cont_list_desc">
  35. <picker @change="bindMedicalWasteType" :value="medicalWasteTypeIndex" :range="medicalWasteTypes" range-key="typeName">
  36. <view class="typeInput">{{medicalWasteTypes[medicalWasteTypeIndex] ? medicalWasteTypes[medicalWasteTypeIndex].typeName : ''}}</view>
  37. <text class="newicon newicon-xiala1"></text>
  38. </picker>
  39. </view>
  40. </view>
  41. <view class="Scanning_cont_list">
  42. <view class="Scanning_cont_list_title">
  43. 重量:
  44. </view>
  45. <view class="Scanning_cont_list_desc">
  46. <input class="deptInput" type="digit" placeholder-style="color:#C3BFBF;font-size:28rpx;padding:8rpx;line-height:1;" @blur="blurWeight" v-model="weight" />kg
  47. </view>
  48. </view>
  49. <view class="Scanning_cont_list">
  50. <view class="Scanning_cont_list_title">
  51. 备注:
  52. </view>
  53. <view class="Scanning_cont_list_desc">
  54. <textarea class="remarkInput" placeholder-style="color:#C3BFBF;font-size:28rpx;padding:8rpx;line-height:normal;" v-model="remark" placeholder="请输入备注信息" />
  55. </view>
  56. </view>
  57. </view>
  58. <view class="foot_btn">
  59. <view class="btn" @click="scanNext(true)"> 继续扫描 </view>
  60. <view class="btn" @click="scanNext(false)"> 核对回收 </view>
  61. </view>
  62. </view>
  63. </template>
  64. <script>
  65. import {
  66. get,
  67. post,
  68. SM,
  69. webHandle
  70. } from "../../../http/http.js";
  71. export default {
  72. data() {
  73. return {
  74. id: null,
  75. disabledDept: false,
  76. SMFlag: true,
  77. remark: '',
  78. deptId: null,
  79. deptName: '',
  80. weight: 0,
  81. medicalWasteTypes: [],
  82. medicalWasteTypeIndex: 0,
  83. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  84. queryObj: {}, //路由传递过来的数据
  85. };
  86. },
  87. onShow() {
  88. this.SMFlag = true;
  89. },
  90. methods: {
  91. // 扫科室
  92. scanDept() {
  93. if (!this.SMFlag) {
  94. return;
  95. }
  96. this.SMFlag = false;
  97. SM().then((content) => {
  98. uni.showLoading({
  99. title: "加载中",
  100. mask: true,
  101. });
  102. //检验二维码的有效性(扫码前必须验证)
  103. post("/dept/scanning", {
  104. content,
  105. })
  106. .then((result) => {
  107. this.SMFlag = true;
  108. // 200检测通过,201没有有效期也通过。
  109. if (result.state == 200 || result.state == 201) {
  110. let data = {
  111. code: result.code, //二维码
  112. };
  113. post("/medicalWaste/scanByCode", {
  114. code: result.code,
  115. hosId: this.hosId,
  116. })
  117. .then((res) => {
  118. uni.hideLoading();
  119. if (res.status == 200 && res.data) {
  120. this.deptId = res.data.id;
  121. this.deptName = res.data.dept;
  122. } else {
  123. uni.showToast({
  124. icon: "none",
  125. title: res.msg || "接口获取数据失败!",
  126. });
  127. }
  128. });
  129. } else {
  130. uni.hideLoading();
  131. uni.showToast({
  132. icon: "none",
  133. title: result.info || "接口获取数据失败!",
  134. });
  135. }
  136. })
  137. }).catch(err => {
  138. this.SMFlag = true;
  139. });
  140. },
  141. scanNestCommonGoOn(isScan = false){
  142. if(isScan){
  143. // 继续扫描
  144. SM().then((content) => {
  145. uni.showLoading({
  146. title: "加载中",
  147. mask: true,
  148. });
  149. //检验二维码的有效性(扫码前必须验证)
  150. post("/dept/scanning", {
  151. content,
  152. })
  153. .then((result) => {
  154. // 200检测通过,201没有有效期也通过。
  155. if (result.state == 200 || result.state == 201) {
  156. // 判断是否是医废
  157. post("/medicalWaste/continueScan", { code: result.code, hosId: this.hosId })
  158. .then((res) => {
  159. uni.hideLoading();
  160. if (res.status == 200) {
  161. this.disabledDept = true;
  162. if(res.wasteInfo){
  163. // 编辑
  164. this.id = res.wasteInfo.id;
  165. } else {
  166. // 新增
  167. this.id = undefined;
  168. this.queryObj.qrcode = res.code;
  169. this.weight = 0;
  170. this.medicalWasteTypeIndex = 0;
  171. this.remark = '';
  172. }
  173. } else {
  174. uni.showToast({
  175. icon: "none",
  176. title: res.msg || "接口获取数据失败!",
  177. });
  178. }
  179. });
  180. } else {
  181. uni.hideLoading();
  182. uni.showToast({
  183. icon: "none",
  184. title: result.info || "接口获取数据失败!",
  185. });
  186. }
  187. })
  188. }).catch(err => {});
  189. }else{
  190. // 核对回收
  191. uni.navigateTo({
  192. url: `/pages/medicalWaste/medicalWasteBindCheck/medicalWasteBindCheck?deptName=${this.deptName}&deptId=${this.deptId}`,
  193. });
  194. }
  195. },
  196. // 继续扫描
  197. scanNextCommon(isScan = false){
  198. let postData = {
  199. wasteInfo: {
  200. clinicalWasteType: this.medicalWasteTypes[this.medicalWasteTypeIndex],
  201. clinicalWasteSn: this.queryObj.qrcode,
  202. weight: +this.weight,
  203. deptId: +this.deptId,
  204. remark: this.remark,
  205. hosId: this.hosId,
  206. id: this.id || undefined,
  207. }
  208. }
  209. console.log(postData);
  210. uni.showLoading({
  211. title: "加载中",
  212. mask: true,
  213. });
  214. post("/medicalWaste/bindInfo", postData)
  215. .then((result1) => {
  216. uni.hideLoading();
  217. if (result1.status == 200) {
  218. this.scanNestCommonGoOn(isScan);
  219. } else {
  220. uni.showToast({
  221. icon: "none",
  222. title: result1.msg || "接口获取数据失败!",
  223. });
  224. }
  225. });
  226. },
  227. // 继续扫描-判断重量
  228. scanNext(isScan = false) {
  229. if(!this.deptId){
  230. uni.showModal({
  231. title: "提示",
  232. content: "请选择科室!",
  233. showCancel: false,
  234. success: function(res) {
  235. if (res.confirm) {
  236. console.log("用户点击确定");
  237. } else if (res.cancel) {
  238. console.log("用户点击取消");
  239. }
  240. },
  241. });
  242. return;
  243. }
  244. if(this.medicalWasteTypeIndex == 0){
  245. uni.showModal({
  246. title: "提示",
  247. content: "请选择医废类型!",
  248. showCancel: false,
  249. success: function(res) {
  250. if (res.confirm) {
  251. console.log("用户点击确定");
  252. } else if (res.cancel) {
  253. console.log("用户点击取消");
  254. }
  255. },
  256. });
  257. return;
  258. }
  259. let postData = {
  260. clinicalWasteTypeId: this.medicalWasteTypes[this.medicalWasteTypeIndex].id,
  261. weight: +this.weight,
  262. deptId: +this.deptId,
  263. hosId: this.hosId,
  264. }
  265. console.log(postData);
  266. uni.showLoading({
  267. title: "加载中",
  268. mask: true,
  269. });
  270. post("/medicalWaste/checkLimit", postData)
  271. .then((result) => {
  272. uni.hideLoading();
  273. if (result.status == 200) {
  274. this.scanNextCommon(isScan);
  275. }else if (result.status == 201) {
  276. uni.showModal({
  277. title: '提示',
  278. content: result.msg,
  279. success: (res) => {
  280. if (res.confirm) {
  281. console.log('用户点击确定');
  282. this.scanNextCommon(isScan);
  283. } else if (res.cancel) {
  284. console.log('用户点击取消');
  285. }
  286. }
  287. });
  288. } else {
  289. uni.showToast({
  290. icon: "none",
  291. title: result.msg || "接口获取数据失败!",
  292. });
  293. }
  294. });
  295. },
  296. // 选择科室
  297. changeDept() {
  298. uni.navigateTo({
  299. url: `/pages/search/search?type=medicalWasteBind&code=${this.queryObj.qrcode}&remark=${this.remark}&weight=${this.weight}&medicalWasteTypeIndex=${this.medicalWasteTypeIndex}`,
  300. });
  301. },
  302. blurWeight(){
  303. this.weight = Math.abs(this.weight).toFixed(2)
  304. },
  305. bindMedicalWasteType: function(e) {
  306. console.log('picker发送选择改变,携带值为', e.detail.value)
  307. this.medicalWasteTypeIndex = e.detail.value
  308. },
  309. getMedicalWasteType(){
  310. uni.showLoading({
  311. title: "加载中",
  312. mask: true,
  313. });
  314. post("/simple/data/fetchDataList/clinicalWasteType", {
  315. idx: 0,
  316. sum: 9999,
  317. clinicalWasteType: {
  318. hosId: this.hosId
  319. }
  320. }).then((result) => {
  321. uni.hideLoading();
  322. if (result.status == 200) {
  323. let medicalWasteTypes = result.list || [];
  324. medicalWasteTypes.unshift({id: 0, typeName: '请选择医废类型'});
  325. this.medicalWasteTypes = medicalWasteTypes;
  326. } else {
  327. uni.showToast({
  328. icon: "none",
  329. title: result.msg || "接口获取数据失败!",
  330. });
  331. }
  332. });
  333. },
  334. },
  335. onLoad(options) {
  336. console.log(options, "result");
  337. this.queryObj = options;
  338. if (options.deptId && options.deptName) {
  339. this.deptId = options.deptId;
  340. this.deptName = options.deptName;
  341. this.remark = options.remark;
  342. this.weight = options.weight;
  343. this.medicalWasteTypeIndex = options.medicalWasteTypeIndex;
  344. }
  345. this.getMedicalWasteType();
  346. // #ifdef APP-PLUS
  347. webHandle("no", "app");
  348. // #endif
  349. // #ifdef H5
  350. webHandle("no", "wx");
  351. // #endif
  352. },
  353. };
  354. </script>
  355. <style lang="less" scoped>
  356. .Scanning_Result {
  357. height: 100vh;
  358. display: flex;
  359. flex-direction: column;
  360. background-color: #fff;
  361. .yf /deep/ .uni-input-input[disabled]{
  362. text-overflow: ellipsis;
  363. }
  364. .Scanning_top {
  365. flex-shrink: 0;
  366. .Scanning_top_icon {
  367. padding-top: 26rpx;
  368. display: flex;
  369. flex-direction: column;
  370. justify-content: center;
  371. align-items: center;
  372. .cubeic-ok {
  373. font-size: 100rpx;
  374. color: #35b34a;
  375. }
  376. .text1 {
  377. font-size: 40rpx;
  378. font-weight: bold;
  379. }
  380. }
  381. .Scanning_top_text{
  382. text-align: center;
  383. font-size: 34rpx;
  384. font-weight: bold;
  385. padding: 26rpx 0 38rpx 0;
  386. }
  387. }
  388. .Scanning_cont {
  389. flex: 1;
  390. min-height: 0;
  391. display: flex;
  392. flex-direction: column;
  393. width: 710rpx;
  394. margin: 0 20rpx;
  395. padding: 6rpx;
  396. background-color: #FBFCFE;
  397. box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
  398. font-size: 28rpx;
  399. line-height: 1;
  400. .Scanning_cont_list{
  401. font-weight: bold;
  402. padding: 27rpx 55rpx;
  403. border-bottom: 1rpx solid #D9D9D9;
  404. display: flex;
  405. justify-content: space-between;
  406. align-items: center;
  407. font-size: 32rpx;
  408. &:last-of-type{
  409. border-bottom: none;
  410. }
  411. .Scanning_cont_list_title{
  412. font-size: 32rpx;
  413. }
  414. .Scanning_cont_list_desc{
  415. display: flex;
  416. align-items: center;
  417. position: relative;
  418. .mask{
  419. content: '';
  420. position: absolute;
  421. top: 0;
  422. right: 50rpx;
  423. bottom: 0;
  424. left: 0;
  425. }
  426. .transport-sousuo{
  427. position: absolute;
  428. right: 56rpx;
  429. color:#C3BFBF;
  430. }
  431. .newicon-saoma{
  432. color: #50b249;
  433. }
  434. .newicon-xiala1{
  435. position: absolute;
  436. top: 50%;
  437. right: 16rpx;
  438. color:#C3BFBF;
  439. transform: translateY(-50%);
  440. }
  441. .deptInput{
  442. width: 213rpx;
  443. height: 56rpx;
  444. border: 1rpx solid #D9D9D9;
  445. margin-right: 12rpx;
  446. padding: 8rpx;
  447. font-size: 28rpx;
  448. padding-right: 50rpx;
  449. box-sizing: border-box;
  450. text-overflow: ellipsis;
  451. overflow: hidden;
  452. white-space: nowrap;
  453. }
  454. .typeInput{
  455. font-size: 28rpx;
  456. width: 260rpx;
  457. height: 56rpx;
  458. border: 1rpx solid #D9D9D9;
  459. padding: 8rpx;
  460. padding-right: 50rpx;
  461. box-sizing: border-box;
  462. line-height: 38rpx;
  463. text-overflow: ellipsis;
  464. overflow: hidden;
  465. white-space: nowrap;
  466. }
  467. .remarkInput{
  468. font-size: 28rpx;
  469. width: 500rpx;
  470. height: 174rpx;
  471. line-height: mormal;
  472. border: 1rpx solid #D9D9D9;
  473. padding: 8rpx;
  474. box-sizing: border-box;
  475. }
  476. }
  477. }
  478. }
  479. .foot_btn {
  480. flex-shrink: 0;
  481. line-height: 88rpx;
  482. display: flex;
  483. justify-content: center;
  484. .btn {
  485. height: 88rpx;
  486. flex: 1;
  487. margin-right: 1%;
  488. background-image: linear-gradient(to right, #72c172, #3bb197);
  489. color: #fff;
  490. border-radius: 8rpx;
  491. font-size: 28rpx;
  492. text-align: center;
  493. &:last-of-type{
  494. margin-right: 0;
  495. }
  496. }
  497. }
  498. }
  499. </style>