scanning_ins.vue 42 KB

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