medicalWasteBind.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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;" @input="inputWeight" 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: '',
  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. this.queryObj.qrcode = res.wasteInfo.clinicalWasteSn;
  166. this.weight = res.wasteInfo.weight;
  167. this.medicalWasteTypeIndex = this.medicalWasteTypes.findIndex(v => v.id == res.wasteInfo.clinicalWasteType.id);
  168. this.remark = res.wasteInfo.remark;
  169. this.deptName = res.wasteInfo.dept.dept;
  170. this.deptId= res.wasteInfo.dept.id;
  171. } else {
  172. // 新增
  173. this.id = undefined;
  174. this.queryObj.qrcode = res.code;
  175. this.weight = '';
  176. this.medicalWasteTypeIndex = 0;
  177. this.remark = '';
  178. }
  179. } else {
  180. uni.showToast({
  181. icon: "none",
  182. title: res.msg || "接口获取数据失败!",
  183. });
  184. }
  185. });
  186. } else {
  187. uni.hideLoading();
  188. uni.showToast({
  189. icon: "none",
  190. title: result.info || "接口获取数据失败!",
  191. });
  192. }
  193. })
  194. }).catch(err => {});
  195. }else{
  196. // 核对回收
  197. uni.navigateTo({
  198. url: `/pages/medicalWaste/medicalWasteBindCheck/medicalWasteBindCheck?deptName=${this.deptName}&deptId=${this.deptId}`,
  199. });
  200. }
  201. },
  202. // 继续扫描
  203. scanNextCommon(isScan = false){
  204. let postData = {
  205. wasteInfo: {
  206. clinicalWasteType: this.medicalWasteTypes[this.medicalWasteTypeIndex],
  207. clinicalWasteSn: this.queryObj.qrcode,
  208. weight: +this.weight,
  209. deptId: +this.deptId,
  210. remark: this.remark,
  211. hosId: this.hosId,
  212. id: this.id || undefined,
  213. }
  214. }
  215. console.log(postData);
  216. uni.showLoading({
  217. title: "加载中",
  218. mask: true,
  219. });
  220. post("/medicalWaste/bindInfo", postData)
  221. .then((result1) => {
  222. uni.hideLoading();
  223. if (result1.status == 200) {
  224. this.scanNestCommonGoOn(isScan);
  225. } else {
  226. uni.showToast({
  227. icon: "none",
  228. title: result1.msg || "接口获取数据失败!",
  229. });
  230. }
  231. });
  232. },
  233. // 继续扫描-判断重量
  234. scanNext(isScan = false) {
  235. if(!this.deptId){
  236. uni.showModal({
  237. title: "提示",
  238. content: "请选择科室!",
  239. showCancel: false,
  240. success: function(res) {
  241. if (res.confirm) {
  242. console.log("用户点击确定");
  243. } else if (res.cancel) {
  244. console.log("用户点击取消");
  245. }
  246. },
  247. });
  248. return;
  249. }
  250. if(this.medicalWasteTypeIndex == 0){
  251. uni.showModal({
  252. title: "提示",
  253. content: "请选择医废类型!",
  254. showCancel: false,
  255. success: function(res) {
  256. if (res.confirm) {
  257. console.log("用户点击确定");
  258. } else if (res.cancel) {
  259. console.log("用户点击取消");
  260. }
  261. },
  262. });
  263. return;
  264. }
  265. if(this.weight === ''){
  266. uni.showModal({
  267. title: "提示",
  268. content: "请填写重量!",
  269. showCancel: false,
  270. success: function(res) {
  271. if (res.confirm) {
  272. console.log("用户点击确定");
  273. } else if (res.cancel) {
  274. console.log("用户点击取消");
  275. }
  276. },
  277. });
  278. return;
  279. }
  280. if(!(/^\d+(\.\d{1,2})?$/.test(this.weight))){
  281. uni.showModal({
  282. title: "提示",
  283. content: "重量只支持最多两位小数!",
  284. showCancel: false,
  285. success: function(res) {
  286. if (res.confirm) {
  287. console.log("用户点击确定");
  288. } else if (res.cancel) {
  289. console.log("用户点击取消");
  290. }
  291. },
  292. });
  293. return;
  294. }
  295. let postData = {
  296. clinicalWasteTypeId: this.medicalWasteTypes[this.medicalWasteTypeIndex].id,
  297. weight: +this.weight,
  298. deptId: +this.deptId,
  299. hosId: this.hosId,
  300. }
  301. console.log(postData);
  302. uni.showLoading({
  303. title: "加载中",
  304. mask: true,
  305. });
  306. post("/medicalWaste/checkLimit", postData)
  307. .then((result) => {
  308. uni.hideLoading();
  309. if (result.status == 200) {
  310. this.scanNextCommon(isScan);
  311. }else if (result.status == 201) {
  312. uni.showModal({
  313. title: '提示',
  314. content: result.msg,
  315. success: (res) => {
  316. if (res.confirm) {
  317. console.log('用户点击确定');
  318. this.scanNextCommon(isScan);
  319. } else if (res.cancel) {
  320. console.log('用户点击取消');
  321. }
  322. }
  323. });
  324. } else {
  325. uni.showToast({
  326. icon: "none",
  327. title: result.msg || "接口获取数据失败!",
  328. });
  329. }
  330. });
  331. },
  332. // 选择科室
  333. changeDept() {
  334. uni.navigateTo({
  335. url: `/pages/search/search?type=medicalWasteBind&code=${this.queryObj.qrcode}&remark=${this.remark}&weight=${this.weight}&medicalWasteTypeIndex=${this.medicalWasteTypeIndex}`,
  336. });
  337. },
  338. inputWeight(){
  339. this.weight = this.weight ? Math.abs(parseFloat(this.weight)) : '';
  340. },
  341. bindMedicalWasteType: function(e) {
  342. console.log('picker发送选择改变,携带值为', e.detail.value)
  343. this.medicalWasteTypeIndex = e.detail.value
  344. },
  345. getMedicalWasteType(){
  346. uni.showLoading({
  347. title: "加载中",
  348. mask: true,
  349. });
  350. post("/simple/data/fetchDataList/clinicalWasteType", {
  351. idx: 0,
  352. sum: 9999,
  353. clinicalWasteType: {
  354. hosId: this.hosId
  355. }
  356. }).then((result) => {
  357. uni.hideLoading();
  358. if (result.status == 200) {
  359. let medicalWasteTypes = result.list || [];
  360. medicalWasteTypes.unshift({id: 0, typeName: '请选择医废类型'});
  361. this.medicalWasteTypes = medicalWasteTypes;
  362. } else {
  363. uni.showToast({
  364. icon: "none",
  365. title: result.msg || "接口获取数据失败!",
  366. });
  367. }
  368. });
  369. },
  370. },
  371. onLoad(options) {
  372. console.log(options, "result");
  373. this.queryObj = options;
  374. if (options.deptId && options.deptName) {
  375. this.deptId = options.deptId;
  376. this.deptName = options.deptName;
  377. this.remark = options.remark;
  378. this.weight = options.weight;
  379. this.medicalWasteTypeIndex = options.medicalWasteTypeIndex;
  380. }
  381. this.getMedicalWasteType();
  382. // #ifdef APP-PLUS
  383. webHandle("no", "app");
  384. // #endif
  385. // #ifdef H5
  386. webHandle("no", "wx");
  387. // #endif
  388. },
  389. };
  390. </script>
  391. <style lang="less" scoped>
  392. .Scanning_Result {
  393. height: 100vh;
  394. display: flex;
  395. flex-direction: column;
  396. background-color: #fff;
  397. .yf /deep/ .uni-input-input[disabled]{
  398. text-overflow: ellipsis;
  399. }
  400. .Scanning_top {
  401. flex-shrink: 0;
  402. .Scanning_top_icon {
  403. padding-top: 26rpx;
  404. display: flex;
  405. flex-direction: column;
  406. justify-content: center;
  407. align-items: center;
  408. .cubeic-ok {
  409. font-size: 100rpx;
  410. color: #35b34a;
  411. }
  412. .text1 {
  413. font-size: 40rpx;
  414. font-weight: bold;
  415. }
  416. }
  417. .Scanning_top_text{
  418. text-align: center;
  419. font-size: 34rpx;
  420. font-weight: bold;
  421. padding: 26rpx 0 38rpx 0;
  422. }
  423. }
  424. .Scanning_cont {
  425. flex: 1;
  426. min-height: 0;
  427. display: flex;
  428. flex-direction: column;
  429. width: 710rpx;
  430. margin: 0 20rpx;
  431. padding: 6rpx;
  432. background-color: #FBFCFE;
  433. box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
  434. font-size: 28rpx;
  435. line-height: 1;
  436. .Scanning_cont_list{
  437. font-weight: bold;
  438. padding: 27rpx 55rpx;
  439. border-bottom: 1rpx solid #D9D9D9;
  440. display: flex;
  441. justify-content: space-between;
  442. align-items: center;
  443. font-size: 32rpx;
  444. &:last-of-type{
  445. border-bottom: none;
  446. }
  447. .Scanning_cont_list_title{
  448. font-size: 32rpx;
  449. }
  450. .Scanning_cont_list_desc{
  451. display: flex;
  452. align-items: center;
  453. position: relative;
  454. .mask{
  455. content: '';
  456. position: absolute;
  457. top: 0;
  458. right: 50rpx;
  459. bottom: 0;
  460. left: 0;
  461. }
  462. .transport-sousuo{
  463. position: absolute;
  464. right: 56rpx;
  465. color:#C3BFBF;
  466. }
  467. .newicon-saoma{
  468. color: #50b249;
  469. }
  470. .newicon-xiala1{
  471. position: absolute;
  472. top: 50%;
  473. right: 16rpx;
  474. color:#C3BFBF;
  475. transform: translateY(-50%);
  476. }
  477. .deptInput{
  478. width: 213rpx;
  479. height: 56rpx;
  480. border: 1rpx solid #D9D9D9;
  481. margin-right: 12rpx;
  482. padding: 8rpx;
  483. font-size: 28rpx;
  484. padding-right: 50rpx;
  485. box-sizing: border-box;
  486. text-overflow: ellipsis;
  487. overflow: hidden;
  488. white-space: nowrap;
  489. }
  490. .typeInput{
  491. font-size: 28rpx;
  492. width: 260rpx;
  493. height: 56rpx;
  494. border: 1rpx solid #D9D9D9;
  495. padding: 8rpx;
  496. padding-right: 50rpx;
  497. box-sizing: border-box;
  498. line-height: 38rpx;
  499. text-overflow: ellipsis;
  500. overflow: hidden;
  501. white-space: nowrap;
  502. }
  503. .remarkInput{
  504. font-size: 28rpx;
  505. width: 500rpx;
  506. height: 174rpx;
  507. line-height: mormal;
  508. border: 1rpx solid #D9D9D9;
  509. padding: 8rpx;
  510. box-sizing: border-box;
  511. }
  512. }
  513. }
  514. }
  515. .foot_btn {
  516. flex-shrink: 0;
  517. line-height: 88rpx;
  518. display: flex;
  519. justify-content: center;
  520. .btn {
  521. height: 88rpx;
  522. flex: 1;
  523. margin-right: 1%;
  524. background-image: linear-gradient(to right, #72c172, #3bb197);
  525. color: #fff;
  526. border-radius: 8rpx;
  527. font-size: 28rpx;
  528. text-align: center;
  529. &:last-of-type{
  530. margin-right: 0;
  531. }
  532. }
  533. }
  534. }
  535. </style>