startOrderSignBlood.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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. <view class="text1"> 签到成功 </view>
  9. </view>
  10. </view>
  11. <view class="Scanning_cont">
  12. <view>您已到达{{queryObj.deptName}},请核对以下数量</view>
  13. <view class="table_head">
  14. <view>科室<text class="red ml16">{{deptTotalCount}}</text></view>
  15. <view>患者<text class="red ml16">{{patientTotalCount}}</text></view>
  16. <view>血制品<text class="red ml16">{{bloodTotalCount}}</text></view>
  17. </view>
  18. <view class="table_bodys">
  19. <view class="table_body" v-for="(item, index) in dataList" :key="index" @click="toDetail(item)">
  20. <view>{{item.dept}}</view>
  21. <view>{{item.patientCount}}</view>
  22. <view>{{item.bloodCount}}</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="foot_btn_spe">
  27. <view class="btn1" @click="complete()" v-if="orderIds">核对完成</view>
  28. <view class="btn3" @click="goBack()">取消</view>
  29. </view>
  30. <!-- 填写交接人工号弹窗 -->
  31. <selectAccount @click.stop.native v-if="hosModels.disjunctor" :content="hosModels.content" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  32. @cancel="hosCancel">
  33. </selectAccount>
  34. </view>
  35. </template>
  36. <script>
  37. import {
  38. get,
  39. post,
  40. SM,
  41. webHandle
  42. } from "../../http/http.js";
  43. export default {
  44. data() {
  45. return {
  46. orderIds: '',
  47. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  48. // 填写交接人工号弹窗model
  49. hosModels: {
  50. disjunctor: false,
  51. },
  52. deptTotalCount: 0,
  53. patientTotalCount: 0,
  54. bloodTotalCount: 0,
  55. dataList: [],
  56. queryObj: {}, //路由传递过来的数据
  57. };
  58. },
  59. methods: {
  60. // 核对完成
  61. complete(){
  62. uni.showLoading({
  63. title: "加载中",
  64. mask: true,
  65. });
  66. post('/simple/data/fetchDataList/taskTypeConfig', {
  67. idx: 0,
  68. sum: 1,
  69. taskTypeConfig: {
  70. "taskTypeDTO": {
  71. "hosId": {
  72. "id": this.hosId
  73. },
  74. "ordinaryField": {
  75. "key": "ordinary_field",
  76. "value": "blood"
  77. }
  78. }
  79. },
  80. }).then(res => {
  81. uni.hideLoading();
  82. if(res.status == 200){
  83. let list = res.list || [];
  84. if(list.length > 0){
  85. let signTypeList = list[0].signTypeList || [];
  86. let signType = signTypeList.find( v => v.value == 5 );
  87. if(signType){
  88. this.showSelectAccount();
  89. }else{
  90. this.checkComplete();
  91. }
  92. }else{
  93. uni.showToast({
  94. icon: "none",
  95. title: "请配置血制品任务类型!",
  96. });
  97. }
  98. }else{
  99. uni.showToast({
  100. icon: "none",
  101. title: res.msg || "接口获取数据失败!",
  102. });
  103. }
  104. })
  105. },
  106. // 填写交接人工号-确认
  107. hosOk(data) {
  108. console.log(data);
  109. const {
  110. accountName,
  111. account,
  112. accountId
  113. } = data;
  114. if (!accountName && !account) {
  115. //没有填写交接人
  116. uni.showModal({
  117. title: "提示",
  118. content: "请填写交接人工号!",
  119. showCancel: false,
  120. success: function(res) {
  121. if (res.confirm) {
  122. console.log("用户点击确定");
  123. } else if (res.cancel) {
  124. console.log("用户点击取消");
  125. }
  126. },
  127. });
  128. return;
  129. } else if ((!accountName && account) || (accountName && !account)) {
  130. //没有填写交接人
  131. uni.showModal({
  132. title: "提示",
  133. content: "请填写正确的交接人工号!",
  134. showCancel: false,
  135. success: function(res) {
  136. if (res.confirm) {
  137. console.log("用户点击确定");
  138. } else if (res.cancel) {
  139. console.log("用户点击取消");
  140. }
  141. },
  142. });
  143. return;
  144. }
  145. this.hosModels.disjunctor = false;
  146. this.checkComplete(data);
  147. },
  148. // 填写交接人工号-取消
  149. hosCancel() {
  150. this.hosModels.disjunctor = false;
  151. this.flag = true;
  152. },
  153. // 填写交接人工号弹窗
  154. showSelectAccount() {
  155. this.hosModels = {
  156. content: "确定核对完成,请输入交接人员工号",
  157. disjunctor: true,
  158. };
  159. },
  160. checkComplete(accountObj){
  161. uni.showLoading({
  162. title: "加载中",
  163. mask: true,
  164. });
  165. let postData = {
  166. "type": "bloodTake",
  167. "orderId": 0,
  168. "orderIds": this.orderIds || undefined,
  169. };
  170. if (accountObj) {
  171. postData.handoverUser = accountObj.accountId;
  172. }
  173. post('/transflow/checkComplete', postData).then(res => {
  174. uni.hideLoading();
  175. if(res.state == 200){
  176. uni.navigateTo({
  177. url: `../receiptpage/receiptpage`,
  178. });
  179. }else{
  180. uni.showToast({
  181. icon: "none",
  182. title: res.msg || "接口获取数据失败!",
  183. });
  184. }
  185. })
  186. },
  187. // 返回
  188. goBack() {
  189. uni.navigateBack();
  190. },
  191. // 跳转血制品列表
  192. toDetail(data){
  193. uni.navigateTo({
  194. url: `../startOrderSignBloodDetail/startOrderSignBloodDetail?bloodIds=${data.bloodIds}&deptName=${data.dept}`,
  195. });
  196. },
  197. //获取页面信息
  198. getInfo(){
  199. uni.showLoading({
  200. title: "加载中",
  201. mask: true,
  202. });
  203. post('/transflow/scanInfo', {
  204. "code": "nb",
  205. "id": 0,
  206. "type": "bloodTake",
  207. "deptOrder": true,
  208. "deptId": this.queryObj.deptId,
  209. "taskTypeId": this.queryObj.taskTypeId,
  210. }).then(res => {
  211. uni.hideLoading();
  212. if(res.state == 200){
  213. this.orderIds = res.data.orderIds;
  214. this.dataList = res.data.data || [];
  215. this.deptTotalCount = this.dataList.length;
  216. this.patientTotalCount = this.dataList.reduce((pre, current) => pre + current.patientCount, 0);
  217. this.bloodTotalCount = this.dataList.reduce((pre, current) => pre + current.bloodCount, 0);
  218. }else{
  219. uni.showToast({
  220. icon: "none",
  221. title: res.msg || "接口获取数据失败!",
  222. });
  223. }
  224. })
  225. },
  226. },
  227. onLoad(options) {
  228. console.log(options, "result");
  229. this.queryObj = options;
  230. this.getInfo();
  231. // #ifdef APP-PLUS
  232. webHandle("no", "app");
  233. // #endif
  234. // #ifdef H5
  235. webHandle("no", "wx");
  236. // #endif
  237. },
  238. };
  239. </script>
  240. <style lang="less" scoped>
  241. .Scanning_Result {
  242. padding: 0 20rpx;
  243. display: flex;
  244. flex-direction: column;
  245. height: 100vh;
  246. .Scanning_top {
  247. .Scanning_top_icon {
  248. width: 140rpx;
  249. height: 140rpx;
  250. margin: 50rpx auto 40rpx;
  251. border-radius: 50%;
  252. .speNum{
  253. text-align: center;
  254. font-size: 140rpx;
  255. }
  256. .cubeic-ok {
  257. font-size: 140rpx;
  258. color: #35b34a;
  259. }
  260. .cubeic-close {
  261. font-size: 140rpx;
  262. color: #ff3b53;
  263. }
  264. }
  265. .Scanning_top_text {
  266. .text1 {
  267. font-size: 48rpx;
  268. text-align: center;
  269. }
  270. .success_tips {
  271. color: red;
  272. font-size: 30rpx;
  273. }
  274. }
  275. }
  276. .Scanning_cont {
  277. flex: 1;
  278. text-align: center;
  279. display: flex;
  280. flex-direction: column;
  281. .table_bodys{
  282. overflow-y: auto;
  283. flex: 1;
  284. }
  285. .table_head{
  286. display: flex;
  287. margin-top: 50rpx;
  288. .ml16{
  289. margin-left: 16rpx;
  290. }
  291. view {
  292. height: 110rpx;
  293. line-height: 1;
  294. flex: 1;
  295. font-weight: bold;
  296. color: #000;
  297. font-size: 38rpx;
  298. display: flex;
  299. justify-content: center;
  300. align-items: center;
  301. }
  302. }
  303. .table_body{
  304. background: #F3FAF7;
  305. border-radius: 8px;
  306. border: 1px solid #E9E9E9;
  307. display: flex;
  308. margin-bottom: 20rpx;
  309. padding: 30rpx 20rpx;
  310. view {
  311. line-height: 1;
  312. flex: 1;
  313. color: #555;
  314. font-size: 38rpx;
  315. display: flex;
  316. justify-content: center;
  317. align-items: center;
  318. word-break: break-all;
  319. }
  320. }
  321. }
  322. .foot_btn_spe {
  323. line-height: 64rpx;
  324. height: 64rpx;
  325. margin-bottom: 40rpx;
  326. text-align: center;
  327. display: flex;
  328. justify-content: space-between;
  329. view {
  330. height: 64rpx;
  331. flex: 1;
  332. margin: 0 1%;
  333. background-image: linear-gradient(to right, #72c172, #3bb197);
  334. color: #fff;
  335. border-radius: 8rpx;
  336. font-size: 26rpx;
  337. }
  338. }
  339. }
  340. </style>