receipt_infopage.vue 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105
  1. <template>
  2. <view class="Receipt_infopage" v-if="Object.keys(infoDATA).length > 0">
  3. <view class="title">工单信息</view>
  4. <view class="page_item footerOtherMargin">
  5. <view class="page_item_top">
  6. <view class="page_item_top_L">
  7. <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
  8. <view class="page_item_cont_start emergency1" v-if="infoDATA.emergencyType.value == 1">
  9. <text>
  10. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  11. {{ infoDATA.emergencyType.name }}
  12. </text>
  13. </view>
  14. <view class="page_item_cont_start emergency" v-if="infoDATA.emergencyType.value == 2">
  15. <text>
  16. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  17. {{ infoDATA.emergencyType.name }}
  18. </text>
  19. </view>
  20. <view class="page_item_cont_start emergencys" v-if="infoDATA.emergencyType.value == 3">
  21. <text>
  22. <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
  23. {{ infoDATA.emergencyType.name }}
  24. </text>
  25. </view>
  26. </view>
  27. <view class="page_item_top_R">
  28. <text class="L_iocn" v-if="
  29. !(
  30. infoDATA.gdState.value == 5 &&
  31. infoDATA.taskType.associationType.value == 'inspect'
  32. )
  33. ">{{ infoDATA.gdState.name }}</text>
  34. <text class="L_iocn" v-if="
  35. infoDATA.gdState.value == 5 &&
  36. infoDATA.taskType.associationType.value == 'inspect'
  37. ">待送回</text>
  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. <view class="page_item_cont_title" v-for="(dept, index) of infoDATA.middleDept" :key="'ico' + index">
  52. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  53. <text> <text class="End">检</text> 查科室 </text>
  54. <text class="text_big">{{ dept.dept }}</text>
  55. <view></view>
  56. </view>
  57. </view>
  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. <view>
  61. <text> <text class="End">终</text> 点科室 </text>
  62. <text class="text_big">{{ dept.dept }}</text>
  63. </view>
  64. </view>
  65. </template>
  66. <view v-if="
  67. infoDATA.taskType.associationType.value == 'inspect' ||
  68. infoDATA.taskType.associationType.value == 'patientTransport'
  69. ">
  70. <!-- 待抢单 -->
  71. <text class="red" v-if="infoDATA.gdState.value == 2">请扫描患者腕带,或者请扫描科室码</text>
  72. <!-- 待到达 -->
  73. <text class="red" v-if="infoDATA.gdState.value == 4">请扫描患者腕带</text>
  74. <!-- 执行中 -->
  75. <text class="red" v-if="infoDATA.gdState.value == 8">请扫描检查科室码,并扫描患者腕带</text>
  76. <!-- 待送达 -->
  77. <text class="red" v-if="infoDATA.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
  78. </view>
  79. </view>
  80. </view>
  81. <view class="page_item_foot">
  82. <view class="page_item_foot_text">
  83. <text class="text1">状态</text>
  84. <text class="text2" v-if="
  85. !(
  86. infoDATA.gdState.value == 5 &&
  87. infoDATA.taskType.associationType.value == 'inspect'
  88. )
  89. ">{{ infoDATA.gdState.name }}</text>
  90. <text class="text2" v-if="
  91. infoDATA.gdState.value == 5 &&
  92. infoDATA.taskType.associationType.value == 'inspect'
  93. ">待送回</text>
  94. </view>
  95. <view class="page_item_foot_text">
  96. <text class="text1">关联类型</text>
  97. <text class="text2">{{ infoDATA.taskType.associationType.name }}</text>
  98. </view>
  99. <view class="page_item_foot_text">
  100. <text class="text1">任务类型</text>
  101. <text class="text2">{{ infoDATA.taskType.taskName }}<template
  102. v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
  103. </view>
  104. <view class="page_item_foot_text" v-if="infoDATA.taskType.associationType.value==='inspect'">
  105. <text class="text1">是否半程陪检</text>
  106. <text class="text2">{{ infoDATA.isHalfInspect===1?'是':'否' }}</text>
  107. </view>
  108. <view class="page_item_foot_text">
  109. <text class="text1">执行人员</text>
  110. <text class="text2">{{ infoDATA.worker?infoDATA.worker.name:'-' }}</text>
  111. </view>
  112. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '2'">
  113. <text class="text1">预计响应时间</text>
  114. <text class="text2">{{ infoDATA.estimeResponseTime || 0 }}</text>
  115. </view>
  116. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '5'">
  117. <text class="text1" v-if="!(infoDATA.taskType.associationType.value == 'inspect')">预计送达时间</text>
  118. <text class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect'">预计送回时间</text>
  119. <text class="text2">{{ infoDATA.estimeCompleteTime || 0 }}</text>
  120. </view>
  121. <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '4'">
  122. <text class="text1">预计到达时间</text>
  123. <text class="text2">{{ infoDATA.estimateArriveTime || 0 }}</text>
  124. </view>
  125. <view class="page_item_foot_text">
  126. <text class="text1">创建时间</text>
  127. <text class="text2">{{ infoDATA.startTime }}</text>
  128. </view>
  129. <view class="page_item_foot_text">
  130. <text class="text1">预约时间</text>
  131. <text class="text2" v-if="infoDATA.taskType.associationType.value == 'inspect'">{{ infoDATA.yyTime }}</text>
  132. <text class="text2"
  133. v-if="infoDATA.taskType.associationType.value == 'patientTransport'">{{ infoDATA.yyjdTime|yyTimeFilter }}</text>
  134. </view>
  135. <view class="page_item_foot_text" v-if="
  136. infoDATA.taskType.associationType.value == 'inspect' ||
  137. infoDATA.taskType.associationType.value == 'patientTransport'
  138. ">
  139. <text class="text1">床号</text>
  140. <text class="text2">{{
  141. infoDATA.patient ? infoDATA.patient.bedNum : "-"
  142. }}</text>
  143. </view>
  144. <view class="page_item_info" style="padding: 0;" v-if="infoDATA.workOrderRemark !== undefined">
  145. <view class="page_item_foot_text">
  146. <view class="text1">工单备注</view>
  147. <view class="text2" style="float: none;word-break: break-all;">{{ infoDATA.workOrderRemark }}</view>
  148. </view>
  149. </view>
  150. <view class="page_item_foot_text" v-if="
  151. infoDATA.taskType.associationType.value == 'inspect' ||
  152. infoDATA.taskType.associationType.value == 'patientTransport'
  153. ">
  154. <text class="text1">携带设备</text>
  155. <text class="text2">{{ infoDATA.goods || "暂无" }}</text>
  156. </view>
  157. <view class="page_item_foot_text" v-if="
  158. infoDATA.taskType.associationType.value == 'inspect' ||
  159. infoDATA.taskType.associationType.value == 'patientTransport'
  160. ">
  161. <text class="text1">患者姓名</text>
  162. <text class="text2">{{ infoDATA.patient.patientName }}({{
  163. infoDATA.patient.patientCode
  164. }})</text>
  165. </view>
  166. <view class="page_item_foot_text" v-if="
  167. (infoDATA.taskType.associationType.value == 'inspect' ||
  168. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.careLevel
  169. ">
  170. <text class="text1">{{infoDATA.patient.careLevel.desc}}</text>
  171. <text class="text2"
  172. :class="[(infoDATA.patient.careLevel.value==0||infoDATA.patient.careLevel.value==1)?'red':'green']">{{infoDATA.patient.careLevel.name}}</text>
  173. </view>
  174. <view class="page_item_foot_text" v-if="
  175. (infoDATA.taskType.associationType.value == 'inspect' ||
  176. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.illnessState
  177. ">
  178. <text class="text1">{{infoDATA.patient.illnessState.desc}}</text>
  179. <text class="text2"
  180. :class="{red:infoDATA.patient.illnessState.value==2||infoDATA.patient.illnessState.value==3}">{{infoDATA.patient.illnessState.name}}</text>
  181. </view>
  182. <view class="page_item_foot_text"
  183. v-if="
  184. (infoDATA.taskType.associationType.value == 'inspect' ||
  185. infoDATA.taskType.associationType.value == 'patientTransport')&&(infoDATA.isAccompany===1||infoDATA.isAccompany===0)">
  186. <text class="text1">陪同情况</text>
  187. <text class="text2"
  188. :class="{red:infoDATA.isAccompany===1}">{{ infoDATA.isAccompany===1?'需要医护陪同':'无需医护陪同'}}</text>
  189. </view>
  190. </view>
  191. <!-- 药包 -->
  192. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">
  193. <text class="page_item_info_title">药包编码</text>
  194. <text class="text">{{ infoDATA.drugs?infoDATA.drugs.packid:'无' }}</text>
  195. </view>
  196. <!-- 标本 -->
  197. <view class="page_item_info" v-if="
  198. infoDATA.taskType.associationType.value == 'specimen' ||
  199. infoDATA.taskType.associationType.value == 'specimenPlan'
  200. ">
  201. <view>
  202. <text class="page_item_info_title">标本信息</text>
  203. <text class="text">
  204. 预计接收
  205. <text class="page_item_info_txt">{{
  206. infoDATA.expectReceiveNum || 0
  207. }}</text>
  208. </text>
  209. <text class="text"
  210. v-if="infoDATA.gdState.value == 5 || infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  211. 扫描接收
  212. <text class="page_item_info_txt">{{infoDATA.actualReceiveNum || 0}}</text>
  213. </text>
  214. <text class="text" v-if="infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  215. 实际送达
  216. <text class="page_item_info_txt">{{actualDelivery || 0}}</text>
  217. </text>
  218. </view>
  219. <view v-for="spe in infoDATA.specimenSet" :key="spe.id" class="spe_list">
  220. <view>
  221. <text class="page_item_info_title">标本类型</text>
  222. <text class="text">{{ spe.stype ? spe.stype.name : "-" }}({{
  223. spe.urgent == 1 ? "急" : "普"
  224. }})</text>
  225. </view>
  226. <view>
  227. <text class="page_item_info_title">标本编码</text>
  228. <text class="text">{{ spe.scode }}</text>
  229. </view>
  230. <view>
  231. <text class="page_item_info_title">患者姓名</text>
  232. <text class="text">{{ spe.patientName }}<text v-if="spe.bedNum">({{spe.bedNum}})</text></text>
  233. </view>
  234. <view>
  235. <text class="page_item_info_title">目标科室</text>
  236. <text class="text">{{
  237. spe.checkDept ? spe.checkDept.dept : "-"
  238. }}</text>
  239. </view>
  240. </view>
  241. </view>
  242. <!-- 静配 -->
  243. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'jPBag'">
  244. <text class="page_item_info_title">药包编码</text>
  245. <text class="text">{{ infoDATA.staticDistri?infoDATA.staticDistri.packid:'无' }}</text>
  246. </view>
  247. <!-- 陪检 -->
  248. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  249. <view class="page_item_info">
  250. <text class="page_item_info_title">检查信息</text>
  251. </view>
  252. <view id="infos" :animation="animationData">
  253. <view class="page_item_infos" v-for="(item, index) of infoDATA.checkList" :key="index">
  254. <view class="page_item_info2">
  255. <view class="page_item_foot_text">
  256. <text class="text1">检查科室</text>
  257. <text class="text2">{{ item.execDept?item.execDept.dept:'-' }}</text>
  258. </view>
  259. <view class="page_item_foot_text">
  260. <text class="text1">检查项</text>
  261. <text class="text2">{{ item.inspectName||'-' }}</text>
  262. </view>
  263. <view class="page_item_foot_text">
  264. <text class="text1">叫号信息</text>
  265. <text class="text2">{{ item.reservationNumber||'-' }}</text>
  266. </view>
  267. <view class="page_item_foot_text">
  268. <text class="text1">预约时间</text>
  269. <text class="text2">{{ item.yyTime || "-" }}</text>
  270. </view>
  271. <!-- <view class="page_item_foot_text"
  272. v-show="item.inspectState.value==1||item.inspectState.value==2||item.inspectState.value==4">
  273. <view class="btn" @click.stop="remove(item)">移除</view>
  274. </view> -->
  275. <view class="page_item_foot_text">
  276. <view class="btn" @click.stop="remove(item)">移除</view>
  277. </view>
  278. </view>
  279. </view>
  280. </view>
  281. <view id="pulldown" @click="show('show')" v-if="showType == 'hiddle'">
  282. 点击可查看检查详情
  283. <text class="cubeic-pulldown icon_transport transport-paixujiantouxia"></text>
  284. </view>
  285. <view id="pullup" @click="show('hiddle')" v-if="showType == 'show'">
  286. 点击可收起检查详情
  287. <text class="cubeic-pullup icon_transport transport-paixujiantoushang"></text>
  288. </view>
  289. </view>
  290. </view>
  291. <view class="foot_btn2 footerPadding">
  292. <view class="btn2" @click="showAlert" v-if="infoDATA.gdState.value == 2">接单</view>
  293. <!-- 如果不是静配,药配,标本配送,标本轮巡 -->
  294. <template
  295. v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
  296. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  297. infoDATA.gdState.value != 2 &&
  298. infoDATA.taskType.associationType.value != 'jPBag' &&
  299. infoDATA.taskType.associationType.value != 'drugsBag' &&
  300. infoDATA.taskType.associationType.value != 'specimen' &&
  301. infoDATA.taskType.associationType.value != 'specimenPlan'
  302. " hover-class="seimin-btn-hover">
  303. <smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen>
  304. </view>
  305. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
  306. infoDATA.gdState.value != 2 &&
  307. infoDATA.taskType.associationType.value != 'jPBag' &&
  308. infoDATA.taskType.associationType.value != 'drugsBag' &&
  309. infoDATA.taskType.associationType.value != 'specimen' &&
  310. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  311. infoDATA.taskType.associationType.value != 'other' &&
  312. infoDATA.gdState.value == 4
  313. " hover-class="seimin-btn-hover">拍照</view>
  314. <view class="btn3" @click="specialCloseClick()" v-if="
  315. infoDATA.gdState.value != 2 &&
  316. infoDATA.taskType.associationType.value != 'jPBag' &&
  317. infoDATA.taskType.associationType.value != 'drugsBag' &&
  318. infoDATA.taskType.associationType.value != 'specimen' &&
  319. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  320. infoDATA.taskType.specialCloseButton == 1
  321. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  322. </template>
  323. <!-- 如果不是患者陪检或患者转运或其他 -->
  324. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  325. infoDATA.gdState.value != 2 &&
  326. infoDATA.taskType.associationType.value != 'patientTransport' &&
  327. infoDATA.taskType.associationType.value != 'inspect' &&
  328. infoDATA.taskType.associationType.value != 'other'
  329. " hover-class="seimin-btn-hover">
  330. <smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen>
  331. </view>
  332. <view class="btn3" @click="specialCloseClick()" v-if="
  333. infoDATA.gdState.value != 2 &&
  334. infoDATA.taskType.associationType.value != 'patientTransport' &&
  335. infoDATA.taskType.associationType.value != 'inspect' &&
  336. infoDATA.taskType.associationType.value != 'other' &&
  337. infoDATA.taskType.specialCloseButton == 1
  338. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  339. <view class="btn3" @click="viewSpecimen(infoDATA)" v-if="
  340. infoDATA.taskType.associationType.value == 'specimen' ||
  341. infoDATA.taskType.associationType.value == 'specimenPlan'
  342. " hover-class="seimin-btn-hover">查看标本</view>
  343. </view>
  344. <!-- 弹窗 -->
  345. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  346. @know="know" :operate="models.operate" @ok="ok" @cancel="cancel" :textareaFlag="textareaFlag"
  347. @textareaInput="textareaInput"></showModel>
  348. <!-- 弹窗 -->
  349. <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  350. @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1" :remove="true"></inspectRemoveModel>
  351. </view>
  352. </template>
  353. <script>
  354. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  355. import {
  356. get,
  357. post,
  358. SM,
  359. webHandle
  360. } from "../../http/http.js";
  361. import {
  362. photographTool
  363. } from "../../tools/photograph.js";
  364. export default {
  365. data() {
  366. return {
  367. actualDelivery: 0,
  368. currentUserId: 0,
  369. // 弹窗model
  370. models: {
  371. disjunctor: false,
  372. },
  373. // 弹窗model1
  374. models1: {
  375. disjunctor: false,
  376. },
  377. currentInspect: null,
  378. showType: "show",
  379. infoDATA: {},
  380. dataId: "",
  381. animationData: {},
  382. // 特殊情况关闭原因开关
  383. textareaFlag: false,
  384. textareaText: "",
  385. };
  386. },
  387. filters: {
  388. // 自定义管道 yyTime
  389. yyTimeFilter: function(data) {
  390. if (data) {
  391. let nDate = null;
  392. if (typeof data == 'string') {
  393. let arr = data.split(/[-:\s]/);
  394. nDate = new Date(
  395. arr[0] - 0,
  396. arr[1] - 1,
  397. arr[2] - 0,
  398. arr[3] - 0,
  399. arr[4] - 0,
  400. 0
  401. );
  402. } else if (typeof data == 'number') {
  403. nDate = new Date(data);
  404. }
  405. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  406. const date = nDate.getDate().toString().padStart(2, 0);
  407. const hour = nDate.getHours().toString().padStart(2, 0);
  408. const minute = nDate.getMinutes().toString().padStart(2, 0);
  409. return `${month}-${date} ${hour}:${minute}`;
  410. } else {
  411. return "-";
  412. }
  413. },
  414. },
  415. methods: {
  416. // 查看标本
  417. viewSpecimen(workOrder) {
  418. uni.navigateTo({
  419. url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  420. });
  421. },
  422. // 移除检查->知道了
  423. know1() {
  424. this.models1.disjunctor = false;
  425. // this.getInfo(this.dataId);
  426. uni.navigateTo({
  427. url: '../receiptpage/receiptpage',
  428. });
  429. },
  430. // 移除检查->确定
  431. ok1(data) {
  432. console.log(data);
  433. const { value, yyTime} = data;
  434. if (!value) {
  435. //没有选择移除原因
  436. uni.showModal({
  437. title: "提示",
  438. content: "请选择移除原因!",
  439. showCancel: false,
  440. success: function(res) {
  441. if (res.confirm) {
  442. console.log("用户点击确定");
  443. } else if (res.cancel) {
  444. console.log("用户点击取消");
  445. }
  446. },
  447. });
  448. return;
  449. }else if (value == 2 && !yyTime) {
  450. //没有填写预约时间
  451. uni.showModal({
  452. title: "提示",
  453. content: "请填写预约时间!",
  454. showCancel: false,
  455. success: function(res) {
  456. if (res.confirm) {
  457. console.log("用户点击确定");
  458. } else if (res.cancel) {
  459. console.log("用户点击取消");
  460. }
  461. },
  462. });
  463. return;
  464. }
  465. this.models1.disjunctor = false;
  466. let postData = {
  467. gdId: this.infoDATA.id,
  468. inspectId: this.currentInspect.id,
  469. reason: value == 1 ? 'checkDone' : 'modificationTime',
  470. yyTime: value == 1 ? undefined : yyTime,
  471. };
  472. uni.showLoading({
  473. title: '移除中',
  474. mask: true,
  475. })
  476. post('/workerOrder/removeInspectByOderId', postData).then(res => {
  477. uni.hideLoading();
  478. if (res.state == 200) {
  479. uni.showToast({
  480. icon: 'none',
  481. title: '移除成功!',
  482. success() {
  483. setTimeout(() => {
  484. uni.navigateTo({
  485. url: '../receiptpage/receiptpage',
  486. });
  487. }, 1500)
  488. }
  489. })
  490. } else {
  491. uni.showToast({
  492. icon: 'none',
  493. title: '移除失败!',
  494. })
  495. }
  496. })
  497. },
  498. // 移除检查->取消
  499. cancel1() {
  500. this.models1.disjunctor = false;
  501. },
  502. // 移除
  503. remove(item) {
  504. this.currentInspect = item;
  505. this.models1 = {
  506. disjunctor: true,
  507. content: "请选择您移除检查的原因?检查移除后将会自动完成或删除工单!",
  508. icon: "warn",
  509. operate: {
  510. ok: "确定",
  511. cancel: "取消",
  512. },
  513. };
  514. },
  515. // 拍照
  516. photograph(data) {
  517. photographTool(data);
  518. },
  519. // 特殊情况输入文字
  520. textareaInput(value) {
  521. this.textareaText = value;
  522. if (value.trim().length >= 10) {
  523. this.models.operate = {
  524. ok: "确定",
  525. cancel: "取消",
  526. };
  527. } else {
  528. this.models.operate = {
  529. cancel: "取消",
  530. };
  531. }
  532. },
  533. // 特殊情况关闭按钮
  534. specialCloseClick() {
  535. this.textareaFlag = true;
  536. this.models = {
  537. title: "特殊情况关闭",
  538. disjunctor: true,
  539. content: "",
  540. icon: "",
  541. operate: {
  542. cancel: "取消",
  543. },
  544. };
  545. },
  546. ok() {
  547. uni.showLoading({
  548. title: "加载中",
  549. mask: true,
  550. });
  551. post("/workerOrder/specialCaseClose", {
  552. workOrderId: this.dataId,
  553. reason: this.textareaText.trim(),
  554. }).then((result) => {
  555. this.models.disjunctor = false;
  556. this.textareaFlag = false;
  557. this.textareaText = "";
  558. if (result.state == 200) {
  559. uni.hideLoading();
  560. this.models = {
  561. disjunctor: true,
  562. content: "工单关闭成功",
  563. icon: "success",
  564. operate: {
  565. know: "知道了",
  566. },
  567. };
  568. } else {
  569. uni.hideLoading();
  570. this.models = {
  571. disjunctor: true,
  572. content: "工单关闭失败",
  573. icon: "error",
  574. operate: {
  575. know: "知道了",
  576. },
  577. };
  578. }
  579. });
  580. },
  581. cancel() {
  582. this.models.disjunctor = false;
  583. this.textareaFlag = false;
  584. this.textareaText = "";
  585. },
  586. // 点击可查看检查详情
  587. show(type) {
  588. this.showType = type;
  589. if (type === "show") {
  590. //展开
  591. // 计算高度
  592. const query = uni.createSelectorQuery().in(this);
  593. query
  594. .selectAll(".page_item_infos")
  595. .boundingClientRect((data) => {
  596. let len = data.reduce((prev, current) => {
  597. return prev + current.height;
  598. }, 0);
  599. this.animation.height(len).step();
  600. this.animationData = this.animation.export();
  601. })
  602. .exec();
  603. } else if (type === "hiddle") {
  604. this.animation.height(0).step();
  605. this.animationData = this.animation.export();
  606. }
  607. },
  608. // 抢单->知道了
  609. know() {
  610. this.models.disjunctor = false;
  611. uni.navigateTo({
  612. url: "../receiptpage/receiptpage",
  613. });
  614. },
  615. // 抢单
  616. showAlert() {
  617. get("/workerOrder/takeOrder/" + this.infoDATA.id).then((res) => {
  618. if (res.status == 200) {
  619. this.models = {
  620. disjunctor: true,
  621. content: "接单成功",
  622. icon: "success",
  623. operate: {
  624. know: "知道了",
  625. },
  626. };
  627. } else {
  628. uni.showToast({
  629. icon: "none",
  630. title: "请求失败!",
  631. });
  632. }
  633. });
  634. },
  635. // 请求详细页面的数据(除标本轮巡和标本配送)
  636. getInfo(id) {
  637. uni.showLoading({
  638. title: "加载中",
  639. mask: true,
  640. });
  641. get("/api/fetchData/workOrder/" + id).then((res) => {
  642. uni.hideLoading();
  643. if (res.status == 200) {
  644. this.infoDATA = res.data;
  645. // 计算高度
  646. setTimeout(() => {
  647. const query = uni.createSelectorQuery().in(this);
  648. query
  649. .selectAll(".page_item_infos")
  650. .boundingClientRect((data) => {
  651. let len = data.reduce((prev, current) => {
  652. return prev + current.height;
  653. }, 0);
  654. this.animation.height(len).step();
  655. this.animationData = this.animation.export();
  656. })
  657. .exec();
  658. }, 500)
  659. } else {
  660. uni.showToast({
  661. icon: "none",
  662. title: "请求失败!",
  663. });
  664. }
  665. });
  666. },
  667. // 请求详细页面的数据
  668. getInfoBySpecimen(id) {
  669. uni.showLoading({
  670. title: "加载中",
  671. mask: true,
  672. });
  673. post("/api/getWechatItem", {
  674. id
  675. }).then((res) => {
  676. uni.hideLoading();
  677. if (res.state == 200) {
  678. this.actualDelivery = res.actualDelivery;
  679. this.infoDATA = res.data;
  680. // 计算高度
  681. setTimeout(() => {
  682. const query = uni.createSelectorQuery().in(this);
  683. query
  684. .selectAll(".page_item_infos")
  685. .boundingClientRect((data) => {
  686. let len = data.reduce((prev, current) => {
  687. return prev + current.height;
  688. }, 0);
  689. this.animation.height(len).step();
  690. this.animationData = this.animation.export();
  691. })
  692. .exec();
  693. }, 500)
  694. } else {
  695. uni.showToast({
  696. icon: "none",
  697. title: "请求失败!",
  698. });
  699. }
  700. });
  701. },
  702. },
  703. onLoad(options) {
  704. console.log(options, 'options');
  705. this.currentUserId = uni.getStorageSync('userData').user.id;
  706. let id = options.id;
  707. this.dataId = id;
  708. if (
  709. options.associationTypeValue == 'specimen' ||
  710. options.associationTypeValue == 'specimenPlan'
  711. ) {
  712. this.getInfoBySpecimen(id);
  713. } else {
  714. this.getInfo(id);
  715. }
  716. // 创建动画
  717. this.animation = uni.createAnimation({
  718. duration: 500,
  719. timingFunction: "ease",
  720. });
  721. // #ifdef APP-PLUS
  722. webHandle("no", "app");
  723. // #endif
  724. // #ifdef H5
  725. webHandle("no", "wx");
  726. // #endif
  727. },
  728. onUnload() {
  729. // 页面关闭后清空数据
  730. this.animationData = {};
  731. },
  732. };
  733. </script>
  734. <style lang="less">
  735. .Receipt_infopage {
  736. padding: 0 20rpx;
  737. overflow: hidden;
  738. .red {
  739. color: red !important;
  740. font-weight: bold !important;
  741. }
  742. .green {
  743. color: #49b856 !important;
  744. font-weight: bold !important;
  745. }
  746. .title {
  747. font-size: 48rpx;
  748. margin-top: 24rpx;
  749. margin-bottom: 24rpx;
  750. text-align: center;
  751. }
  752. .page_item {
  753. margin-top: 16rpx;
  754. margin-bottom: 124rpx;
  755. background: #fff;
  756. border-radius: 8rpx;
  757. padding: 0 16rpx;
  758. border: 2rpx solid #e5e9ed;
  759. .L {
  760. width: 40rpx;
  761. height: 40rpx;
  762. border-radius: 50%;
  763. background: #f9fafb;
  764. position: relative;
  765. left: -50rpx;
  766. top: 66rpx;
  767. }
  768. .R {
  769. width: 40rpx;
  770. height: 40rpx;
  771. border-radius: 50%;
  772. background: #f9fafb;
  773. position: relative;
  774. float: right;
  775. right: -50rpx;
  776. top: 26rpx;
  777. }
  778. .starting {
  779. width: 50rpx;
  780. height: 50rpx;
  781. color: #fff;
  782. background: #49b856;
  783. display: inline-block;
  784. border-radius: 50%;
  785. text-align: center;
  786. line-height: 46rpx;
  787. font-size: 32rpx;
  788. margin-right: 6rpx;
  789. }
  790. .End {
  791. width: 50rpx;
  792. height: 50rpx;
  793. color: #fff;
  794. background: #39b199;
  795. display: inline-block;
  796. border-radius: 50%;
  797. text-align: center;
  798. line-height: 46rpx;
  799. font-size: 32rpx;
  800. margin-right: 6rpx;
  801. }
  802. .page_item_top {
  803. height: 86rpx;
  804. border-bottom: 2rpx dashed #666;
  805. padding: 0 16rpx;
  806. .page_item_top_L {
  807. height: 100%;
  808. float: left;
  809. line-height: 88rpx;
  810. .emergencys {
  811. background: #ff3b53 !important;
  812. width: 124rpx !important;
  813. }
  814. .emergency {
  815. background: #ff3b53 !important;
  816. }
  817. .emergency1 {
  818. background: #49b856 !important;
  819. }
  820. .page_item_cont_start {
  821. text-align: center;
  822. height: 44rpx;
  823. width: 104rpx;
  824. line-height: 44rpx;
  825. border-radius: 8rpx;
  826. background: #49b856;
  827. color: #fff;
  828. display: inline-block;
  829. font-size: 28rpx;
  830. .cubeic-star {
  831. margin-right: 8rpx;
  832. }
  833. }
  834. .L_time {
  835. color: #6cc076;
  836. font-size: 32rpx;
  837. }
  838. .L_text {
  839. font-size: 32rpx;
  840. display: inline-block;
  841. font-weight: 700;
  842. margin-right: 16rpx;
  843. }
  844. }
  845. .page_item_top_R {
  846. height: 60rpx;
  847. float: right;
  848. padding-top: 20rpx;
  849. font-size: 32rpx;
  850. position: absolute;
  851. right: 50rpx;
  852. .L_iocn {
  853. display: inline-block;
  854. height: 52rpx;
  855. line-height: 48rpx;
  856. color: rgb(7, 134, 60);
  857. font-size: 36rpx;
  858. font-weight: 700;
  859. }
  860. }
  861. }
  862. .page_item_cont {
  863. min-height: 180rpx;
  864. // max-height: 424rpx;
  865. padding: 0 16rpx;
  866. text-align: left;
  867. position: relative;
  868. .text_big {
  869. font-size: 32rpx;
  870. position: absolute;
  871. right: 16rpx;
  872. font-weight: 700;
  873. margin-top: 10rpx;
  874. }
  875. .text_big2 {
  876. font-size: 32rpx;
  877. position: absolute;
  878. right: 16rpx;
  879. font-weight: 700;
  880. }
  881. .line {
  882. height: 20rpx;
  883. width: 2rpx;
  884. border-left: 2rpx solid #666;
  885. position: absolute;
  886. top: 82rpx;
  887. left: 40rpx;
  888. }
  889. .lines {
  890. height: 40%;
  891. width: 2rpx;
  892. border-left: 2rpx solid #666;
  893. position: absolute;
  894. top: 23%;
  895. left: 36rpx;
  896. }
  897. .page_item_cont_T {
  898. padding-top: 28rpx;
  899. font-size: 28rpx;
  900. .page_item_cont_title {
  901. height: 100%;
  902. font-size: 32rpx;
  903. }
  904. }
  905. .page_item_cont_B {
  906. padding-top: 28rpx;
  907. margin-bottom: 28rpx;
  908. .page_item_cont_title {
  909. height: 60rpx;
  910. font-size: 32rpx;
  911. }
  912. .page_item_cont_title1 {
  913. height: 60rpx;
  914. line-height: 60rpx;
  915. font-size: 32rpx;
  916. padding-left: 64rpx;
  917. }
  918. }
  919. }
  920. .page_item_foot {
  921. border-top: 2rpx dashed #666;
  922. border-bottom: 2rpx dashed #666;
  923. padding: 28rpx 16rpx;
  924. text-align: left;
  925. .page_item_foot_text {
  926. font-size: 32rpx;
  927. margin-bottom: 20rpx;
  928. .text1 {
  929. color: rgb(102, 102, 102);
  930. }
  931. .text2 {
  932. float: right;
  933. font-weight: 700;
  934. }
  935. }
  936. }
  937. .page_item_info {
  938. padding: 20rpx 16rpx;
  939. text-align: left;
  940. line-height: 60rpx;
  941. font-size: 32rpx;
  942. .spe_list {
  943. padding: 32rpx 0;
  944. border-top: 2rpx solid #666;
  945. .page_item_info_title {
  946. color: #666;
  947. }
  948. }
  949. .page_item_info_title {
  950. font-weight: 700;
  951. }
  952. .text {
  953. float: right;
  954. font-weight: 700;
  955. .page_item_info_txt {
  956. color: #49b856;
  957. margin-left: 8rpx;
  958. margin-right: 8rpx;
  959. }
  960. }
  961. }
  962. #infos {
  963. height: 0;
  964. overflow: hidden;
  965. }
  966. .page_item_infos {
  967. padding-top: 20rpx;
  968. padding-bottom: 20rpx;
  969. border-bottom: 2rpx dashed #666;
  970. .page_item_info2 {
  971. text-align: left;
  972. line-height: 60rpx;
  973. font-size: 32rpx;
  974. padding-left: 16rpx;
  975. .page_item_foot_text {
  976. font-size: 32rpx;
  977. margin-bottom: 20rpx;
  978. &:last-of-type {
  979. margin-bottom: 0;
  980. }
  981. .text1 {
  982. color: rgb(102, 102, 102);
  983. }
  984. .text2 {
  985. float: right;
  986. font-weight: 700;
  987. }
  988. .btn {
  989. height: 66rpx;
  990. width: 132rpx;
  991. margin: 0 auto;
  992. background-color: #49b856;
  993. color: #fff;
  994. border-radius: 8rpx;
  995. font-size: 32rpx;
  996. margin-top: 20rpx;
  997. text-align: center;
  998. }
  999. }
  1000. }
  1001. }
  1002. #pulldown {
  1003. color: #49b856;
  1004. font-size: 36rpx;
  1005. height: 60rpx;
  1006. text-align: center;
  1007. .cubeic-pulldown {
  1008. font-size: 48rpx;
  1009. position: relative;
  1010. bottom: 6rpx;
  1011. }
  1012. }
  1013. #pullup {
  1014. color: #49b856;
  1015. font-size: 36rpx;
  1016. height: 60rpx;
  1017. text-align: center;
  1018. .cubeic-pullup {
  1019. font-size: 48rpx;
  1020. position: relative;
  1021. top: 12rpx;
  1022. }
  1023. }
  1024. }
  1025. .foot_btn2 {
  1026. position: fixed;
  1027. bottom: 0;
  1028. right: 20rpx;
  1029. left: 20rpx;
  1030. line-height: 66rpx;
  1031. height: 100rpx;
  1032. border-top: 2rpx solid #e5e9ed;
  1033. background: #f9fafb;
  1034. display: flex;
  1035. justify-content: space-between;
  1036. .btn2,
  1037. .btn3 {
  1038. height: 66rpx;
  1039. flex: 1;
  1040. margin: 0 1%;
  1041. background-image: linear-gradient(to right, #72c172, #3bb197);
  1042. color: #fff;
  1043. border-radius: 8rpx;
  1044. font-size: 32rpx;
  1045. margin-top: 16rpx;
  1046. text-align: center;
  1047. }
  1048. }
  1049. }
  1050. </style>