medicalWasteSignOut.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. 医废出库
  6. </view>
  7. <view class="Scanning_top_text">
  8. 请确认填写以下医废信息,进行核对
  9. </view>
  10. </view>
  11. <scroll-view scroll-y class="Scanning_cont">
  12. <view class="Scanning_cont_list">
  13. <view class="Scanning_cont_list_head">
  14. <view class="Scanning_cont_list_title">运输内容</view>
  15. </view>
  16. <view class="Scanning_cont_list_body1">
  17. <view class="Scanning_cont_list_body1_item" v-for="item in wastList" :key="item.id">
  18. <view class="column1">{{item.name}}</view>
  19. <view class="column2">{{item.wasteWeight}}kg</view>
  20. <view class="column3">{{item.wasteCount}}袋</view>
  21. </view>
  22. <view class="Scanning_cont_list_body1_item">
  23. <view class="column1">总计</view>
  24. <view class="column2">{{wasteWeightTotal}}kg</view>
  25. <view class="column3">{{wasteCountTotal}}袋</view>
  26. </view>
  27. <view class="Scanning_cont_list_body1_item" v-for="(item, index) in storageUnits" :key="index">
  28. <view class="Scanning_cont_list_title">
  29. {{item}}装数量:
  30. </view>
  31. <view class="Scanning_cont_list_desc" v-if="item == '箱'">
  32. <input class="numInput" type="digit" v-model="totalBox" @blur="blurItem(item)" />{{item}}
  33. </view>
  34. <view class="Scanning_cont_list_desc" v-else-if="item == '桶'">
  35. <input class="numInput" type="digit" v-model="totalBucket" @blur="blurItem(item)" />{{item}}
  36. </view>
  37. </view>
  38. <view class="Scanning_cont_list_body1_item">
  39. <view class="Scanning_cont_list_title">
  40. 凭证编号:
  41. </view>
  42. <view class="Scanning_cont_list_desc">
  43. <input class="textInput" v-model="credentialsNumber" placeholder="请输入凭证编号" />
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="Scanning_cont_list">
  49. <view class="Scanning_cont_list_head">
  50. <view class="Scanning_cont_list_title">运输信息</view>
  51. </view>
  52. <view class="Scanning_cont_list_body2">
  53. <view class="Scanning_cont_list_body2_item">
  54. <view class="Scanning_cont_list_title">
  55. 运输单位:
  56. </view>
  57. <view class="Scanning_cont_list_desc">
  58. <picker @change="bindTransCompany" :value="transCompanyIndex" :range="transCompanyList" range-key="name">
  59. <view class="typeInput">{{transCompanyList[transCompanyIndex] ? transCompanyList[transCompanyIndex].name : ''}}</view>
  60. <text class="newicon newicon-xiala1"></text>
  61. </picker>
  62. </view>
  63. </view>
  64. <view class="Scanning_cont_list_body2_item">
  65. <view class="Scanning_cont_list_title">
  66. 联系电话:
  67. </view>
  68. <view class="Scanning_cont_list_desc">
  69. {{mphone}}
  70. </view>
  71. </view>
  72. <view class="Scanning_cont_list_body2_item">
  73. <view class="Scanning_cont_list_title">
  74. 运营证件号:
  75. </view>
  76. <view class="Scanning_cont_list_desc">
  77. {{businessCode}}
  78. </view>
  79. </view>
  80. <view class="Scanning_cont_list_body2_item" v-if="address">
  81. <view class="Scanning_cont_list_title">
  82. 单位地址:
  83. </view>
  84. <view class="Scanning_cont_list_desc">
  85. {{address}}
  86. </view>
  87. </view>
  88. <view class="Scanning_cont_list_body2_item">
  89. <view class="Scanning_cont_list_title">
  90. 司机信息:
  91. </view>
  92. <view class="Scanning_cont_list_desc">
  93. <picker @change="bindLaborer" :value="laborerIndex" :range="laborerList" range-key="name">
  94. <view class="typeInput">{{laborerList[laborerIndex] ? laborerList[laborerIndex].name : ''}}</view>
  95. <text class="newicon newicon-xiala1"></text>
  96. </picker>
  97. </view>
  98. </view>
  99. <view class="Scanning_cont_list_body2_item">
  100. <view class="Scanning_cont_list_title">
  101. 联系电话:
  102. </view>
  103. <view class="Scanning_cont_list_desc">
  104. {{laborerList[laborerIndex].mphone}}
  105. </view>
  106. </view>
  107. <view class="Scanning_cont_list_body2_item">
  108. <view class="Scanning_cont_list_title">
  109. 车牌号码:
  110. </view>
  111. <view class="Scanning_cont_list_desc">
  112. <picker @change="bindCarNo" :value="carNoIndex" :range="carNoList" range-key="name">
  113. <view class="typeInput">{{carNoList[carNoIndex] ? carNoList[carNoIndex].name : ''}}</view>
  114. <text class="newicon newicon-xiala1"></text>
  115. </picker>
  116. </view>
  117. </view>
  118. </view>
  119. </view>
  120. <view class="Scanning_cont_list">
  121. <view class="Scanning_cont_list_head">
  122. <view class="Scanning_cont_list_title">接收单位</view>
  123. </view>
  124. <view class="Scanning_cont_list_body2">
  125. <view class="Scanning_cont_list_body2_item">
  126. <view class="Scanning_cont_list_title">
  127. 接收公司:
  128. </view>
  129. <view class="Scanning_cont_list_desc">
  130. <picker @change="bindReceiveCompany" :value="receiveCompanyIndex" :range="receiveCompanyList" range-key="name">
  131. <view class="typeInput">{{receiveCompanyList[receiveCompanyIndex] ? receiveCompanyList[receiveCompanyIndex].name : ''}}</view>
  132. <text class="newicon newicon-xiala1"></text>
  133. </picker>
  134. </view>
  135. </view>
  136. <view class="Scanning_cont_list_body2_item">
  137. <view class="Scanning_cont_list_title">
  138. 许可证编号:
  139. </view>
  140. <view class="Scanning_cont_list_desc">
  141. {{businessCode2}}
  142. </view>
  143. </view>
  144. <view class="Scanning_cont_list_body2_item" v-if="address2">
  145. <view class="Scanning_cont_list_title">
  146. 单位地址:
  147. </view>
  148. <view class="Scanning_cont_list_desc">
  149. {{address2}}
  150. </view>
  151. </view>
  152. </view>
  153. </view>
  154. </scroll-view>
  155. <view class="foot_btn">
  156. <view class="btn" @click="goBack()"> 取消 </view>
  157. <view class="btn" @click="submitOk()"> 确定 </view>
  158. </view>
  159. <!-- 弹窗 -->
  160. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  161. @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
  162. </view>
  163. </template>
  164. <script>
  165. import {
  166. get,
  167. post,
  168. SM,
  169. webHandle
  170. } from "../../../http/http.js";
  171. import Big from 'big.js';
  172. export default {
  173. data() {
  174. return {
  175. laborerIndex: 0,
  176. laborerList: [{id: 0, name: '请选择司机信息'}],
  177. carNoIndex: 0,
  178. carNoList: [{id: 0, name: '请选择车牌号码'}],
  179. mphone: '',
  180. businessCode: '',
  181. businessCode2: '',
  182. address: '',
  183. address2: '',
  184. transCompanyIndex: 0,
  185. transCompanyList: [],
  186. receiveCompanyIndex: 0,
  187. receiveCompanyList: [],
  188. credentialsNumber: '',
  189. totalBox: 0,//箱
  190. totalBucket: 0,//桶
  191. wasteWeightTotal: 0,
  192. wasteCountTotal: 0,
  193. storageUnits: [],
  194. wastList: [],
  195. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  196. queryObj: {}, //路由传递过来的数据
  197. // 弹窗model
  198. models1: {
  199. disjunctor: false,
  200. },
  201. };
  202. },
  203. methods: {
  204. submitOk(){
  205. if(this.transCompanyIndex == 0){
  206. uni.showModal({
  207. title: "提示",
  208. content: "请选择运输单位!",
  209. showCancel: false,
  210. success: function(res) {
  211. if (res.confirm) {
  212. console.log("用户点击确定");
  213. } else if (res.cancel) {
  214. console.log("用户点击取消");
  215. }
  216. },
  217. });
  218. return;
  219. }
  220. if(this.laborerIndex == 0){
  221. uni.showModal({
  222. title: "提示",
  223. content: "请选择司机信息!",
  224. showCancel: false,
  225. success: function(res) {
  226. if (res.confirm) {
  227. console.log("用户点击确定");
  228. } else if (res.cancel) {
  229. console.log("用户点击取消");
  230. }
  231. },
  232. });
  233. return;
  234. }
  235. if(this.carNoIndex == 0){
  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.receiveCompanyIndex == 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. this.showModel1()
  266. },
  267. goBack(){
  268. uni.navigateBack();
  269. },
  270. //确定
  271. ok1() {
  272. this.models1.disjunctor = false;
  273. uni.showLoading({
  274. title: "加载中",
  275. mask: true,
  276. });
  277. post("/medicalWaste/complete", {
  278. wasteOutInfo:{
  279. credentialsNumber: this.credentialsNumber,
  280. totalBox: +this.totalBox,
  281. totalBucket: +this.totalBucket,
  282. transportCompany: this.transCompanyList[this.transCompanyIndex],
  283. receptionCompany: this.receiveCompanyList[this.receiveCompanyIndex],
  284. hosId: this.hosId,
  285. driver: this.laborerList[this.laborerIndex],
  286. carNo: this.carNoList[this.carNoIndex].name,
  287. }
  288. }).then((res) => {
  289. uni.hideLoading();
  290. if (res.status == 200) {
  291. uni.showModal({
  292. title: "提示",
  293. content: "操作成功",
  294. showCancel: false,
  295. success: (result) => {
  296. if (result.confirm) {
  297. console.log("用户点击确定");
  298. uni.navigateTo({
  299. url: `/pages/receiptpage/receiptpage`,
  300. });
  301. }
  302. },
  303. });
  304. }else{
  305. uni.showToast({
  306. icon: "none",
  307. title: res.msg || "接口获取数据失败!",
  308. });
  309. }
  310. });
  311. },
  312. //取消
  313. cancel1() {
  314. this.models1.disjunctor = false;
  315. },
  316. // 被服回收弹窗
  317. showModel1() {
  318. this.models1 = {
  319. disjunctor: true,
  320. title: "提示",
  321. content: `您确认要出库吗?`,
  322. icon: "warn",
  323. operate: {
  324. ok: "确定",
  325. cancel: "取消",
  326. },
  327. };
  328. },
  329. getCompanyTransType(){
  330. post("/common/common/getDictionary", {
  331. key: 'company_trans_type',
  332. type: 'list',
  333. }).then((result) => {
  334. let company_trans_types = result || [];
  335. let transCompany = company_trans_types.find(v => v.value == 1);//运输单位
  336. let receiveCompany = company_trans_types.find(v => v.value == 2);//接收单位
  337. transCompany && this.getCompany(transCompany);
  338. receiveCompany && this.getCompany(receiveCompany);
  339. });
  340. },
  341. getCompany(dictionary){
  342. post("/simple/data/fetchDataList/company", {
  343. idx: 0,
  344. sum: 9999,
  345. company: {
  346. hosId: this.hosId,
  347. transType: dictionary,
  348. }
  349. }).then((result) => {
  350. if (result.status == 200) {
  351. if(dictionary.value == 1){
  352. // 运输单位
  353. let transCompanyList = result.list || [];
  354. transCompanyList.unshift({id: 0, name: '请选择运输单位'});
  355. this.transCompanyList = transCompanyList;
  356. } else if(dictionary.value == 2){
  357. // 接收单位
  358. let receiveCompanyList = result.list || [];
  359. receiveCompanyList.unshift({id: 0, name: '请选择接收单位'});
  360. this.receiveCompanyList = receiveCompanyList;
  361. }
  362. } else {
  363. uni.showToast({
  364. icon: "none",
  365. title: result.msg || "接口获取数据失败!",
  366. });
  367. }
  368. });
  369. },
  370. blurItem(type){
  371. if(type == '桶'){
  372. this.totalBucket = Math.abs(this.totalBucket).toFixed(0);
  373. }else if(type == '箱'){
  374. this.totalBox = Math.abs(this.totalBox).toFixed(0);
  375. }
  376. },
  377. bindTransCompany: function(e) {
  378. console.log('picker发送选择改变,携带值为', e.detail.value)
  379. this.transCompanyIndex = e.detail.value;
  380. let transCompany = this.transCompanyList[this.transCompanyIndex];
  381. let laborerList = transCompany.laborers || [];
  382. laborerList.unshift({id: 0, name: '请选择司机信息'});
  383. this.laborerList = laborerList;
  384. this.laborerIndex = 0;
  385. let carNoList = transCompany.carNo ? transCompany.carNo.split(',').map((v, index) => ({id: index + 1, name: v})) : [];
  386. carNoList.unshift({id: 0, name: '请选择车牌号码'});
  387. this.carNoList = carNoList;
  388. this.carNoIndex = 0;
  389. this.mphone = transCompany.mphone;
  390. this.businessCode = transCompany.businessCode;
  391. this.address = transCompany.address;
  392. },
  393. bindReceiveCompany: function(e) {
  394. console.log('picker发送选择改变,携带值为', e.detail.value)
  395. this.receiveCompanyIndex = e.detail.value;
  396. let receiveCompany = this.receiveCompanyList[this.receiveCompanyIndex];
  397. this.businessCode2 = receiveCompany.businessCode;
  398. this.address2 = receiveCompany.address;
  399. },
  400. bindLaborer: function(e) {
  401. console.log('picker发送选择改变,携带值为', e.detail.value)
  402. this.laborerIndex = e.detail.value;
  403. },
  404. bindCarNo: function(e) {
  405. console.log('picker发送选择改变,携带值为', e.detail.value)
  406. this.carNoIndex = e.detail.value;
  407. },
  408. getInfo(){
  409. uni.showLoading({
  410. title: "加载中",
  411. mask: true,
  412. });
  413. post("/medicalWaste/info", {
  414. hosId: this.hosId,
  415. clinicalWasteTypeIds: this.queryObj.clinicalWasteTypeIds,
  416. }).then((result) => {
  417. uni.hideLoading();
  418. if (result.status == 200) {
  419. this.wastList = result.data || [];
  420. this.storageUnits = result.storageUnits || [];
  421. this.wasteWeightTotal = this.wastList.reduce((pre,cur) => Big(pre).plus(cur.wasteWeight), 0);
  422. this.wasteCountTotal = this.wastList.reduce((pre,cur) => Big(pre).plus(cur.wasteCount), 0);
  423. } else {
  424. uni.showToast({
  425. icon: "none",
  426. title: result.msg || "接口获取数据失败!",
  427. });
  428. }
  429. });
  430. },
  431. },
  432. onLoad(options) {
  433. console.log(options, "result");
  434. this.queryObj = options;
  435. this.getCompanyTransType();
  436. this.getInfo();
  437. // #ifdef APP-PLUS
  438. webHandle("no", "app");
  439. // #endif
  440. // #ifdef H5
  441. webHandle("no", "wx");
  442. // #endif
  443. },
  444. };
  445. </script>
  446. <style lang="less" scoped>
  447. .Scanning_Result {
  448. height: 100vh;
  449. display: flex;
  450. flex-direction: column;
  451. background-color: #fff;
  452. .typeInput{
  453. font-size: 28rpx;
  454. width: 260rpx;
  455. height: 56rpx;
  456. border: 1rpx solid #D9D9D9;
  457. padding: 8rpx;
  458. padding-right: 50rpx;
  459. box-sizing: border-box;
  460. line-height: 38rpx;
  461. text-overflow: ellipsis;
  462. overflow: hidden;
  463. white-space: nowrap;
  464. }
  465. .numInput{
  466. width: 110rpx;
  467. height: 56rpx;
  468. border: 1rpx solid #D9D9D9;
  469. margin-right: 12rpx;
  470. padding: 8rpx;
  471. font-size: 28rpx;
  472. box-sizing: border-box;
  473. }
  474. .textInput{
  475. width: 260rpx;
  476. height: 56rpx;
  477. border: 1rpx solid #D9D9D9;
  478. padding: 8rpx;
  479. font-size: 28rpx;
  480. box-sizing: border-box;
  481. }
  482. .Scanning_top {
  483. flex-shrink: 0;
  484. .Scanning_top_icon {
  485. padding-top: 26rpx;
  486. display: flex;
  487. flex-direction: column;
  488. justify-content: center;
  489. align-items: center;
  490. font-size: 40rpx;
  491. font-weight: bold;
  492. .cubeic-ok {
  493. font-size: 100rpx;
  494. color: #35b34a;
  495. }
  496. .text1 {
  497. font-size: 28rpx;
  498. font-weight: bold;
  499. }
  500. }
  501. .Scanning_top_text{
  502. text-align: center;
  503. font-size: 34rpx;
  504. font-weight: bold;
  505. padding: 26rpx 0 38rpx 0;
  506. }
  507. }
  508. .Scanning_cont {
  509. flex: 1;
  510. min-height: 0;
  511. display: flex;
  512. flex-direction: column;
  513. width: 710rpx;
  514. margin: 0 20rpx;
  515. padding: 6rpx;
  516. background-color: #FBFCFE;
  517. box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
  518. font-size: 28rpx;
  519. line-height: 1;
  520. .Scanning_cont_list{
  521. padding: 20rpx;
  522. border-bottom: 1rpx solid #D9D9D9;
  523. &:last-of-type{
  524. border-bottom: none;
  525. }
  526. .Scanning_cont_list_head{
  527. display: flex;
  528. align-items: center;
  529. .Scanning_cont_list_title{
  530. position: relative;
  531. font-size: 30rpx;
  532. font-weight: bold;
  533. &::after{
  534. content: '';
  535. position: absolute;
  536. top: 35rpx;
  537. left: 50%;
  538. transform: translateX(-50%);
  539. width: 70rpx;
  540. height: 10rpx;
  541. background-color: #49B856;
  542. border-radius: 6rpx;
  543. }
  544. }
  545. }
  546. .Scanning_cont_list_body1{
  547. padding: 18rpx;
  548. font-size: 28rpx;
  549. .Scanning_cont_list_body1_item{
  550. height: 56rpx;
  551. display: flex;
  552. justify-content: space-between;
  553. align-items: center;
  554. margin-top: 10rpx;
  555. .column1,.column2,.column3{
  556. flex: 1;
  557. text-align: left;
  558. }
  559. .column1{
  560. flex: 2;
  561. white-space: nowrap;
  562. overflow: hidden;
  563. text-overflow: ellipsis;
  564. }
  565. .column3{
  566. text-align: right;
  567. }
  568. .Scanning_cont_list_desc{
  569. display: flex;
  570. align-items: center;
  571. }
  572. }
  573. }
  574. .Scanning_cont_list_body2{
  575. padding: 18rpx;
  576. font-size: 28rpx;
  577. .Scanning_cont_list_body2_item{
  578. height: 56rpx;
  579. display: flex;
  580. justify-content: space-between;
  581. align-items: center;
  582. margin-top: 10rpx;
  583. .Scanning_cont_list_title{
  584. flex-shrink: 0;
  585. }
  586. .Scanning_cont_list_desc{
  587. text-align: right;
  588. position: relative;
  589. .newicon-xiala1{
  590. position: absolute;
  591. top: 50%;
  592. right: 16rpx;
  593. color:#C3BFBF;
  594. transform: translateY(-50%);
  595. }
  596. }
  597. }
  598. }
  599. }
  600. }
  601. .foot_btn {
  602. margin: 57rpx 20rpx 10rpx;
  603. flex-shrink: 0;
  604. display: flex;
  605. justify-content: center;
  606. .btn {
  607. height: 88rpx;
  608. line-height: 1;
  609. display: flex;
  610. justify-content: center;
  611. align-items: center;
  612. flex: 1;
  613. margin-right: 32rpx;
  614. background-image: linear-gradient(to right, #72c172, #3bb197);
  615. color: #fff;
  616. border-radius: 8rpx;
  617. font-size: 34rpx;
  618. font-weight: bold;
  619. &:last-of-type{
  620. margin-right: 0;
  621. }
  622. }
  623. }
  624. }
  625. </style>