specimenHandoverNew.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok newicon newicon-duigou"></text>
  6. <view class="text1"> 签到成功 </view>
  7. </view>
  8. <view class="Scanning_top_text">
  9. 您已到达{{queryObj.dept}},请核对填写以下标本信息
  10. </view>
  11. </view>
  12. <view class="Scanning_cont">
  13. <view class="Scanning_cont_head">
  14. <view class="Scanning_cont_head_item" :class="{active: type == key}" v-for="(item, key) in typeList" :key="item.id" @click="clickTab(key)">
  15. {{item.name}}
  16. </view>
  17. </view>
  18. <view class="Scanning_cont_list">
  19. <view class="Scanning_cont_list_item Scanning_cont_list_head">
  20. <view class="name" v-if="type === 'patient'">
  21. 患者名称<text class="red">({{typeList.patient.titleCount}})</text>
  22. </view>
  23. <view class="name" v-if="type === 'specimenDesc'">
  24. 项目名称<text class="red">({{typeList.specimenDesc.titleCount}})</text>
  25. </view>
  26. <view class="value" v-if="type === 'patient'">
  27. <view>
  28. 标本数量<text class="red">({{typeList.patient.count}})</text>
  29. </view>
  30. </view>
  31. <view class="value" v-if="type === 'specimenDesc'">
  32. <view>
  33. 标本数量<text class="red">({{typeList.specimenDesc.count}})</text>
  34. </view>
  35. </view>
  36. </view>
  37. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
  38. <view class="Scanning_cont_list_item" @click="clickRow(item)" v-for="(item, j) in dataList" :key="j">
  39. <view class="name" v-if="type === 'patient'">
  40. {{item.patientname}}
  41. </view>
  42. <view class="name" v-if="type === 'specimenDesc'">
  43. {{item.specimen_desc}}
  44. </view>
  45. <view class="value">
  46. <view>
  47. {{item.count}}
  48. </view>
  49. </view>
  50. </view>
  51. </scroll-view>
  52. </view>
  53. </view>
  54. <view class="foot_btn">
  55. <view class="btn" @click="goBack()"> 取消 </view>
  56. <view class="btn" @click="onClick()" v-if="dataList.length"> 确认交接 </view>
  57. </view>
  58. <!-- 填写交接人工号弹窗 -->
  59. <selectAccount @click.stop.native v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  60. @cancel="hosCancel" :content="hosModels.content">
  61. </selectAccount>
  62. <!-- 弹窗 -->
  63. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  64. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  65. </view>
  66. </template>
  67. <script>
  68. import {
  69. get,
  70. post,
  71. SM,
  72. webHandle
  73. } from "@/http/http.js";
  74. export default {
  75. data() {
  76. return {
  77. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  78. type: 'patient',//patient|specimenDesc
  79. queryObj: {}, //路由传递过来的数据
  80. typeList: {
  81. "patient": {
  82. id: -1,
  83. name: '患者标本',
  84. count: 0,
  85. titleCount: 0,
  86. },
  87. "specimenDesc": {
  88. id: -2,
  89. name: '检验项目',
  90. count: 0,
  91. titleCount: 0,
  92. }
  93. },
  94. dataList: [],
  95. // 填写交接人工号弹窗model
  96. hosModels: {
  97. disjunctor: false,
  98. },
  99. // 弹窗model
  100. models: {
  101. disjunctor: false,
  102. },
  103. };
  104. },
  105. methods: {
  106. ok(){
  107. this.models.disjunctor = false;
  108. uni.showLoading({
  109. title: "加载中",
  110. mask: true,
  111. });
  112. post("/simple/data/fetchDataList/taskType", {
  113. "idx": 0,
  114. "sum": 1,
  115. "taskType": {
  116. "hosId": {
  117. "id": this.hosId
  118. },
  119. "associationType": {
  120. "key": "association_types",
  121. "value": "specimen"
  122. }
  123. }
  124. }).then((result) => {
  125. uni.hideLoading();
  126. if (result.status == 200) {
  127. if(result.list.length){
  128. // 标本-运送过程-终点科室-是否填写交接人
  129. if(result.list[0].carryingCourses[1].handoverSwitch){
  130. this.showSelectAccount();
  131. }else{
  132. this.orderDeptHandler();
  133. }
  134. }else{
  135. uni.showToast({
  136. icon: "none",
  137. title: "请配置标本配送任务类型!",
  138. });
  139. }
  140. } else {
  141. uni.showToast({
  142. icon: "none",
  143. title: result.msg || "接口获取数据失败!",
  144. });
  145. }
  146. });
  147. },
  148. // 取消
  149. cancel() {
  150. this.models.disjunctor = false;
  151. },
  152. //核对完成
  153. allStart() {
  154. this.models = {
  155. disjunctor: true,
  156. title: "提示",
  157. content: "是否确定交接?",
  158. icon: "warn",
  159. operate: {
  160. ok: "确定",
  161. cancel: "取消",
  162. },
  163. };
  164. },
  165. // 填写交接人工号-确认
  166. hosOk(data) {
  167. console.log(data);
  168. const {
  169. accountName,
  170. account,
  171. accountId
  172. } = data;
  173. if (!accountName && !account) {
  174. //没有填写交接人
  175. uni.showModal({
  176. title: "提示",
  177. content: "请填写交接人工号!",
  178. showCancel: false,
  179. success: function(res) {
  180. if (res.confirm) {
  181. console.log("用户点击确定");
  182. } else if (res.cancel) {
  183. console.log("用户点击取消");
  184. }
  185. },
  186. });
  187. return;
  188. } else if ((!accountName && account) || (accountName && !account)) {
  189. //没有填写交接人
  190. uni.showModal({
  191. title: "提示",
  192. content: "请填写正确的交接人工号!",
  193. showCancel: false,
  194. success: function(res) {
  195. if (res.confirm) {
  196. console.log("用户点击确定");
  197. } else if (res.cancel) {
  198. console.log("用户点击取消");
  199. }
  200. },
  201. });
  202. return;
  203. }
  204. this.hosModels.disjunctor = false;
  205. this.orderDeptHandler(data);
  206. },
  207. // 填写交接人工号-取消
  208. hosCancel() {
  209. this.hosModels.disjunctor = false;
  210. },
  211. // 填写交接人工号弹窗
  212. showSelectAccount() {
  213. this.hosModels = {
  214. content: '确定交接完成,请输入交接人员工号',
  215. disjunctor: true,
  216. };
  217. },
  218. orderDeptHandler(accountObj){
  219. uni.showLoading({
  220. title: "加载中",
  221. mask: true,
  222. });
  223. post("/workerOrder/ordersSpeSign", {
  224. deptId: this.queryObj.deptId,
  225. orderIds: JSON.parse(this.queryObj.ids).toString(),
  226. handover: accountObj ? accountObj.accountId : undefined
  227. }).then((result) => {
  228. uni.hideLoading();
  229. if (result.state == 200) {
  230. uni.navigateTo({
  231. url: `/pages/specimenOrderComplete/specimenOrderComplete?deptName=${this.queryObj.dept}&ids=${this.queryObj.ids}`
  232. })
  233. } else {
  234. uni.showToast({
  235. icon: "none",
  236. title: result.msg || "接口获取数据失败!",
  237. });
  238. }
  239. });
  240. },
  241. goBack(){
  242. uni.navigateBack();
  243. },
  244. clickTab(key){
  245. this.type = key;
  246. this.initData();
  247. },
  248. onClick(){
  249. this.allStart();
  250. },
  251. clickRow(data){
  252. uni.navigateTo({
  253. url: `/pages/specimenDetail/specimenDetail?speIds=${data.ids || ''}`
  254. })
  255. },
  256. getInfo(type){
  257. uni.showLoading({
  258. title: "加载中",
  259. mask: true,
  260. });
  261. post("/workerOrder/ordersSpeInfo", {
  262. type,
  263. deptId: this.queryObj.deptId,
  264. orderIds: JSON.parse(this.queryObj.ids).toString(),
  265. }).then((result) => {
  266. uni.hideLoading();
  267. if (result.state == 200) {
  268. this.typeList[type].count = result.count || 0;
  269. this.typeList[type].titleCount = result.title || 0;
  270. if(this.type === type){
  271. this.dataList = result.data || [];
  272. }
  273. } else {
  274. uni.showToast({
  275. icon: "none",
  276. title: result.msg || "接口获取数据失败!",
  277. });
  278. }
  279. });
  280. },
  281. initData(){
  282. this.getInfo('patient');
  283. this.getInfo('specimenDesc');
  284. },
  285. },
  286. onShow(){
  287. // #ifdef APP-PLUS
  288. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  289. // #endif
  290. },
  291. onLoad(options) {
  292. console.log(options, "result");
  293. this.queryObj = options;
  294. this.initData();
  295. // #ifdef APP-PLUS
  296. webHandle("no", "app");
  297. // #endif
  298. // #ifdef H5
  299. webHandle("no", "wx");
  300. // #endif
  301. },
  302. };
  303. </script>
  304. <style lang="less" scoped>
  305. .Scanning_Result {
  306. height: 100vh;
  307. display: flex;
  308. flex-direction: column;
  309. background-color: #fafbfd;
  310. .Scanning_top {
  311. flex-shrink: 0;
  312. .Scanning_top_icon {
  313. padding-top: 26rpx;
  314. display: flex;
  315. justify-content: center;
  316. align-items: center;
  317. .cubeic-ok {
  318. font-size: 58rpx;
  319. color: #35b34a;
  320. }
  321. .text1 {
  322. font-size: 48rpx;
  323. font-weight: bold;
  324. }
  325. }
  326. .Scanning_top_text{
  327. text-align: center;
  328. font-size: 28rpx;
  329. font-weight: bold;
  330. padding: 8rpx 0 23rpx 0;
  331. }
  332. }
  333. .Scanning_cont {
  334. flex: 1;
  335. min-height: 0;
  336. display: flex;
  337. flex-direction: column;
  338. width: 710rpx;
  339. margin: 0 20rpx;
  340. background-color: #fff;
  341. .Scanning_cont_head{
  342. flex-shrink: 0;
  343. height: 78rpx;
  344. display: flex;
  345. border-top: 1rpx solid #EEEEEE;
  346. border-bottom: 1rpx solid #EEEEEE;
  347. .Scanning_cont_head_item{
  348. flex: 1;
  349. font-size: 28rpx;
  350. font-weight: bold;
  351. display: flex;
  352. justify-content: center;
  353. align-items: center;
  354. position: relative;
  355. &.active{
  356. color: #49B856;
  357. &::before{
  358. content: '';
  359. width: 70rpx;
  360. height: 10rpx;
  361. background-color: #49B856;
  362. position: absolute;
  363. left: 50%;
  364. bottom: 0;
  365. transform: translateX(-50%);
  366. border-radius: 6rpx;
  367. }
  368. }
  369. &::after{
  370. content: '';
  371. width: 2rpx;
  372. height: 44rpx;
  373. background-color: #D1D1D1;
  374. position: absolute;
  375. right: 0;
  376. top: 50%;
  377. transform: translateY(-50%);
  378. }
  379. &:last-of-type::after{
  380. opacity: 0;
  381. }
  382. }
  383. }
  384. .Scanning_cont_list{
  385. flex: 1;
  386. min-height: 0;
  387. display: flex;
  388. flex-direction: column;
  389. .Scanning_cont_list_scroll{
  390. flex: 1;
  391. min-height: 0;
  392. }
  393. .Scanning_cont_list_item{
  394. height: 70rpx;
  395. display: flex;
  396. align-items: center;
  397. font-size: 28rpx;
  398. border-bottom: 1rpx solid #CCCCCC;
  399. &.Scanning_cont_list_head{
  400. font-weight: bold;
  401. font-size: 28rpx;
  402. border-bottom: none;
  403. flex-shrink: 0;
  404. }
  405. .name,
  406. .value{
  407. padding: 0 40rpx;
  408. flex: 1;
  409. }
  410. .value {
  411. view{
  412. width: 7em;
  413. text-align: center;
  414. }
  415. }
  416. }
  417. }
  418. }
  419. .foot_btn {
  420. flex-shrink: 0;
  421. line-height: 66rpx;
  422. display: flex;
  423. justify-content: center;
  424. .btn {
  425. height: 66rpx;
  426. flex: 1;
  427. margin-right: 1%;
  428. background-image: linear-gradient(to right, #72c172, #3bb197);
  429. color: #fff;
  430. border-radius: 8rpx;
  431. font-size: 28rpx;
  432. text-align: center;
  433. &:last-of-type{
  434. margin-right: 0;
  435. }
  436. }
  437. }
  438. }
  439. </style>