specimenHandoverNew.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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 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. onLoad(options) {
  287. console.log(options, "result");
  288. this.queryObj = options;
  289. this.initData();
  290. // #ifdef APP-PLUS
  291. webHandle("no", "app");
  292. // #endif
  293. // #ifdef H5
  294. webHandle("no", "wx");
  295. // #endif
  296. },
  297. };
  298. </script>
  299. <style lang="less" scoped>
  300. .Scanning_Result {
  301. height: 100vh;
  302. display: flex;
  303. flex-direction: column;
  304. background-color: #fafbfd;
  305. .Scanning_top {
  306. flex-shrink: 0;
  307. .Scanning_top_icon {
  308. padding-top: 26rpx;
  309. display: flex;
  310. justify-content: center;
  311. align-items: center;
  312. .cubeic-ok {
  313. font-size: 58rpx;
  314. color: #35b34a;
  315. }
  316. .text1 {
  317. font-size: 48rpx;
  318. font-weight: bold;
  319. }
  320. }
  321. .Scanning_top_text{
  322. text-align: center;
  323. font-size: 28rpx;
  324. font-weight: bold;
  325. padding: 8rpx 0 23rpx 0;
  326. }
  327. }
  328. .Scanning_cont {
  329. flex: 1;
  330. min-height: 0;
  331. display: flex;
  332. flex-direction: column;
  333. width: 710rpx;
  334. margin: 0 20rpx;
  335. background-color: #fff;
  336. .Scanning_cont_head{
  337. flex-shrink: 0;
  338. height: 78rpx;
  339. display: flex;
  340. border-top: 1rpx solid #EEEEEE;
  341. border-bottom: 1rpx solid #EEEEEE;
  342. .Scanning_cont_head_item{
  343. flex: 1;
  344. font-size: 28rpx;
  345. font-weight: bold;
  346. display: flex;
  347. justify-content: center;
  348. align-items: center;
  349. position: relative;
  350. &.active{
  351. color: #49B856;
  352. &::before{
  353. content: '';
  354. width: 70rpx;
  355. height: 10rpx;
  356. background-color: #49B856;
  357. position: absolute;
  358. left: 50%;
  359. bottom: 0;
  360. transform: translateX(-50%);
  361. border-radius: 6rpx;
  362. }
  363. }
  364. &::after{
  365. content: '';
  366. width: 2rpx;
  367. height: 44rpx;
  368. background-color: #D1D1D1;
  369. position: absolute;
  370. right: 0;
  371. top: 50%;
  372. transform: translateY(-50%);
  373. }
  374. &:last-of-type::after{
  375. opacity: 0;
  376. }
  377. }
  378. }
  379. .Scanning_cont_list{
  380. flex: 1;
  381. min-height: 0;
  382. display: flex;
  383. flex-direction: column;
  384. .Scanning_cont_list_scroll{
  385. flex: 1;
  386. min-height: 0;
  387. }
  388. .Scanning_cont_list_item{
  389. height: 70rpx;
  390. display: flex;
  391. align-items: center;
  392. font-size: 28rpx;
  393. border-bottom: 1rpx solid #CCCCCC;
  394. &.Scanning_cont_list_head{
  395. font-weight: bold;
  396. font-size: 28rpx;
  397. border-bottom: none;
  398. flex-shrink: 0;
  399. }
  400. .name,
  401. .value{
  402. padding: 0 40rpx;
  403. flex: 1;
  404. }
  405. .value {
  406. view{
  407. width: 7em;
  408. text-align: center;
  409. }
  410. }
  411. }
  412. }
  413. }
  414. .foot_btn {
  415. flex-shrink: 0;
  416. line-height: 66rpx;
  417. display: flex;
  418. justify-content: center;
  419. .btn {
  420. height: 66rpx;
  421. flex: 1;
  422. margin-right: 1%;
  423. background-image: linear-gradient(to right, #72c172, #3bb197);
  424. color: #fff;
  425. border-radius: 8rpx;
  426. font-size: 28rpx;
  427. text-align: center;
  428. &:last-of-type{
  429. margin-right: 0;
  430. }
  431. }
  432. }
  433. }
  434. </style>