scanning_all.vue 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319
  1. <template>
  2. <view class="Scanning_all">
  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>
  11. <view class="Scanning_cont">
  12. 当前科室关联多个工单,请查看工单信息,
  13. <view>可选择多个工单后,点击 一键送达 完成配送.</view>
  14. </view>
  15. </view>
  16. <view class="title" v-if="workData && workData.length > 0">
  17. <text class="span1">工单信息</text>
  18. <text class="span2" @click="all()" v-if="tabType != 'specimenPlan'">全选</text>
  19. <text class="span3" @click="Dall()">全不选</text>
  20. </view>
  21. <view class="tabs" v-if="workData && workData.length > 0">
  22. <view class="tab">
  23. <view @click="act('drugsBag')" v-if="infoDATA['drugsBag']">
  24. <view id="10" :class="{ acts: tabType == 'drugsBag' }">药品({{ infoDATA.drugsBag.length }})</view>
  25. </view>
  26. <view @click="act('specimen')" v-if="infoDATA['specimen']">
  27. <view id="40" :class="{ acts: tabType == 'specimen' }">标本({{ infoDATA.specimen.length }})</view>
  28. </view>
  29. <view @click="act('specimenPlan')" v-if="infoDATA['specimenPlan']">
  30. <view id="40" :class="{ acts: tabType == 'specimenPlan' }">标本轮巡({{ infoDATA.specimenPlan.length }})</view>
  31. </view>
  32. <view @click="act('patientTransport')" v-if="infoDATA['patientTransport']">
  33. <view id="20" :class="{ acts: tabType == 'patientTransport' }">患者转运({{ infoDATA.patientTransport.length }})
  34. </view>
  35. </view>
  36. <view @click="act('inspect')" v-if="infoDATA['inspect']">
  37. <view id="30" :class="{ acts: tabType == 'inspect' }">患者陪检({{ infoDATA.inspect.length }})</view>
  38. </view>
  39. <view @click="act('jPBag')" v-if="infoDATA['jPBag']">
  40. <view id="40" :class="{ acts: tabType == 'jPBag' }">静配({{ infoDATA.jPBag.length }})</view>
  41. </view>
  42. <view @click="act('other')" v-if="infoDATA['other']">
  43. <view id="40" :class="{ acts: tabType == 'other' }">其他({{ infoDATA.other.length }})</view>
  44. </view>
  45. <view @click="act('blood')" v-if="infoDATA['blood']">
  46. <view id="40" :class="{ acts: tabType == 'blood' }">血制品({{ infoDATA.blood.length }})</view>
  47. </view>
  48. <view @click="act('clothingGet')" v-if="infoDATA['clothingGet']">
  49. <view id="40" :class="{ acts: tabType == 'clothingGet' }">被服洗涤回收({{ infoDATA.clothingGet.length }})</view>
  50. </view>
  51. <view @click="act('clothingSend')" v-if="infoDATA['clothingSend']">
  52. <view id="40" :class="{ acts: tabType == 'clothingSend' }">被服洗涤送回({{ infoDATA.clothingSend.length }})</view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="page_items" v-if="!workData" style="font-size: 18px; margin-top: 15%">
  57. <view class="zwsj">
  58. <image class="zwsj_img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  59. <view class="zwsj_txt">暂无工单</view>
  60. </view>
  61. </view>
  62. <view class="page_items footerOtherMargin" v-if="workData && workData.length > 0">
  63. <view class="page_item" v-for="(infoDATA, i) of workData" :key="i">
  64. <view class="page_item_top">
  65. <view class="page_item_top_L">
  66. <text v-show="hasSelect(infoDATA.id)" class="ac" @click="ac(infoDATA, i)" :id="infoDATA.id">
  67. <text class="ac-span"></text>
  68. </text>
  69. <text v-show="!hasSelect(infoDATA.id)" class="ac1" @click="ac1(infoDATA, i)"
  70. :id="infoDATA.id + '0'"></text>
  71. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  72. <view class="page_item_cont_start emergency1" v-if="infoDATA.emergencyType.value == 1">
  73. <text class="page_item_cont_start_txt">
  74. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  75. {{ infoDATA.emergencyType.name }}
  76. </text>
  77. </view>
  78. <view class="page_item_cont_start emergency" v-if="infoDATA.emergencyType.value == 2">
  79. <text class="page_item_cont_start_txt">
  80. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  81. {{ infoDATA.emergencyType.name }}
  82. </text>
  83. </view>
  84. <view class="page_item_cont_start emergencys" v-if="infoDATA.emergencyType.value == 3">
  85. <text class="page_item_cont_start_txt">
  86. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  87. {{ infoDATA.emergencyType.name }}
  88. </text>
  89. </view>
  90. </view>
  91. <view class="page_item_top_R">
  92. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimen'">标本</text>
  93. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimenPlan'">标本</text>
  94. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">药品</text>
  95. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'jPBag'">静配</text>
  96. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">患者陪检</text>
  97. <text class="L_iocn" v-if="
  98. infoDATA.taskType.associationType.value == 'patientTransport'
  99. ">患者转运</text>
  100. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他</text>
  101. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'blood'">血制品</text>
  102. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'clothingGet'">被服洗涤回收</text>
  103. <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'clothingSend'">被服洗涤送回</text>
  104. </view>
  105. <view class="L"></view>
  106. <view class="R"></view>
  107. </view>
  108. <view class="page_item_cont">
  109. <view class="page_item_cont_T">
  110. <view class="page_item_cont_title">
  111. <text> <text class="starting">起</text> 点科室 </text>
  112. <text class="text_big">{{ infoDATA.startDept.dept }}</text>
  113. </view>
  114. </view>
  115. <view class="line"></view>
  116. <view class="page_item_cont_B">
  117. <template v-if="infoDATA.taskType.associationType.value == 'inspect'">
  118. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.middleDept" :key="i">
  119. <text> <text class="End">检</text> 查科室 </text>
  120. <text class="text_big">{{ dept.dept }}</text>
  121. <view></view>
  122. </view>
  123. </template>
  124. <template v-if="infoDATA.taskType.associationType.value != 'inspect'">
  125. <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.endDepts" :key="i">
  126. <text> <text class="End">终</text> 点科室 </text>
  127. <text class="text_big">{{ dept.dept }}</text>
  128. </view>
  129. </template>
  130. </view>
  131. </view>
  132. <view class="page_item_foot">
  133. <view class="page_item_foot_text">
  134. <text class="text1">状态</text>
  135. <text class="text2" v-if="
  136. !(
  137. infoDATA.gdState.value == '5' &&
  138. infoDATA.taskType.associationType.value == 'inspect'
  139. )
  140. ">{{ infoDATA.gdState.name }}</text>
  141. <text class="text2" v-if="
  142. infoDATA.gdState.value == '5' &&
  143. infoDATA.taskType.associationType.value == 'inspect'
  144. ">待送回</text>
  145. </view>
  146. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '2'">
  147. <text class="text1">预计响应时间</text>
  148. <text class="text2">{{ infoDATA.estimeResponseTime || '无' }}</text>
  149. </view>
  150. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '5'">
  151. <text class="text1" v-if="!(infoDATA.taskType.associationType.value == 'inspect')">预计送达时间</text>
  152. <text class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect'">预计送回时间</text>
  153. <text class="text2">{{ infoDATA.estimeCompleteTime || '无' }}</text>
  154. </view>
  155. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '4'">
  156. <text class="text1">预计到达时间</text>
  157. <text class="text2">{{ infoDATA.estimateArriveTime || '无' }}</text>
  158. </view>
  159. <view class="page_item_foot_text">
  160. <text class="text1">创建时间</text>
  161. <text class="text2">{{ infoDATA.startTime || '无' }}</text>
  162. </view>
  163. </view>
  164. </view>
  165. </view>
  166. <view class="foot_btn2 footerPadding" v-if="workData && workData.length > 0">
  167. <view class="btn1" @click="allStart()" v-if="flag">一键操作</view>
  168. <view class="btn1" v-if="!flag">一键操作</view>
  169. <view class="btn1" @click="showAlert">知道了</view>
  170. </view>
  171. <view class="foot_btn1 footerPadding" v-if="!workData">
  172. <view class="btn3" @click="showAlert">知道了</view>
  173. </view>
  174. </view>
  175. <!-- 弹窗 -->
  176. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  177. @know="know" :operate="models.operate"></showModel>
  178. <!-- 填写交接人工号弹窗 -->
  179. <selectAccount v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  180. @cancel="hosCancel">
  181. </selectAccount>
  182. </view>
  183. </template>
  184. <script>
  185. import showModel from "../../components/showModel/showModel.vue";
  186. import {
  187. post,
  188. SM,
  189. webHandle
  190. } from "../../http/http.js";
  191. export default {
  192. data() {
  193. return {
  194. hosId: null,
  195. currentCode: '', //当前小扫描的科室二维码
  196. SMFlag: true,
  197. // 填写交接人工号弹窗model
  198. hosModels: {
  199. disjunctor: false,
  200. },
  201. // 弹窗model
  202. models: {
  203. disjunctor: false,
  204. },
  205. infoDATA: {},
  206. workData: [],
  207. tabType: "", //当前选中项
  208. userId: {
  209. ids: [],
  210. },
  211. typeData: [],
  212. types: false,
  213. code: "",
  214. deptId: '',
  215. deptName: '',
  216. flag: true, //一键操作,禁止多次
  217. flagTimer: null,
  218. selectArr: [], //选中项
  219. animationData: {}, //动画
  220. };
  221. },
  222. methods: {
  223. // 填写交接人工号-确认
  224. hosOk(data) {
  225. console.log(data);
  226. const {
  227. accountName,
  228. account,
  229. accountId
  230. } = data;
  231. if (!accountName && !account) {
  232. //没有填写交接人
  233. uni.showModal({
  234. title: "提示",
  235. content: "请填写交接人工号!",
  236. showCancel: false,
  237. success: function(res) {
  238. if (res.confirm) {
  239. console.log("用户点击确定");
  240. } else if (res.cancel) {
  241. console.log("用户点击取消");
  242. }
  243. },
  244. });
  245. return;
  246. } else if ((!accountName && account) || (accountName && !account)) {
  247. //没有填写交接人
  248. uni.showModal({
  249. title: "提示",
  250. content: "请填写正确的交接人工号!",
  251. showCancel: false,
  252. success: function(res) {
  253. if (res.confirm) {
  254. console.log("用户点击确定");
  255. } else if (res.cancel) {
  256. console.log("用户点击取消");
  257. }
  258. },
  259. });
  260. return;
  261. }
  262. this.hosModels.disjunctor = false;
  263. this.orderDeptHandler(false, data);
  264. },
  265. // 填写交接人工号-取消
  266. hosCancel() {
  267. this.hosModels.disjunctor = false;
  268. this.flag = true;
  269. },
  270. // 填写交接人工号弹窗
  271. showSelectAccount() {
  272. this.hosModels = {
  273. disjunctor: true,
  274. };
  275. },
  276. // 知道了
  277. showAlert() {
  278. uni.navigateTo({
  279. url: "../receiptpage/receiptpage",
  280. });
  281. },
  282. //科室签到
  283. //trueBigScanner----判断是否大扫描
  284. //bigScanner----判断是否需要交接人
  285. //accountObj----弹窗填写的交接人信息
  286. orderDeptHandler(bigScanner, accountObj) {
  287. let type = "orderSign/" + this.code;
  288. let list = {
  289. ids: this.userId.ids,
  290. trueBigScanner: ['666']
  291. };
  292. bigScanner && (list.bigScanner = ['666']);
  293. if (accountObj) {
  294. list.handover = [accountObj.accountId];
  295. }
  296. uni.showLoading({
  297. title: "加载中",
  298. mask: true,
  299. });
  300. post("/workerOrder/" + type, list).then((res) => {
  301. console.log(this.tabType)
  302. uni.hideLoading();
  303. if (res.status == 200) {
  304. if (this.tabType == "inspect" || this.tabType == "patientTransport") {
  305. if (res.ids) {
  306. for (var i = 0; i < this.userId.ids.length; i++) {
  307. if (this.userId.ids[i] == res.ids[0]) {
  308. this.userId.ids.splice(i, 1);
  309. }
  310. }
  311. }
  312. uni.navigateTo({
  313. url: `../scanning_djInfo/scanning_djInfo?type=${
  314. this.tabType
  315. }&type1=${res.type}&infoData=${res.data}&status=${
  316. res.status
  317. }&msg=${res.msg}&deptCode=${this.code}&dept=${
  318. res.dept
  319. }&ids=${encodeURIComponent(
  320. JSON.stringify(this.userId.ids)
  321. )}&model=${encodeURIComponent(JSON.stringify(res))}`,
  322. });
  323. } else if (this.tabType == 'specimenPlan') {
  324. // -----------------------------
  325. console.log(this.selectArr, '选中工单')
  326. let gd = this.infoDATA.specimenPlan.find(v => v.id == this.selectArr[0]);
  327. let startDeptId = gd.startDept.id; //起点科室id
  328. let isDigitalHandover = gd.taskType.isDigitalHandover; //是否数字交接开关
  329. let signDeptId = res.deptId; //签到的科室id
  330. let gdId = gd.id;
  331. let gdState = gd.gdState.value;
  332. let endDepts = gd.endDepts.map(v => v.id).toString();
  333. uni.navigateTo({
  334. url: `../scanning_djEnd/scanning_djEnd?type=${
  335. this.tabType
  336. }&type1=${res.type}&code=${this.code}&dept=${
  337. res.dept
  338. }&ids=${encodeURIComponent(
  339. JSON.stringify(this.userId.ids)
  340. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
  341. });
  342. } else if (this.tabType == 'specimen') {
  343. if (res.deptType && res.deptType.value === 'middleRoom') {
  344. // 如果是中转科室
  345. uni.navigateTo({
  346. url: `../checkAfterBigScreen/checkAfterBigScreen?type=${
  347. this.tabType
  348. }&type1=${res.type}&code=${this.code}&dept=${
  349. res.dept
  350. }&ids=${encodeURIComponent(
  351. JSON.stringify(this.userId.ids)
  352. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  353. });
  354. } else if(res.type === 'spe-dsd-4'){
  355. // 检验方式是标本数字交接
  356. uni.navigateTo({
  357. url: `/pages/specimenHandoverNew/specimenHandoverNew?type=${
  358. this.tabType
  359. }&type1=${res.type}&code=${this.code}&dept=${
  360. res.dept
  361. }&ids=${encodeURIComponent(
  362. JSON.stringify(this.userId.ids)
  363. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  364. });
  365. } else {
  366. uni.navigateTo({
  367. url: `../scanning_djEnd/scanning_djEnd?type=${
  368. this.tabType
  369. }&type1=${res.type}&code=${this.code}&dept=${
  370. res.dept
  371. }&ids=${encodeURIComponent(
  372. JSON.stringify(this.userId.ids)
  373. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  374. });
  375. }
  376. } else {
  377. uni.navigateTo({
  378. url: `../scanning_djEnd/scanning_djEnd?type=${
  379. this.tabType
  380. }&type1=${res.type}&code=${this.code}&dept=${
  381. res.dept
  382. }&ids=${encodeURIComponent(
  383. JSON.stringify(this.userId.ids)
  384. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  385. });
  386. }
  387. } else if (res.status == "0000") {
  388. this.showSelectAccount();
  389. } else {
  390. this.flag = true;
  391. uni.navigateTo({
  392. url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
  393. res.type
  394. }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
  395. JSON.stringify(this.userId.ids)
  396. )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  397. });
  398. }
  399. });
  400. },
  401. //一键操作
  402. allStart() {
  403. console.log(this.tabType)
  404. clearTimeout(this.flagTimer);
  405. this.flagTimer = setTimeout(() => {
  406. this.flag = false;
  407. let list = {};
  408. let type = "";
  409. console.log(this.userId)
  410. if (this.userId.ids.length > 0) {
  411. if (this.tabType == "blood") {
  412. uni.showLoading({
  413. title: "加载中",
  414. mask: true,
  415. });
  416. // 判断是否签到批量核对
  417. post('/simple/data/fetchDataList/taskTypeConfig', {
  418. idx: 0,
  419. sum: 1,
  420. taskTypeConfig: {
  421. "taskTypeDTO": {
  422. "hosId": {
  423. "id": this.hosId
  424. },
  425. "ordinaryField": {
  426. "key": "ordinary_field",
  427. "value": "blood"
  428. }
  429. }
  430. },
  431. }).then(res => {
  432. if(res.status == 200){
  433. let list = res.list || [];
  434. if(list.length > 0){
  435. let signTypeList = list[0].signTypeList || [];
  436. let signType = signTypeList.find( v => v.value == 4 );
  437. if(signType){
  438. uni.hideLoading();
  439. uni.navigateTo({
  440. url: `/pages/newBlood/endOrderSignBlood/endOrderSignBlood?orderIds=${this.userId.ids.toString()}&deptName=${this.deptName}&deptId=${this.deptId}`,
  441. });
  442. }else{
  443. // 万能交接服务的血制品
  444. let postData = {
  445. "idx": 0,
  446. "sum": 1,
  447. "taskTypeConfig": {
  448. "taskTypeDTO": {
  449. "hosId": {
  450. "id": this.hosId
  451. },
  452. "ordinaryField": {
  453. "key": "ordinary_field",
  454. "value": "blood"
  455. }
  456. }
  457. }
  458. };
  459. post("/simple/data/fetchDataList/taskTypeConfig", postData).then((result) => {
  460. uni.hideLoading();
  461. if(result.status == 200){
  462. if(result.list && result.list[0] && result.list[0].checkType){
  463. if(result.list[0].checkType.value == 1){
  464. // 起点终点科室按照血制品类型进行核对
  465. uni.navigateTo({
  466. url: `../signIn_blood/signIn_blood?deptName=${this.deptName}&orderId=${this.userId.ids[0]}`,
  467. });
  468. }else if(result.list[0].checkType.value == 2){
  469. // 终点科室无需扫码进行核对
  470. uni.navigateTo({
  471. url: `../check_blood/check_blood?orderId=${this.userId.ids[0]}`,
  472. });
  473. }
  474. }else{
  475. uni.showToast({
  476. icon: "none",
  477. title: "请前往血制品配置页面配置核对方式!",
  478. });
  479. }
  480. }else{
  481. uni.showToast({
  482. icon: "none",
  483. title: result.msg || "接口获取数据失败!",
  484. });
  485. }
  486. })
  487. }
  488. }else{
  489. uni.showToast({
  490. icon: "none",
  491. title: "请配置血制品任务类型!",
  492. });
  493. }
  494. }else{
  495. uni.hideLoading();
  496. uni.showToast({
  497. icon: "none",
  498. title: res.msg || "接口获取数据失败!",
  499. });
  500. }
  501. })
  502. }else if (this.tabType == "clothingGet") {
  503. uni.navigateTo({
  504. url: `../quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck?orderIds=${this.userId.ids.toString()}&endDeptName=${this.deptName}`
  505. })
  506. } else if (this.tabType == "clothingSend") {
  507. let postData = {
  508. ids: this.userId.ids,
  509. type: 'clothingSend',
  510. };
  511. uni.showLoading({
  512. title: "加载中",
  513. mask: true,
  514. });
  515. post("/transflow/bigScan", postData).then((res) => {
  516. uni.hideLoading();
  517. if (res.status == 200) {
  518. uni.navigateTo({
  519. url: "../receiptpage/receiptpage",
  520. });
  521. } else {
  522. uni.showToast({
  523. icon: "none",
  524. title: res.msg || "接口获取数据失败!",
  525. });
  526. }
  527. });
  528. } else if (
  529. this.tabType == "drugsBag" ||
  530. this.tabType == "jPBag" ||
  531. this.tabType == "other" ||
  532. this.tabType == "specimen" ||
  533. this.tabType == "specimenPlan"
  534. ) {
  535. this.orderDeptHandler(true);
  536. } else {
  537. if (!this.SMFlag) {
  538. return;
  539. }
  540. this.SMFlag = false;
  541. SM()
  542. .then((ress1) => {
  543. uni.showLoading({
  544. title: "加载中",
  545. mask: true,
  546. });
  547. //检验二维码的有效性
  548. post("/dept/scanning", {
  549. content: ress1,
  550. }).then((result) => {
  551. this.SMFlag = true;
  552. this.currentCode = result.code;
  553. if (result.state == 200 || result.state == 201) {
  554. let ress = result.code;
  555. if (ress) {
  556. if (this.tabType == "patientTransport") {
  557. type = "handleTrans";
  558. let data = {
  559. ids: this.userId.ids,
  560. deptCode: this.code,
  561. code: ress,
  562. };
  563. list = data;
  564. }
  565. if (this.tabType == "inspect") {
  566. type = "handleIns";
  567. let data = {
  568. ids: this.userId.ids,
  569. deptCode: this.code,
  570. code: ress,
  571. };
  572. list = data;
  573. }
  574. post("/workerOrder/" + type, list).then((res) => {
  575. uni.hideLoading();
  576. if (res.status == 200) {
  577. if (
  578. this.tabType == "inspect" ||
  579. this.tabType == "patientTransport"
  580. ) {
  581. if (res.ids) {
  582. for (var i = 0; i < this.userId.ids.length; i++) {
  583. if (this.userId.ids[i] == res.ids[0]) {
  584. this.userId.ids.splice(i, 1);
  585. }
  586. }
  587. }
  588. uni.navigateTo({
  589. url: `../scanning_djInfo/scanning_djInfo?type=${
  590. this.tabType
  591. }&type1=${res.type}&infoData=${res.data}&status=${
  592. res.status
  593. }&msg=${res.msg}&deptCode=${this.code}&dept=${
  594. res.dept
  595. }&ids=${encodeURIComponent(
  596. JSON.stringify(this.userId.ids)
  597. )}&model=${encodeURIComponent(
  598. JSON.stringify(res)
  599. )}`,
  600. });
  601. } else {
  602. uni.navigateTo({
  603. url: `../scanning_djEnd/scanning_djEnd?type=${
  604. this.tabType
  605. }&type1=${res.type}&dept=${
  606. res.dept
  607. }&ids=${encodeURIComponent(
  608. JSON.stringify(this.userId.ids)
  609. )}&model=${encodeURIComponent(
  610. JSON.stringify(res)
  611. )}&code=${this.code}`,
  612. });
  613. }
  614. } else {
  615. uni.navigateTo({
  616. url: `../scanning_djEnd/scanning_djEnd?type=${
  617. this.tabType
  618. }&type1=${res.type}&dept=${
  619. res.dept
  620. }&ids=${encodeURIComponent(
  621. JSON.stringify(this.userId.ids)
  622. )}&model=${encodeURIComponent(
  623. JSON.stringify(res)
  624. )}&code=${this.code}&qrcode=${this.currentCode}`,
  625. });
  626. }
  627. });
  628. }
  629. } else {
  630. this.flag = true;
  631. uni.hideLoading();
  632. uni.showToast({
  633. icon: "none",
  634. title: result.info || "接口获取数据失败!",
  635. });
  636. }
  637. });
  638. })
  639. .catch((err) => {
  640. this.SMFlag = true;
  641. });
  642. }
  643. } else {
  644. this.flag = true;
  645. this.models = {
  646. disjunctor: true,
  647. title: "提示",
  648. content: "请选择工单!",
  649. icon: "warn",
  650. operate: {
  651. know: "知道了",
  652. },
  653. };
  654. }
  655. }, 500);
  656. },
  657. typePD(data, list) {
  658. if (list) {
  659. if (data.length >= 2) {
  660. for (var i = 0; i < data.length; i++) {
  661. if (data[i].gdState.value != list.gdState.value) {
  662. this.typeData.splice(i, 1);
  663. this.types = true;
  664. }
  665. }
  666. } else {
  667. this.types = false;
  668. }
  669. } else if (data.length == 1) {
  670. this.types = false;
  671. } else {
  672. this.types = false;
  673. for (var i = 0; i < data.length; i++) {
  674. if (data[0].gdState.value != data[i].gdState.value) {
  675. this.typeData.splice(i, 1);
  676. this.types = true;
  677. }
  678. }
  679. }
  680. },
  681. act(type) {
  682. this.Dall();
  683. this.tabType = type;
  684. this.workData = this.infoDATA[type];
  685. this.all();
  686. },
  687. // 已选择的项中是否包含该id
  688. hasSelect(id) {
  689. return this.selectArr.includes(id);
  690. },
  691. //取消
  692. ac(data, i) {
  693. console.log(data, i, this.selectArr, this.userId.ids, this.typeData);
  694. // id放入数组
  695. this.selectArr = this.selectArr.filter((item) => item != data.id);
  696. for (var i = 0; i < this.userId.ids.length; i++) {
  697. if (this.userId.ids[i] == data.id) {
  698. this.typeData.splice(i, 1);
  699. this.userId.ids.splice(i, 1);
  700. }
  701. }
  702. },
  703. //选中
  704. ac1(data, i) {
  705. console.log(data, i, this.userId.ids, '选中');
  706. if (this.tabType == 'specimenPlan' && this.typeData.length > 0) {
  707. this.typeData = [data];
  708. } else {
  709. this.typeData.push(data);
  710. }
  711. this.types = false;
  712. for (var i = 0; i < this.typeData.length; i++) {
  713. if (this.typeData[0].gdState.value != this.typeData[i].gdState.value) {
  714. this.models = {
  715. disjunctor: true,
  716. title: "提示",
  717. content: "请选择不同状态的工单!",
  718. icon: "warn",
  719. operate: {
  720. know: "知道了",
  721. },
  722. };
  723. this.typeData.splice(i, 1);
  724. this.types = true;
  725. }
  726. }
  727. if (!this.types) {
  728. if (this.tabType == 'specimenPlan' && this.typeData.length > 0) {
  729. this.userId.ids = [data.id];
  730. this.selectArr = [data.id];
  731. } else {
  732. this.userId.ids.push(data.id);
  733. this.selectArr.push(data.id);
  734. }
  735. }
  736. },
  737. //全选
  738. all() {
  739. let id = [];
  740. this.typeData = JSON.parse(JSON.stringify(this.workData));
  741. this.typePD(this.workData);
  742. if (this.types) {
  743. this.models = {
  744. disjunctor: true,
  745. title: "提示",
  746. content: "请选择不同状态的工单!",
  747. icon: "warn",
  748. operate: {
  749. know: "知道了",
  750. },
  751. };
  752. this.typeData = [];
  753. } else {
  754. for (var i = 0; i < this.workData.length; i++) {
  755. id.push(this.workData[i].id);
  756. this.selectArr.push(this.workData[i].id);
  757. }
  758. this.userId.ids = id;
  759. }
  760. },
  761. //全不选
  762. Dall() {
  763. this.selectArr = [];
  764. this.typeData = [];
  765. this.userId.ids = [];
  766. },
  767. texiao() {
  768. setTimeout(() => {
  769. this.animation.height(0).opacity(0).step();
  770. this.animationData = this.animation.export();
  771. }, 15000);
  772. },
  773. // 知道了
  774. know() {
  775. this.models.disjunctor = false;
  776. },
  777. },
  778. onLoad(options) {
  779. console.log(options, 'options');
  780. this.infoDATA = JSON.parse(options.infoDATA); //扫描科室码返回的信息
  781. console.log(this.infoDATA);
  782. this.code = options.code; //扫描科室码返回的二维码信息
  783. this.deptName = options.deptName; //扫描科室码返回的科室名称
  784. this.deptId = options.deptId; //扫描科室码返回的科室ID
  785. let arr = [];
  786. for (let key in this.infoDATA) {
  787. if(key === 'ordinary'){
  788. // 如果是万能交接服务,key值要从关联业务区分
  789. this.infoDATA['ordinary'].forEach(v => {
  790. arr.push(v.taskType.ordinaryField.value);
  791. if(this.infoDATA[v.taskType.ordinaryField.value]){
  792. this.infoDATA[v.taskType.ordinaryField.value].push(v);
  793. }else{
  794. this.infoDATA[v.taskType.ordinaryField.value] = [v];
  795. }
  796. })
  797. delete this.infoDATA['ordinary'];
  798. }else{
  799. arr.push(key);
  800. }
  801. }
  802. console.log(this.infoDATA);
  803. this.workData = this.infoDATA[arr[0]];
  804. this.tabType = arr[0];
  805. this.all();
  806. // #ifdef APP-PLUS
  807. webHandle("no", "app");
  808. // #endif
  809. // #ifdef H5
  810. webHandle("no", "wx");
  811. // #endif
  812. },
  813. onShow() {
  814. this.SMFlag = true;
  815. this.flag = true;
  816. // 创建动画
  817. this.animation = uni.createAnimation({
  818. duration: 500,
  819. timingFunction: "ease",
  820. delay: 2000,
  821. });
  822. setTimeout(() => {
  823. this.texiao();
  824. }, 500);
  825. },
  826. onHide() {
  827. this.animationData = {};
  828. },
  829. onUnload() {
  830. // 页面关闭后清空数据
  831. this.animationData = {};
  832. },
  833. created(){
  834. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  835. }
  836. };
  837. </script>
  838. <style lang="less">
  839. ::-webkit-scrollbar {
  840. width: 0;
  841. }
  842. ::-webkit-scrollbar-track {
  843. background-color: none;
  844. }
  845. ::-webkit-scrollbar-thumb {
  846. background-color: none;
  847. }
  848. ::-webkit-scrollbar-thumb:hover {
  849. background-color: none;
  850. }
  851. ::-webkit-scrollbar-thumb:active {
  852. background-color: none;
  853. }
  854. .Scanning_all {
  855. .title {
  856. font-size: 36rpx;
  857. margin-top: 20rpx;
  858. margin-bottom: 20rpx;
  859. font-weight: 700;
  860. position: relative;
  861. height: 40rpx;
  862. .span1 {
  863. position: absolute;
  864. left: 0;
  865. font-weight: 700;
  866. }
  867. .span2 {
  868. position: absolute;
  869. right: 20%;
  870. color: rgb(73, 184, 86);
  871. }
  872. .span3 {
  873. position: absolute;
  874. right: 0;
  875. color: rgb(73, 184, 86);
  876. }
  877. }
  878. .tabs {
  879. height: 90rpx;
  880. width: 100%;
  881. overflow-x: auto;
  882. overflow-y: hidden;
  883. position: relative;
  884. background: #fff;
  885. .acts {
  886. background: #ccc;
  887. height: 50rpx !important;
  888. width: 80% !important;
  889. border-radius: 20rpx;
  890. }
  891. .tab {
  892. display: flex;
  893. align-items: center;
  894. flex-wrap: nowrap;
  895. height: 90rpx;
  896. position: absolute;
  897. width: auto;
  898. padding-top: 6rpx;
  899. view {
  900. display: inline-block;
  901. width: 300rpx;
  902. line-height: 48rpx;
  903. font-size: 32rpx;
  904. height: 100%;
  905. text-align: center;
  906. }
  907. }
  908. }
  909. .Scanning {
  910. padding: 0 20rpx;
  911. height: calc(100% - 100rpx);
  912. // seimin
  913. .Scanning_top {
  914. height: 400rpx;
  915. opacity: 1;
  916. .Scanning_top_icon {
  917. width: 140rpx;
  918. height: 140rpx;
  919. margin: 0 auto;
  920. margin-top: 36rpx;
  921. border-radius: 50%;
  922. line-height: 140rpx;
  923. .cubeic-ok {
  924. font-size: 140rpx;
  925. color: #35b34a;
  926. }
  927. }
  928. .Scanning_top_text {
  929. .text1 {
  930. margin-top: 40rpx;
  931. font-size: 48rpx;
  932. text-align: center;
  933. }
  934. }
  935. .Scanning_cont {
  936. font-size: 32rpx;
  937. margin-top: 30rpx;
  938. text-align: center;
  939. .text1 {
  940. margin-top: 24rpx;
  941. color: #ff3b53;
  942. }
  943. }
  944. }
  945. .page_items {
  946. margin-bottom: 110rpx;
  947. .zwsj {
  948. margin-top: 180rpx;
  949. text-align: center;
  950. .zwsj-img {
  951. width: 560rpx;
  952. }
  953. .zwsj_txt {
  954. font-size: 36rpx;
  955. font-weight: 700;
  956. margin-top: 20rpx;
  957. text-align: center;
  958. }
  959. }
  960. .page_item {
  961. margin-top: 16rpx;
  962. min-height: 356rpx;
  963. background: #fff;
  964. border-radius: 8rpx;
  965. overflow: hidden;
  966. padding: 0 16rpx;
  967. border: 2rpx solid #e5e9ed;
  968. .L {
  969. width: 40rpx;
  970. height: 40rpx;
  971. border-radius: 50%;
  972. background: #f9fafb;
  973. position: relative;
  974. left: -50rpx;
  975. top: 66rpx;
  976. }
  977. .R {
  978. width: 40rpx;
  979. height: 40rpx;
  980. border-radius: 50%;
  981. background: #f9fafb;
  982. position: relative;
  983. float: right;
  984. right: -50rpx;
  985. top: 26rpx;
  986. }
  987. .starting {
  988. width: 50rpx;
  989. height: 50rpx;
  990. color: #fff;
  991. background: #49b856;
  992. display: inline-block;
  993. border-radius: 50%;
  994. text-align: center;
  995. line-height: 46rpx;
  996. font-size: 32rpx;
  997. margin-right: 6rpx;
  998. }
  999. .End {
  1000. width: 50rpx;
  1001. height: 50rpx;
  1002. color: #fff;
  1003. background: #39b199;
  1004. display: inline-block;
  1005. border-radius: 50%;
  1006. text-align: center;
  1007. line-height: 46rpx;
  1008. font-size: 32rpx;
  1009. margin-right: 6rpx;
  1010. }
  1011. .page_item_top {
  1012. height: 86rpx;
  1013. border-bottom: 2rpx dashed #e5e9ed;
  1014. padding: 0 16rpx;
  1015. .page_item_top_L {
  1016. height: 100%;
  1017. float: left;
  1018. line-height: 88rpx;
  1019. display: flex;
  1020. align-items: center;
  1021. .ac {
  1022. width: 32rpx;
  1023. height: 32rpx;
  1024. border: 2rpx solid #ccc;
  1025. display: inline-block;
  1026. position: relative;
  1027. .ac-span {
  1028. position: absolute;
  1029. left: 50%;
  1030. top: 50%;
  1031. width: 24rpx;
  1032. height: 24rpx;
  1033. background: #39b199;
  1034. transform: translate(-50%, -50%);
  1035. }
  1036. }
  1037. .ac1 {
  1038. width: 32rpx;
  1039. height: 32rpx;
  1040. border: 2rpx solid #ccc;
  1041. display: inline-block;
  1042. position: relative;
  1043. }
  1044. .emergencys {
  1045. background: #ff3b53 !important;
  1046. width: 124rpx !important;
  1047. }
  1048. .emergency {
  1049. background: #ff3b53 !important;
  1050. }
  1051. .emergency1 {
  1052. background: #49b856 !important;
  1053. }
  1054. .page_item_cont_start {
  1055. text-align: center;
  1056. height: 44rpx;
  1057. width: 104rpx;
  1058. line-height: 44rpx;
  1059. border-radius: 8rpx;
  1060. background: #49b856;
  1061. color: #fff;
  1062. display: inline-block;
  1063. .page_item_cont_start_txt {
  1064. font-size: 28rpx;
  1065. display: flex;
  1066. align-items: center;
  1067. justify-content: center;
  1068. .cubeic-star {
  1069. font-size: 28rpx;
  1070. }
  1071. }
  1072. }
  1073. .L_time {
  1074. color: #6cc076;
  1075. font-size: 32rpx;
  1076. }
  1077. .L_text {
  1078. font-size: 32rpx;
  1079. display: inline-block;
  1080. font-weight: 700;
  1081. margin-right: 8rpx;
  1082. }
  1083. }
  1084. .page_item_top_R {
  1085. height: 60rpx;
  1086. float: right;
  1087. padding-top: 20rpx;
  1088. font-size: 32rpx;
  1089. position: absolute;
  1090. right: 50rpx;
  1091. .L_iocn {
  1092. display: inline-block;
  1093. height: 52rpx;
  1094. line-height: 48rpx;
  1095. color: rgb(7, 134, 60);
  1096. font-size: 36rpx;
  1097. font-weight: 700;
  1098. }
  1099. }
  1100. }
  1101. .page_item_cont {
  1102. min-height: 180rpx;
  1103. padding: 0 16rpx;
  1104. text-align: left;
  1105. position: relative;
  1106. .text_big {
  1107. font-size: 32rpx;
  1108. position: absolute;
  1109. right: 16rpx;
  1110. font-weight: 700;
  1111. margin-top: 10rpx;
  1112. }
  1113. .text_big2 {
  1114. font-size: 32rpx;
  1115. position: absolute;
  1116. right: 16rpx;
  1117. font-weight: 700;
  1118. }
  1119. .line {
  1120. height: 20rpx;
  1121. width: 2rpx;
  1122. border-left: 2rpx solid #e5e9ed;
  1123. position: absolute;
  1124. top: 82rpx;
  1125. left: 40rpx;
  1126. }
  1127. .lines {
  1128. height: 40%;
  1129. width: 2rpx;
  1130. border-left: 2rpx solid #e5e9ed;
  1131. position: absolute;
  1132. top: 23%;
  1133. left: 36rpx;
  1134. }
  1135. .page_item_cont_T {
  1136. padding-top: 28rpx;
  1137. font-size: 28rpx;
  1138. .page_item_cont_title {
  1139. height: 100%;
  1140. font-size: 32rpx;
  1141. }
  1142. }
  1143. .page_item_cont_B {
  1144. padding-top: 28rpx;
  1145. margin-bottom: 28rpx;
  1146. .page_item_cont_title {
  1147. height: 60rpx;
  1148. font-size: 32rpx;
  1149. }
  1150. .page_item_cont_title1 {
  1151. height: 60rpx;
  1152. line-height: 60rpx;
  1153. font-size: 32rpx;
  1154. padding-left: 64rpx;
  1155. }
  1156. }
  1157. }
  1158. .page_item_foot {
  1159. border-top: 2rpx dashed #e5e9ed;
  1160. border-bottom: 2rpx dashed #e5e9ed;
  1161. padding: 28rpx 16rpx;
  1162. text-align: left;
  1163. .page_item_foot_text {
  1164. height: 48rpx;
  1165. font-size: 32rpx;
  1166. line-height: 48rpx;
  1167. margin-bottom: 20rpx;
  1168. .text1 {
  1169. color: rgb(102, 102, 102);
  1170. }
  1171. .text2 {
  1172. float: right;
  1173. font-weight: 700;
  1174. }
  1175. }
  1176. }
  1177. #infos {
  1178. display: none;
  1179. }
  1180. .page_item_infos {
  1181. padding-bottom: 20rpx;
  1182. border-bottom: 2rpx dashed #e5e9ed;
  1183. .page_item_info2 {
  1184. text-align: left;
  1185. line-height: 60rpx;
  1186. font-size: 32rpx;
  1187. padding-left: 16rpx;
  1188. .page_item_foot_text {
  1189. height: 48rpx;
  1190. font-size: 32rpx;
  1191. line-height: 48rpx;
  1192. margin-bottom: 20rpx;
  1193. .text1 {
  1194. color: rgb(102, 102, 102);
  1195. }
  1196. .text2 {
  1197. float: right;
  1198. font-weight: 700;
  1199. }
  1200. }
  1201. }
  1202. }
  1203. }
  1204. }
  1205. .foot_btn2 {
  1206. position: fixed;
  1207. bottom: 0;
  1208. right: 20rpx;
  1209. left: 20rpx;
  1210. line-height: 66rpx;
  1211. height: 100rpx;
  1212. border-top: 2rpx solid #e5e9ed;
  1213. background: #f9fafb;
  1214. display: flex;
  1215. .btn1,
  1216. .btn2 {
  1217. height: 66rpx;
  1218. flex: 1;
  1219. margin: 0 2%;
  1220. background-image: linear-gradient(to right, #72c172, #3bb197);
  1221. color: #fff;
  1222. border-radius: 8rpx;
  1223. font-size: 32rpx;
  1224. margin-top: 16rpx;
  1225. text-align: center;
  1226. }
  1227. }
  1228. .foot_btn1 {
  1229. position: fixed;
  1230. bottom: 0;
  1231. right: 20rpx;
  1232. left: 20rpx;
  1233. line-height: 66rpx;
  1234. height: 100rpx;
  1235. border-top: 2rpx solid #e5e9ed;
  1236. background: #f9fafb;
  1237. text-align: center;
  1238. .btn3 {
  1239. height: 66rpx;
  1240. width: 100%;
  1241. background-image: linear-gradient(to right, #72c172, #3bb197);
  1242. color: #fff;
  1243. border-radius: 8rpx;
  1244. font-size: 32rpx;
  1245. margin-top: 16rpx;
  1246. }
  1247. }
  1248. }
  1249. }
  1250. </style>