scanning_ins.vue 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229
  1. <template>
  2. <view class="Scanning_ins">
  3. <view class="Scanning">
  4. <view class="Scanning_top" id="Scanning_tops" :animation="animationData">
  5. <view class="Scanning_top_icon">
  6. <text class="cubeic-ok icon_transport transport-duigou"></text>
  7. </view>
  8. <view class="Scanning_top_text">
  9. <view class="text1">扫描成功</view>
  10. <view class="success_tips">
  11. (请您评估患者的意识状况、生命体征、配合程度,如有异常请及时联系护士!)
  12. </view>
  13. </view>
  14. <view class="Scanning_cont">
  15. <view>
  16. <text>患者姓名 : {{ infoDATA.patientName || "-" }}({{
  17. infoDATA.bedNum || "-"
  18. }})</text>
  19. <button @click="getInspectList()">查看检查</button>
  20. </view>
  21. <view>患者编号 : {{ infoDATA.patientCode || "-" }}</view>
  22. <view>住院科室 :
  23. {{ infoDATA.department ? infoDATA.department.dept : "-" }}
  24. </view>
  25. </view>
  26. </view>
  27. <!-- ------------------未完成工单 start----------------- -->
  28. <view class="page_items" v-if="
  29. workData.length === 0 && patientOrders && patientOrders.length > 0
  30. ">
  31. <view class="page_item" v-for="(infoDATA, i) of patientOrders" :key="i">
  32. <view class="page_item_top">
  33. <view class="page_item_top_L">
  34. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  35. </view>
  36. <view class="page_item_top_R">
  37. <button class="L_iocn" @click="notice(infoDATA)">通知</button>
  38. </view>
  39. <view class="L"></view>
  40. <view class="R"></view>
  41. </view>
  42. <view class="page_item_cont">
  43. <view class="page_item_cont_T">
  44. <view class="page_item_cont_title">
  45. <text> <text class="starting">起</text> 点科室 </text>
  46. <text class="text_big">{{ infoDATA.startDept.dept }}</text>
  47. </view>
  48. </view>
  49. <view class="line"></view>
  50. <view class="page_item_cont_B">
  51. <template v-if="infoDATA.taskType.associationType.value == 'inspect'">
  52. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.middleDept" :key="i">
  53. <text> <text class="End">检</text> 查科室 </text>
  54. <text class="text_big">{{ dept.dept }}</text>
  55. <view></view>
  56. </view>
  57. </template>
  58. <template v-if="infoDATA.taskType.associationType.value != 'inspect'">
  59. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.endDepts" :key="i">
  60. <text> <text class="End">终</text> 点科室 </text>
  61. <text class="text_big">{{ dept.dept }}</text>
  62. </view>
  63. </template>
  64. </view>
  65. </view>
  66. <view class="page_item_foot">
  67. <view class="page_item_foot_text">
  68. <text class="text1">状态</text>
  69. <text class="text2" v-if="
  70. !(
  71. infoDATA.gdState.value == '5' &&
  72. infoDATA.taskType.associationType.value == 'inspect'
  73. )
  74. ">{{ infoDATA.gdState.name }}</text>
  75. <text class="text2" v-if="
  76. infoDATA.gdState.value == '5' &&
  77. infoDATA.taskType.associationType.value == 'inspect'
  78. ">待送回</text>
  79. </view>
  80. <view class="page_item_foot_text" v-if="infoDATA.taskType.associationType.value == 'inspect'">
  81. <text class="text1">预约时间</text>
  82. <text class="text2">{{
  83. infoDATA.checkList &&
  84. infoDATA.checkList[0] &&
  85. infoDATA.checkList[0].yyTime
  86. ? infoDATA.checkList[0].yyTime
  87. : "-"
  88. }}</text>
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. <!-- ------------------未完成工单 end----------------- -->
  94. <view class="title" v-if="workData && workData.length > 0">
  95. <text class="span1">工单信息</text>
  96. </view>
  97. <view class="page_items" v-if="!workData" style="font-size: 18px; margin-top: 15%">
  98. <view class="zwsj">
  99. <image class="zwsj_img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  100. <view class="zwsj_txt">暂无工单</view>
  101. </view>
  102. </view>
  103. <view class="page_items" v-if="workData && workData.length > 0">
  104. <view class="page_item" v-for="(infoDATA, i) of workData" :key="i">
  105. <view class="page_item_top">
  106. <view class="page_item_top_L" @click="ac1(infoDATA, i, acType)">
  107. <text class="ac">
  108. <text :class="{ acSpan: idTYPE == infoDATA.id }"></text>
  109. </text>
  110. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  111. <!-- emergencyType.value 1是正常,2是急,3是加急 -->
  112. <view class="page_item_cont_start emergency1" v-if="infoDATA.emergencyType.value == 1">
  113. <text>
  114. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  115. {{ infoDATA.emergencyType.name }}
  116. </text>
  117. </view>
  118. <view class="page_item_cont_start emergency" v-if="infoDATA.emergencyType.value == 2">
  119. <text>
  120. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  121. {{ infoDATA.emergencyType.name }}
  122. </text>
  123. </view>
  124. <view class="page_item_cont_start emergencys" v-if="infoDATA.emergencyType.value == 3">
  125. <text>
  126. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  127. {{ infoDATA.emergencyType.name }}
  128. </text>
  129. </view>
  130. </view>
  131. <view class="page_item_top_R">
  132. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">患者陪检</text>
  133. <text class="L_iocn" v-if="
  134. infoDATA.taskType.associationType.value == 'patientTransport'
  135. ">患者转运</text>
  136. </view>
  137. <view class="L"></view>
  138. <view class="R"></view>
  139. </view>
  140. <view class="page_item_cont">
  141. <view class="page_item_cont_T">
  142. <view class="page_item_cont_title">
  143. <text> <text class="starting">起</text> 点科室 </text>
  144. <text class="text_big">{{ infoDATA.startDept.dept }}</text>
  145. </view>
  146. </view>
  147. <view class="line"></view>
  148. <view class="page_item_cont_B">
  149. <template v-if="infoDATA.taskType.associationType.value == 'inspect'">
  150. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.middleDept" :key="i">
  151. <text> <text class="End">检</text> 查科室 </text>
  152. <text class="text_big">{{ dept.dept }}</text>
  153. <view></view>
  154. </view>
  155. </template>
  156. <template v-if="infoDATA.taskType.associationType.value != 'inspect'">
  157. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.endDepts" :key="i">
  158. <text> <text class="End">终</text> 点科室 </text>
  159. <text class="text_big">{{ dept.dept }}</text>
  160. </view>
  161. </template>
  162. </view>
  163. </view>
  164. <view class="page_item_foot">
  165. <view class="page_item_foot_text">
  166. <text class="text1">状态</text>
  167. <text class="text2" v-if="
  168. !(
  169. infoDATA.gdState.value == '5' &&
  170. infoDATA.taskType.associationType.value == 'inspect'
  171. )
  172. ">{{ infoDATA.gdState.name }}</text>
  173. <text class="text2" v-if="
  174. infoDATA.gdState.value == '5' &&
  175. infoDATA.taskType.associationType.value == 'inspect'
  176. ">待送回</text>
  177. </view>
  178. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '2'">
  179. <text class="text1">预计响应时间</text>
  180. <text class="text2">{{ infoDATA.estimeResponseTime || 0 }}</text>
  181. </view>
  182. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '5'">
  183. <text class="text1" v-if="!(infoDATA.taskType.associationType.value == 'inspect')">预计送达时间</text>
  184. <text class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect'">预计送回时间</text>
  185. <text class="text2">{{ infoDATA.estimeCompleteTime || 0 }}</text>
  186. </view>
  187. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '4'">
  188. <text class="text1">预计到达时间</text>
  189. <text class="text2">{{ infoDATA.estimateArriveTime || 0 }}</text>
  190. </view>
  191. <view class="page_item_foot_text">
  192. <text class="text1">创建时间</text>
  193. <text class="text2">{{ infoDATA.startTime }}</text>
  194. </view>
  195. </view>
  196. </view>
  197. </view>
  198. <view class="foot_btn2" v-if="workData && workData.length > 0 && isShow">
  199. <view class="btn1" @click="allStart(typeData)">一键操作</view>
  200. <view class="btn1" @click="scanDept()">送回病房</view>
  201. <view class="btn2" @click="showAlert">知道了</view>
  202. </view>
  203. <!-- <view class="foot_btn2" v-if="
  204. workData && workData.length === 0 && isShow && wechatFocusSwitch == 1
  205. "> -->
  206. <view class="foot_btn2" v-if="
  207. workData && workData.length === 0 && isShow
  208. ">
  209. <!-- <view class="btn1" @click="help">{{
  210. infoDATA.focusPatient == 1 ? "无需帮助" : "需要帮助"
  211. }}</view> -->
  212. <view class="btn3" @click="scanDept()">送回病房</view>
  213. <view class="btn3" @click="showAlert">知道了</view>
  214. </view>
  215. <view class="foot_btn2" v-if="!isShow">
  216. <view class="btn3" @click="scanDept()">送回病房</view>
  217. <view class="btn3" @click="showAlert">知道了</view>
  218. </view>
  219. </view>
  220. <!-- 弹窗 -->
  221. <!-- <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  222. @know="know" :operate="models.operate" @ok="ok" @cancel="cancel"></showModel> -->
  223. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  224. @know="know" :operate="models.operate"></showModel>
  225. <!-- 送回病房弹窗 -->
  226. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  227. :operate="models1.operate" @ok="ok1" @cancel="cancel1"></showModel>
  228. <!-- 送回病房建单弹窗 -->
  229. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  230. :operate="models2.operate" @ok="ok2" @cancel="cancel2"></showModel>
  231. <!-- 送回病房建单弹窗-扫描科室 -->
  232. <showModel :title="models3.title" :icon="models3.icon" :disjunctor="models3.disjunctor" :content="models3.content"
  233. :operate="models3.operate" @ok="ok3" @cancel="cancel3"></showModel>
  234. </view>
  235. </template>
  236. <script>
  237. import showModel from "../../components/showModel/showModel.vue";
  238. import {
  239. get,
  240. post,
  241. SM,
  242. webHandle
  243. } from "../../http/http.js";
  244. export default {
  245. data() {
  246. return {
  247. currentCode: '', //当前小扫描的科室二维码
  248. SMFlag:true,
  249. options: {},
  250. // wechatFocusSwitch: 0,
  251. hosId: "",
  252. // 弹窗model
  253. models: {
  254. disjunctor: false,
  255. },
  256. // 送回病房弹窗model
  257. models1: {
  258. disjunctor: false,
  259. },
  260. // 送回病房建单弹窗model
  261. models2: {
  262. disjunctor: false,
  263. },
  264. // 送回病房建单弹窗model-扫描科室
  265. models3: {
  266. disjunctor: false,
  267. },
  268. infoDATA: {},
  269. workData: [],
  270. patientOrders: [],
  271. acType: Number,
  272. tabType: 1,
  273. idTYPE: "",
  274. userId: {
  275. ids: [],
  276. },
  277. typeData: null,
  278. types: false,
  279. code: "",
  280. animationData: {}, //动画
  281. isShow: true, //是否显示“一键操作”
  282. currentStartDept: {}, //扫描的起点科室
  283. };
  284. },
  285. methods: {
  286. ok2() {
  287. this.models2.disjunctor = false;
  288. uni.showLoading({
  289. mask: true,
  290. title: '加载中'
  291. })
  292. let userId = uni.getStorageSync("userData").user.id;
  293. let postData = {
  294. "workOrder": {
  295. sourceId: 4,
  296. "hosId": this.hosId,
  297. "startDept": {
  298. "id": this.options.id
  299. },
  300. "createDept": this.options.id,
  301. "patient": {
  302. "patientCode": this.infoDATA.patientCode
  303. },
  304. "worker": {
  305. "id": userId
  306. }
  307. }
  308. };
  309. post("/workerOrder/returnSickRoom", postData).then((res) => {
  310. console.log(res)
  311. uni.hideLoading();
  312. if (res.status == 200) {
  313. uni.showToast({
  314. icon: 'success',
  315. title: '建单成功',
  316. });
  317. } else {
  318. uni.showToast({
  319. icon: "none",
  320. title: "请求失败!",
  321. });
  322. }
  323. })
  324. },
  325. cancel2() {
  326. this.models2.disjunctor = false;
  327. },
  328. ok3() {
  329. this.models3.disjunctor = false;
  330. uni.showLoading({
  331. mask: true,
  332. title: '加载中'
  333. })
  334. let userId = uni.getStorageSync("userData").user.id;
  335. let postData = {
  336. "workOrder": {
  337. sourceId: 4,
  338. "hosId": this.hosId,
  339. "startDept": {
  340. "id": this.currentStartDept.id
  341. },
  342. "createDept": this.currentStartDept.id,
  343. "patient": {
  344. "patientCode": this.infoDATA.patientCode
  345. },
  346. "worker": {
  347. "id": userId
  348. }
  349. }
  350. };
  351. post("/workerOrder/returnSickRoom", postData).then((res) => {
  352. console.log(res)
  353. uni.hideLoading();
  354. if (res.status == 200) {
  355. uni.showToast({
  356. icon: 'success',
  357. title: '建单成功',
  358. });
  359. } else {
  360. uni.showToast({
  361. icon: "none",
  362. title: "请求失败!",
  363. });
  364. }
  365. })
  366. },
  367. cancel3() {
  368. this.models3.disjunctor = false;
  369. },
  370. // 送回病房-建单
  371. sendBuild() {
  372. let infoDATA = JSON.parse(this.options.infoDATA);
  373. this.models2 = {
  374. disjunctor: true,
  375. title: "提示",
  376. content: `您选择的起点科室为【${this.options.dept}】,您将从【${this.options.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
  377. icon: "warn",
  378. operate: {
  379. ok: "确认建单",
  380. cancel: "取消",
  381. },
  382. };
  383. },
  384. // 送回病房-扫描科室
  385. scanDept() {
  386. if (!this.SMFlag) {
  387. return;
  388. }
  389. this.SMFlag = false;
  390. let infoDATA = JSON.parse(this.options.infoDATA);
  391. let code = "";
  392. SM().then((ress1) => {
  393. uni.showLoading({
  394. title: "加载中",
  395. mask: true,
  396. });
  397. //检验二维码的有效性
  398. post("/dept/scanning", {
  399. content: ress1,
  400. }).then((result) => {
  401. this.SMFlag = true;
  402. if (result.state == 200 || result.state == 201) {
  403. let ress = result.code;
  404. if (ress) {
  405. code = ress;
  406. // 科室扫描
  407. let postData = {
  408. "idx": 0,
  409. "sum": 1,
  410. "department": {
  411. "hospital": {
  412. "id": this.hosId
  413. },
  414. "qrcode": code
  415. }
  416. };
  417. post("/data/fetchDataList/department", postData).then((res) => {
  418. uni.hideLoading();
  419. if (res.status == 200) {
  420. if(res.totalNum > 0){
  421. this.currentStartDept = res.list[0]; //baba
  422. this.models3 = {
  423. disjunctor: true,
  424. title: "提示",
  425. content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
  426. icon: "warn",
  427. operate: {
  428. ok: "确认建单",
  429. cancel: "取消",
  430. },
  431. };
  432. }else{
  433. uni.hideLoading();
  434. uni.showToast({
  435. icon: "none",
  436. title: "请扫描正确的科室码!",
  437. });
  438. }
  439. } else {
  440. uni.hideLoading();
  441. uni.showToast({
  442. icon: "none",
  443. title: "请求失败!",
  444. });
  445. }
  446. });
  447. }
  448. } else {
  449. uni.hideLoading();
  450. uni.showToast({
  451. icon: "none",
  452. title: "请求失败!",
  453. });
  454. }
  455. });
  456. }).catch(err=>{
  457. this.SMFlag = true;
  458. });
  459. },
  460. // 送回病房-选择起点科室
  461. sendBack() {
  462. let infoDATA = JSON.parse(this.options.infoDATA);
  463. this.models1 = {
  464. disjunctor: true,
  465. title: "提示",
  466. content: `您好,您是要将【${infoDATA.patientName}】送回病房吗?如确认请您点击“选择起点科室”建立工单。`,
  467. icon: "warn",
  468. operate: {
  469. ok: "选择起点科室",
  470. cancel: "取消",
  471. },
  472. };
  473. },
  474. ok1() {
  475. this.models1.disjunctor = false;
  476. uni.navigateTo({
  477. url: `../search/search?type=sendBack&code=${this.options.code}&infoDATA=${this.options.infoDATA}&patientOrders=${this.options.patientOrders}&workData=${this.options.workData}`,
  478. });
  479. },
  480. cancel1() {
  481. this.models1.disjunctor = false;
  482. },
  483. // 查看检查
  484. getInspectList() {
  485. uni.navigateTo({
  486. url: `../inspectList/inspectList?id=${this.infoDATA.department.id}&dept=${this.infoDATA.department.dept}&residenceNo=${this.infoDATA.residenceNo}`,
  487. });
  488. },
  489. // 通知
  490. notice(info) {
  491. let postData = {
  492. userIds: info.worker.id + "",
  493. content: `您负责护送的患者${info.patient.patientName}(${info.patient.bedNum})已经检查完毕,请尽快执行工单的下一步。`,
  494. };
  495. post("/wechat/sendCustomMessage", postData).then((res) => {
  496. if (res.status == 200) {
  497. uni.showToast({
  498. title: "通知成功",
  499. duration: 2000,
  500. });
  501. } else {
  502. uni.showToast({
  503. icon: "none",
  504. title: "请求失败!",
  505. });
  506. }
  507. });
  508. },
  509. //需要帮助、无需帮助
  510. // help() {
  511. // this.models = {
  512. // disjunctor: true,
  513. // title: "提示",
  514. // content: this.infoDATA.focusPatient == 1 ?
  515. // "如设置为“无需帮助”则后期此患者检查将不会自动进行建单,可通过“需要帮助”设置自动建单" : "如设置为“需要帮助”则后期此患者检查会自动进行建单,可通过“无需帮助”取消设置",
  516. // icon: "warn",
  517. // operate: {
  518. // ok: "确定",
  519. // cancel: "取消",
  520. // },
  521. // };
  522. // },
  523. //需要帮助,无需帮助确定
  524. // ok() {
  525. // this.models.disjunctor = false;
  526. // post("/nurse/updData/patient", {
  527. // patient: {
  528. // id: this.infoDATA.id,
  529. // focusPatient: this.infoDATA.focusPatient == 1 ? 0 : 1,
  530. // },
  531. // }).then((res) => {
  532. // let msg = "设置失败";
  533. // let icon = "error";
  534. // if (res.status == 200) {
  535. // msg = "设置成功";
  536. // icon = "success";
  537. // this.infoDATA.focusPatient = res.data.focusPatient;
  538. // }
  539. // this.models = {
  540. // disjunctor: true,
  541. // content: msg,
  542. // icon: icon,
  543. // operate: {
  544. // know: "知道了",
  545. // },
  546. // };
  547. // });
  548. // },
  549. //需要帮助,无需帮助取消
  550. // cancel() {
  551. // this.models.disjunctor = false;
  552. // },
  553. //知道了
  554. know() {
  555. this.models.disjunctor = false;
  556. },
  557. // 知道了
  558. showAlert() {
  559. uni.navigateTo({
  560. url: "../receiptpage/receiptpage",
  561. });
  562. },
  563. //一键操作
  564. allStart(data) {
  565. let list = {};
  566. if (data) {
  567. let type = "";
  568. if (data.gdState.value == "8") {
  569. if (!this.SMFlag) {
  570. return;
  571. }
  572. this.SMFlag = false;
  573. SM().then((ress1) => {
  574. // ----------------
  575. uni.showLoading({
  576. title: "加载中",
  577. mask: true,
  578. });
  579. //检验二维码的有效性
  580. post("/dept/scanning", {
  581. content: ress1,
  582. }).then((result) => {
  583. this.SMFlag = true;
  584. this.currentCode = result.code;
  585. if (result.state == 200 || result.state == 201) {
  586. let ress = result.code;
  587. if (ress) {
  588. var ids = [];
  589. ids.push(data.id);
  590. type = "orderSign/" + ress;
  591. list = {ids};
  592. // 科室签到
  593. post("/workerOrder/" + type, list).then((res) => {
  594. uni.hideLoading();
  595. if (res.status == 200) {
  596. // model: JSON.stringify(res), //签到返回的信息
  597. // type: data.taskType.associationType.value, //关联类型
  598. // code: ress, //二维码code
  599. // ids //科室ID数组
  600. uni.navigateTo({
  601. url: `../scanning_djEnd/scanning_djEnd?type=${
  602. data.taskType.associationType.value
  603. }&code=${ress}&ids=${ids}&model=${encodeURIComponent(
  604. JSON.stringify(res)
  605. )}`,
  606. });
  607. } else {
  608. uni.navigateTo({
  609. url: `../scanning_djEnd/scanning_djEnd?model=${encodeURIComponent(
  610. JSON.stringify(res)
  611. )}&qrcode=${this.currentCode}`,
  612. });
  613. }
  614. });
  615. }
  616. } else {
  617. uni.hideLoading();
  618. uni.showToast({
  619. icon: "none",
  620. title: "请求失败!",
  621. });
  622. }
  623. });
  624. // ------------------------------
  625. }).catch(err=>{
  626. this.SMFlag = true;
  627. });
  628. } else {
  629. if (data.taskType.associationType.value == "patientTransport") {
  630. type = "handleTrans";
  631. let data = {
  632. ids: this.userId.ids,
  633. // "11789558|51131895|7|黄石城乡|陈琛|女|19981003|20180803081051|Z消化内科Ⅰ"
  634. code: this.code,
  635. };
  636. list = data;
  637. }
  638. if (data.taskType.associationType.value == "inspect") {
  639. type = "handleIns";
  640. let data = {
  641. ids: this.userId.ids,
  642. // "11789558|51131895|7|黄石城乡|陈琛|女|19981003|20180803081051|Z消化内科Ⅰ"
  643. code: this.code,
  644. };
  645. list = data;
  646. }
  647. uni.showLoading({
  648. title: "加载中",
  649. mask: true,
  650. });
  651. post("/workerOrder/" + type, list).then((res) => {
  652. uni.hideLoading();
  653. if (res.status == 200) {
  654. uni.navigateTo({
  655. url: `../scanning_insEnd/scanning_insEnd?type=${
  656. data.taskType.associationType.value
  657. }&model=${encodeURIComponent(JSON.stringify(res))}`,
  658. });
  659. } else {
  660. uni.navigateTo({
  661. url: `../scanning_insEnd/scanning_insEnd?model=${encodeURIComponent(
  662. JSON.stringify(res)
  663. )}`,
  664. });
  665. }
  666. });
  667. }
  668. } else {
  669. this.models = {
  670. disjunctor: true,
  671. content: "请选择工单",
  672. icon: "warn",
  673. operate: {
  674. know: "知道了",
  675. },
  676. };
  677. }
  678. },
  679. //选中
  680. ac(data, i, type) {
  681. this.idTYPE = "";
  682. },
  683. //未选中
  684. ac1(data, i, type) {
  685. if (this.idTYPE == data.id) {
  686. //显示
  687. this.isShow = true;
  688. this.idTYPE = "";
  689. this.userId.ids = [];
  690. this.typeData = null;
  691. } else {
  692. if (data.gdState.value >= 5) {
  693. //隐藏
  694. this.isShow = false;
  695. } else {
  696. //显示
  697. this.isShow = true;
  698. }
  699. this.idTYPE = data.id;
  700. this.typeData = data;
  701. this.userId.ids[0] = this.idTYPE;
  702. }
  703. },
  704. texiao() {
  705. if (this.workData && this.workData.length > 0) {
  706. setTimeout(() => {
  707. this.animation.height(0).opacity(0).step();
  708. this.animationData = this.animation.export();
  709. }, 15000);
  710. }
  711. },
  712. // 获取需要帮助权限
  713. // getWechatFocusSwitch() {
  714. // let postData = {
  715. // idx: 0,
  716. // sum: 1,
  717. // taskType: {
  718. // hosIds: this.hosId,
  719. // associationType: {
  720. // id: 260,
  721. // },
  722. // },
  723. // };
  724. // post("/configuration/fetchDataList/taskType", postData).then((res) => {
  725. // if (res.status == 200) {
  726. // this.wechatFocusSwitch = res.list[0].wechatFocusSwitch || 0;
  727. // } else {
  728. // uni.showToast({
  729. // icon: "none",
  730. // title: "请求失败!",
  731. // });
  732. // }
  733. // });
  734. // },
  735. },
  736. onLoad(options) {
  737. console.log(options);
  738. this.options = options;
  739. // 送回病房建单 start
  740. if (options.id && options.dept) {
  741. this.sendBuild();
  742. }
  743. // 送回病房建单 end
  744. this.hosId = uni.getStorageSync("userData").infoPermission.hospitals[0].id;
  745. // this.getWechatFocusSwitch();
  746. this.infoDATA = JSON.parse(options.infoDATA);
  747. console.log(this.infoDATA);
  748. this.workData = JSON.parse(options.workData);
  749. if (options.patientOrders != 'undefined') {
  750. this.patientOrders = JSON.parse(options.patientOrders);
  751. }
  752. this.code = options.code;
  753. // #ifdef APP-PLUS
  754. webHandle("no", "app");
  755. // #endif
  756. // #ifdef H5
  757. webHandle("no", "wx");
  758. // #endif
  759. },
  760. onShow() {
  761. this.SMFlag = true;
  762. // 创建动画
  763. this.animation = uni.createAnimation({
  764. duration: 500,
  765. timingFunction: "ease",
  766. delay: 2000,
  767. });
  768. setTimeout(() => {
  769. this.texiao();
  770. }, 500);
  771. },
  772. onHide() {
  773. this.animationData = {};
  774. },
  775. onUnload() {
  776. // 页面关闭后清空数据
  777. this.animationData = {};
  778. },
  779. };
  780. </script>
  781. <style lang="less">
  782. ::-webkit-scrollbar {
  783. width: 0px;
  784. }
  785. ::-webkit-scrollbar-track {
  786. background-color: none;
  787. }
  788. ::-webkit-scrollbar-thumb {
  789. background-color: none;
  790. }
  791. ::-webkit-scrollbar-thumb:hover {
  792. background-color: none;
  793. }
  794. ::-webkit-scrollbar-thumb:active {
  795. background-color: none;
  796. }
  797. .Scanning_ins {
  798. .title {
  799. font-size: 36rpx;
  800. margin-top: 20rpx;
  801. margin-bottom: 20rpx;
  802. font-weight: 700;
  803. position: relative;
  804. height: 40rpx;
  805. .span1 {
  806. position: absolute;
  807. left: 0;
  808. font-weight: 700;
  809. }
  810. .span2 {
  811. position: absolute;
  812. right: 20%;
  813. color: rgb(73, 184, 86);
  814. }
  815. .span3 {
  816. position: absolute;
  817. right: 0;
  818. color: rgb(73, 184, 86);
  819. }
  820. }
  821. .Scanning {
  822. padding: 0 20rpx;
  823. .Scanning_top {
  824. height: 400rpx;
  825. .Scanning_top_icon {
  826. width: 140rpx;
  827. height: 140rpx;
  828. margin: 0 auto;
  829. margin-top: 36rpx;
  830. border-radius: 50%;
  831. line-height: 140rpx;
  832. .cubeic-ok {
  833. font-size: 140rpx;
  834. color: #35b34a;
  835. }
  836. }
  837. .Scanning_top_text {
  838. .text1 {
  839. margin-top: 30rpx;
  840. font-size: 48rpx;
  841. text-align: center;
  842. }
  843. .success_tips {
  844. color: red;
  845. font-size: 30rpx;
  846. }
  847. }
  848. .Scanning_cont {
  849. font-size: 32rpx;
  850. margin-top: 16rpx;
  851. view {
  852. margin-bottom: 8rpx;
  853. display: flex;
  854. justify-content: center;
  855. align-items: center;
  856. button {
  857. font-size: 32rpx;
  858. height: 52rpx;
  859. line-height: 52rpx;
  860. margin: 0;
  861. color: rgb(7, 134, 60);
  862. font-weight: 700;
  863. }
  864. }
  865. .text {
  866. margin-top: 24rpx;
  867. color: #35b34a;
  868. }
  869. .text1 {
  870. margin-top: 24rpx;
  871. color: #ff3b53;
  872. }
  873. }
  874. }
  875. .page_items {
  876. margin-bottom: 110rpx;
  877. .zwsj {
  878. margin-top: 180rpx;
  879. display: flex;
  880. flex-direction: column;
  881. align-items: center;
  882. .zwsj_txt {
  883. font-size: 36rpx;
  884. font-weight: 700;
  885. margin-top: 20rpx;
  886. }
  887. .zwsj_img {
  888. width: 582rpx;
  889. }
  890. }
  891. .page_item {
  892. margin-top: 16rpx;
  893. min-height: 310rpx;
  894. background: #fff;
  895. border-radius: 8rpx;
  896. overflow: hidden;
  897. padding: 0 16rpx;
  898. border: 2rpx solid #e5e9ed;
  899. .L {
  900. width: 40rpx;
  901. height: 40rpx;
  902. border-radius: 50%;
  903. background: #f9fafb;
  904. position: relative;
  905. left: -50rpx;
  906. top: 66rpx;
  907. }
  908. .R {
  909. width: 40rpx;
  910. height: 40rpx;
  911. border-radius: 50%;
  912. background: #f9fafb;
  913. position: relative;
  914. float: right;
  915. right: -50rpx;
  916. top: 26rpx;
  917. }
  918. .starting {
  919. width: 50rpx;
  920. height: 50rpx;
  921. color: #fff;
  922. background: #49b856;
  923. display: inline-block;
  924. border-radius: 50%;
  925. text-align: center;
  926. line-height: 46rpx;
  927. font-size: 32rpx;
  928. margin-right: 6rpx;
  929. }
  930. .End {
  931. width: 50rpx;
  932. height: 50rpx;
  933. color: #fff;
  934. background: #39b199;
  935. display: inline-block;
  936. border-radius: 50%;
  937. text-align: center;
  938. line-height: 46rpx;
  939. font-size: 32rpx;
  940. margin-right: 6rpx;
  941. }
  942. .page_item_top {
  943. height: 86rpx;
  944. border-bottom: 2rpx dashed #e5e9ed;
  945. padding: 0 16rpx;
  946. .page_item_top_L {
  947. height: 100%;
  948. float: left;
  949. line-height: 88rpx;
  950. display: flex;
  951. align-items: center;
  952. .ac {
  953. width: 32rpx;
  954. height: 32rpx;
  955. border: 2rpx solid #ccc;
  956. display: flex;
  957. justify-content: center;
  958. align-items: center;
  959. position: relative;
  960. .acSpan {
  961. width: 24rpx;
  962. height: 24rpx;
  963. background: #39b199;
  964. display: block;
  965. }
  966. }
  967. .ac1 {
  968. width: 32rpx;
  969. height: 32rpx;
  970. border: 2rpx solid #ccc;
  971. display: inline-block;
  972. position: relative;
  973. }
  974. .emergencys {
  975. background: #ff3b53 !important;
  976. width: 124rpx !important;
  977. }
  978. .emergency {
  979. background: #ff3b53 !important;
  980. }
  981. .emergency1 {
  982. background: #49b856 !important;
  983. }
  984. .page_item_cont_start {
  985. text-align: center;
  986. height: 44rpx;
  987. width: 104rpx;
  988. line-height: 44rpx;
  989. border-radius: 8rpx;
  990. background: #49b856;
  991. color: #fff;
  992. display: inline-block;
  993. font-size: 28rpx;
  994. }
  995. .L_time {
  996. color: #6cc076;
  997. font-size: 32rpx;
  998. }
  999. .L_text {
  1000. font-size: 32rpx;
  1001. display: inline-block;
  1002. font-weight: 700;
  1003. }
  1004. }
  1005. .page_item_top_R {
  1006. height: 60rpx;
  1007. float: right;
  1008. padding-top: 20rpx;
  1009. font-size: 32rpx;
  1010. position: absolute;
  1011. right: 50rpx;
  1012. .L_iocn {
  1013. display: inline-block;
  1014. height: 52rpx;
  1015. line-height: 48rpx;
  1016. color: rgb(7, 134, 60);
  1017. font-size: 36rpx;
  1018. font-weight: 700;
  1019. }
  1020. }
  1021. }
  1022. .page_item_cont {
  1023. min-height: 180rpx;
  1024. max-height: 424rpx;
  1025. padding: 0 16rpx;
  1026. text-align: left;
  1027. position: relative;
  1028. .text_big {
  1029. font-size: 32rpx;
  1030. position: absolute;
  1031. right: 16rpx;
  1032. font-weight: 700;
  1033. margin-top: 10rpx;
  1034. }
  1035. .text_big2 {
  1036. font-size: 32rpx;
  1037. position: absolute;
  1038. right: 16rpx;
  1039. font-weight: 700;
  1040. }
  1041. .line {
  1042. height: 20rpx;
  1043. width: 2rpx;
  1044. border-left: 2rpx solid #e5e9ed;
  1045. position: absolute;
  1046. top: 82rpx;
  1047. left: 40rpx;
  1048. }
  1049. .lines {
  1050. height: 40%;
  1051. width: 2rpx;
  1052. border-left: 2rpx solid #e5e9ed;
  1053. position: absolute;
  1054. top: 23%;
  1055. left: 36rpx;
  1056. }
  1057. .page_item_cont_T {
  1058. padding-top: 28rpx;
  1059. font-size: 28rpx;
  1060. .page_item_cont_title {
  1061. height: 100%;
  1062. font-size: 32rpx;
  1063. }
  1064. }
  1065. .page_item_cont_B {
  1066. padding-top: 28rpx;
  1067. margin-bottom: 28rpx;
  1068. .page_item_cont_title {
  1069. height: 60rpx;
  1070. font-size: 32rpx;
  1071. }
  1072. .page_item_cont_title1 {
  1073. height: 60rpx;
  1074. line-height: 60rpx;
  1075. font-size: 32rpx;
  1076. padding-left: 64rpx;
  1077. }
  1078. }
  1079. }
  1080. .page_item_foot {
  1081. border-top: 2rpx dashed #e5e9ed;
  1082. border-bottom: 2rpx dashed #e5e9ed;
  1083. padding: 28rpx 16rpx;
  1084. text-align: left;
  1085. .page_item_foot_text {
  1086. height: 48rpx;
  1087. font-size: 32rpx;
  1088. line-height: 48rpx;
  1089. margin-bottom: 20rpx;
  1090. .text1 {
  1091. color: rgb(102, 102, 102);
  1092. }
  1093. .text2 {
  1094. float: right;
  1095. font-weight: 700;
  1096. }
  1097. }
  1098. }
  1099. #infos {
  1100. display: none;
  1101. }
  1102. .page_item_infos {
  1103. padding-bottom: 20rpx;
  1104. border-bottom: 2rpx dashed #e5e9ed;
  1105. .page_item_info2 {
  1106. text-align: left;
  1107. line-height: 60rpx;
  1108. font-size: 32rpx;
  1109. padding-left: 16rpx;
  1110. .page_item_foot_text {
  1111. height: 48rpx;
  1112. font-size: 32rpx;
  1113. line-height: 48rpx;
  1114. margin-bottom: 20rpx;
  1115. .text1 {
  1116. color: rgb(102, 102, 102);
  1117. }
  1118. .text2 {
  1119. float: right;
  1120. font-weight: 700;
  1121. }
  1122. }
  1123. }
  1124. }
  1125. }
  1126. }
  1127. .foot_btn2 {
  1128. position: fixed;
  1129. bottom: 0;
  1130. right: 20rpx;
  1131. left: 20rpx;
  1132. line-height: 66rpx;
  1133. height: 100rpx;
  1134. border-top: 2rpx solid #e5e9ed;
  1135. background: #f9fafb;
  1136. display: flex;
  1137. justify-content: space-between;
  1138. .btn1,
  1139. .btn2 {
  1140. height: 66rpx;
  1141. width: 32%;
  1142. background-image: linear-gradient(to right, #72c172, #3bb197);
  1143. color: #fff;
  1144. border-radius: 8rpx;
  1145. font-size: 32rpx;
  1146. margin-top: 16rpx;
  1147. text-align: center;
  1148. }
  1149. .btn3 {
  1150. height: 66rpx;
  1151. width: 48%;
  1152. background-image: linear-gradient(to right, #72c172, #3bb197);
  1153. color: #fff;
  1154. border-radius: 8rpx;
  1155. font-size: 32rpx;
  1156. margin-top: 16rpx;
  1157. text-align: center;
  1158. }
  1159. }
  1160. }
  1161. }
  1162. </style>