medicalWasteBind.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  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. 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 = 0;
  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. let postData = {
  266. clinicalWasteTypeId: this.medicalWasteTypes[this.medicalWasteTypeIndex].id,
  267. weight: +this.weight,
  268. deptId: +this.deptId,
  269. hosId: this.hosId,
  270. }
  271. console.log(postData);
  272. uni.showLoading({
  273. title: "加载中",
  274. mask: true,
  275. });
  276. post("/medicalWaste/checkLimit", postData)
  277. .then((result) => {
  278. uni.hideLoading();
  279. if (result.status == 200) {
  280. this.scanNextCommon(isScan);
  281. }else if (result.status == 201) {
  282. uni.showModal({
  283. title: '提示',
  284. content: result.msg,
  285. success: (res) => {
  286. if (res.confirm) {
  287. console.log('用户点击确定');
  288. this.scanNextCommon(isScan);
  289. } else if (res.cancel) {
  290. console.log('用户点击取消');
  291. }
  292. }
  293. });
  294. } else {
  295. uni.showToast({
  296. icon: "none",
  297. title: result.msg || "接口获取数据失败!",
  298. });
  299. }
  300. });
  301. },
  302. // 选择科室
  303. changeDept() {
  304. uni.navigateTo({
  305. url: `/pages/search/search?type=medicalWasteBind&code=${this.queryObj.qrcode}&remark=${this.remark}&weight=${this.weight}&medicalWasteTypeIndex=${this.medicalWasteTypeIndex}`,
  306. });
  307. },
  308. blurWeight(){
  309. this.weight = Math.abs(this.weight).toFixed(2)
  310. },
  311. bindMedicalWasteType: function(e) {
  312. console.log('picker发送选择改变,携带值为', e.detail.value)
  313. this.medicalWasteTypeIndex = e.detail.value
  314. },
  315. getMedicalWasteType(){
  316. uni.showLoading({
  317. title: "加载中",
  318. mask: true,
  319. });
  320. post("/simple/data/fetchDataList/clinicalWasteType", {
  321. idx: 0,
  322. sum: 9999,
  323. clinicalWasteType: {
  324. hosId: this.hosId
  325. }
  326. }).then((result) => {
  327. uni.hideLoading();
  328. if (result.status == 200) {
  329. let medicalWasteTypes = result.list || [];
  330. medicalWasteTypes.unshift({id: 0, typeName: '请选择医废类型'});
  331. this.medicalWasteTypes = medicalWasteTypes;
  332. } else {
  333. uni.showToast({
  334. icon: "none",
  335. title: result.msg || "接口获取数据失败!",
  336. });
  337. }
  338. });
  339. },
  340. },
  341. onLoad(options) {
  342. console.log(options, "result");
  343. this.queryObj = options;
  344. if (options.deptId && options.deptName) {
  345. this.deptId = options.deptId;
  346. this.deptName = options.deptName;
  347. this.remark = options.remark;
  348. this.weight = options.weight;
  349. this.medicalWasteTypeIndex = options.medicalWasteTypeIndex;
  350. }
  351. this.getMedicalWasteType();
  352. // #ifdef APP-PLUS
  353. webHandle("no", "app");
  354. // #endif
  355. // #ifdef H5
  356. webHandle("no", "wx");
  357. // #endif
  358. },
  359. };
  360. </script>
  361. <style lang="less" scoped>
  362. .Scanning_Result {
  363. height: 100vh;
  364. display: flex;
  365. flex-direction: column;
  366. background-color: #fff;
  367. .yf /deep/ .uni-input-input[disabled]{
  368. text-overflow: ellipsis;
  369. }
  370. .Scanning_top {
  371. flex-shrink: 0;
  372. .Scanning_top_icon {
  373. padding-top: 26rpx;
  374. display: flex;
  375. flex-direction: column;
  376. justify-content: center;
  377. align-items: center;
  378. .cubeic-ok {
  379. font-size: 100rpx;
  380. color: #35b34a;
  381. }
  382. .text1 {
  383. font-size: 40rpx;
  384. font-weight: bold;
  385. }
  386. }
  387. .Scanning_top_text{
  388. text-align: center;
  389. font-size: 34rpx;
  390. font-weight: bold;
  391. padding: 26rpx 0 38rpx 0;
  392. }
  393. }
  394. .Scanning_cont {
  395. flex: 1;
  396. min-height: 0;
  397. display: flex;
  398. flex-direction: column;
  399. width: 710rpx;
  400. margin: 0 20rpx;
  401. padding: 6rpx;
  402. background-color: #FBFCFE;
  403. box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
  404. font-size: 28rpx;
  405. line-height: 1;
  406. .Scanning_cont_list{
  407. font-weight: bold;
  408. padding: 27rpx 55rpx;
  409. border-bottom: 1rpx solid #D9D9D9;
  410. display: flex;
  411. justify-content: space-between;
  412. align-items: center;
  413. font-size: 32rpx;
  414. &:last-of-type{
  415. border-bottom: none;
  416. }
  417. .Scanning_cont_list_title{
  418. font-size: 32rpx;
  419. }
  420. .Scanning_cont_list_desc{
  421. display: flex;
  422. align-items: center;
  423. position: relative;
  424. .mask{
  425. content: '';
  426. position: absolute;
  427. top: 0;
  428. right: 50rpx;
  429. bottom: 0;
  430. left: 0;
  431. }
  432. .transport-sousuo{
  433. position: absolute;
  434. right: 56rpx;
  435. color:#C3BFBF;
  436. }
  437. .newicon-saoma{
  438. color: #50b249;
  439. }
  440. .newicon-xiala1{
  441. position: absolute;
  442. top: 50%;
  443. right: 16rpx;
  444. color:#C3BFBF;
  445. transform: translateY(-50%);
  446. }
  447. .deptInput{
  448. width: 213rpx;
  449. height: 56rpx;
  450. border: 1rpx solid #D9D9D9;
  451. margin-right: 12rpx;
  452. padding: 8rpx;
  453. font-size: 28rpx;
  454. padding-right: 50rpx;
  455. box-sizing: border-box;
  456. text-overflow: ellipsis;
  457. overflow: hidden;
  458. white-space: nowrap;
  459. }
  460. .typeInput{
  461. font-size: 28rpx;
  462. width: 260rpx;
  463. height: 56rpx;
  464. border: 1rpx solid #D9D9D9;
  465. padding: 8rpx;
  466. padding-right: 50rpx;
  467. box-sizing: border-box;
  468. line-height: 38rpx;
  469. text-overflow: ellipsis;
  470. overflow: hidden;
  471. white-space: nowrap;
  472. }
  473. .remarkInput{
  474. font-size: 28rpx;
  475. width: 500rpx;
  476. height: 174rpx;
  477. line-height: mormal;
  478. border: 1rpx solid #D9D9D9;
  479. padding: 8rpx;
  480. box-sizing: border-box;
  481. }
  482. }
  483. }
  484. }
  485. .foot_btn {
  486. flex-shrink: 0;
  487. line-height: 88rpx;
  488. display: flex;
  489. justify-content: center;
  490. .btn {
  491. height: 88rpx;
  492. flex: 1;
  493. margin-right: 1%;
  494. background-image: linear-gradient(to right, #72c172, #3bb197);
  495. color: #fff;
  496. border-radius: 8rpx;
  497. font-size: 28rpx;
  498. text-align: center;
  499. &:last-of-type{
  500. margin-right: 0;
  501. }
  502. }
  503. }
  504. }
  505. </style>