receipt_infopage.vue 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062
  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>
  276. </view>
  277. </view>
  278. <view id="pulldown" @click="show('show')" v-if="showType == 'hiddle'">
  279. 点击可查看检查详情
  280. <text class="cubeic-pulldown icon_transport transport-paixujiantouxia"></text>
  281. </view>
  282. <view id="pullup" @click="show('hiddle')" v-if="showType == 'show'">
  283. 点击可收起检查详情
  284. <text class="cubeic-pullup icon_transport transport-paixujiantoushang"></text>
  285. </view>
  286. </view>
  287. </view>
  288. <view class="foot_btn2 footerPadding">
  289. <view class="btn2" @click="showAlert" v-if="infoDATA.gdState.value == 2">接单</view>
  290. <!-- 如果不是静配,药配,标本配送,标本轮巡 -->
  291. <template
  292. v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
  293. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  294. infoDATA.gdState.value != 2 &&
  295. infoDATA.taskType.associationType.value != 'jPBag' &&
  296. infoDATA.taskType.associationType.value != 'drugsBag' &&
  297. infoDATA.taskType.associationType.value != 'specimen' &&
  298. infoDATA.taskType.associationType.value != 'specimenPlan'
  299. " hover-class="seimin-btn-hover">
  300. <smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen>
  301. </view>
  302. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
  303. infoDATA.gdState.value != 2 &&
  304. infoDATA.taskType.associationType.value != 'jPBag' &&
  305. infoDATA.taskType.associationType.value != 'drugsBag' &&
  306. infoDATA.taskType.associationType.value != 'specimen' &&
  307. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  308. infoDATA.taskType.associationType.value != 'other' &&
  309. infoDATA.gdState.value == 4
  310. " hover-class="seimin-btn-hover">拍照</view>
  311. <view class="btn3" @click="specialCloseClick()" v-if="
  312. infoDATA.gdState.value != 2 &&
  313. infoDATA.taskType.associationType.value != 'jPBag' &&
  314. infoDATA.taskType.associationType.value != 'drugsBag' &&
  315. infoDATA.taskType.associationType.value != 'specimen' &&
  316. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  317. infoDATA.taskType.specialCloseButton == 1
  318. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  319. </template>
  320. <!-- 如果不是患者陪检或患者转运或其他 -->
  321. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  322. infoDATA.gdState.value != 2 &&
  323. infoDATA.taskType.associationType.value != 'patientTransport' &&
  324. infoDATA.taskType.associationType.value != 'inspect' &&
  325. infoDATA.taskType.associationType.value != 'other'
  326. " hover-class="seimin-btn-hover">
  327. <smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen>
  328. </view>
  329. <view class="btn3" @click="specialCloseClick()" v-if="
  330. infoDATA.gdState.value != 2 &&
  331. infoDATA.taskType.associationType.value != 'patientTransport' &&
  332. infoDATA.taskType.associationType.value != 'inspect' &&
  333. infoDATA.taskType.associationType.value != 'other' &&
  334. infoDATA.taskType.specialCloseButton == 1
  335. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  336. <view class="btn3" @click="viewSpecimen(infoDATA)" v-if="
  337. infoDATA.taskType.associationType.value == 'specimen' ||
  338. infoDATA.taskType.associationType.value == 'specimenPlan'
  339. " hover-class="seimin-btn-hover">查看标本</view>
  340. </view>
  341. <!-- 弹窗 -->
  342. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  343. @know="know" :operate="models.operate" @ok="ok" @cancel="cancel" :textareaFlag="textareaFlag"
  344. @textareaInput="textareaInput"></showModel>
  345. <!-- 弹窗 -->
  346. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  347. @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></showModel>
  348. </view>
  349. </template>
  350. <script>
  351. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  352. import showModel from "../../components/showModel/showModel.vue";
  353. import {
  354. get,
  355. post,
  356. SM,
  357. webHandle
  358. } from "../../http/http.js";
  359. import {
  360. photographTool
  361. } from "../../tools/photograph.js";
  362. export default {
  363. data() {
  364. return {
  365. actualDelivery: 0,
  366. currentUserId: 0,
  367. // 弹窗model
  368. models: {
  369. disjunctor: false,
  370. },
  371. // 弹窗model1
  372. models1: {
  373. disjunctor: false,
  374. },
  375. currentInspect: null,
  376. showType: "show",
  377. infoDATA: {},
  378. dataId: "",
  379. animationData: {},
  380. // 特殊情况关闭原因开关
  381. textareaFlag: false,
  382. textareaText: "",
  383. };
  384. },
  385. filters: {
  386. // 自定义管道 yyTime
  387. yyTimeFilter: function(data) {
  388. if (data) {
  389. let nDate = null;
  390. if (typeof data == 'string') {
  391. let arr = data.split(/[-:\s]/);
  392. nDate = new Date(
  393. arr[0] - 0,
  394. arr[1] - 1,
  395. arr[2] - 0,
  396. arr[3] - 0,
  397. arr[4] - 0,
  398. 0
  399. );
  400. } else if (typeof data == 'number') {
  401. nDate = new Date(data);
  402. }
  403. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  404. const date = nDate.getDate().toString().padStart(2, 0);
  405. const hour = nDate.getHours().toString().padStart(2, 0);
  406. const minute = nDate.getMinutes().toString().padStart(2, 0);
  407. return `${month}-${date} ${hour}:${minute}`;
  408. } else {
  409. return "-";
  410. }
  411. },
  412. },
  413. methods: {
  414. // 查看标本
  415. viewSpecimen(workOrder) {
  416. uni.navigateTo({
  417. url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  418. });
  419. },
  420. // 移除检查->知道了
  421. know1() {
  422. this.models1.disjunctor = false;
  423. // this.getInfo(this.dataId);
  424. //baba
  425. uni.navigateTo({
  426. url: '../receiptpage/receiptpage',
  427. });
  428. },
  429. // 移除检查->确定
  430. ok1() {
  431. this.models1.disjunctor = false;
  432. let postData = {
  433. gdId: this.infoDATA.id,
  434. inspectId: this.currentInspect.id,
  435. };
  436. uni.showLoading({
  437. title: '移除中',
  438. mask: true,
  439. })
  440. post('/workerOrder/removeInspectByOderId', postData).then(res => {
  441. uni.hideLoading();
  442. if (res.state == 200) {
  443. this.models1 = {
  444. disjunctor: true,
  445. content: "移除成功",
  446. };
  447. } else {
  448. uni.showToast({
  449. icon: "none",
  450. title: "移除失败",
  451. });
  452. }
  453. })
  454. },
  455. // 移除检查->取消
  456. cancel1() {
  457. this.models1.disjunctor = false;
  458. },
  459. // 移除
  460. remove(item) {
  461. this.currentInspect = item;
  462. this.models1 = {
  463. disjunctor: true,
  464. content: "是否移除该检查信息",
  465. icon: "warn",
  466. operate: {
  467. ok: "确定",
  468. cancel: "取消",
  469. },
  470. };
  471. },
  472. // 拍照
  473. photograph(data) {
  474. photographTool(data);
  475. },
  476. // 特殊情况输入文字
  477. textareaInput(value) {
  478. this.textareaText = value;
  479. if (value.trim().length >= 10) {
  480. this.models.operate = {
  481. ok: "确定",
  482. cancel: "取消",
  483. };
  484. } else {
  485. this.models.operate = {
  486. cancel: "取消",
  487. };
  488. }
  489. },
  490. // 特殊情况关闭按钮
  491. specialCloseClick() {
  492. this.textareaFlag = true;
  493. this.models = {
  494. title: "特殊情况关闭",
  495. disjunctor: true,
  496. content: "",
  497. icon: "",
  498. operate: {
  499. cancel: "取消",
  500. },
  501. };
  502. },
  503. ok() {
  504. uni.showLoading({
  505. title: "加载中",
  506. mask: true,
  507. });
  508. post("/workerOrder/specialCaseClose", {
  509. workOrderId: this.dataId,
  510. reason: this.textareaText.trim(),
  511. }).then((result) => {
  512. this.models.disjunctor = false;
  513. this.textareaFlag = false;
  514. this.textareaText = "";
  515. if (result.state == 200) {
  516. uni.hideLoading();
  517. this.models = {
  518. disjunctor: true,
  519. content: "工单关闭成功",
  520. icon: "success",
  521. operate: {
  522. know: "知道了",
  523. },
  524. };
  525. } else {
  526. uni.hideLoading();
  527. this.models = {
  528. disjunctor: true,
  529. content: "工单关闭失败",
  530. icon: "error",
  531. operate: {
  532. know: "知道了",
  533. },
  534. };
  535. }
  536. });
  537. },
  538. cancel() {
  539. this.models.disjunctor = false;
  540. this.textareaFlag = false;
  541. this.textareaText = "";
  542. },
  543. // 点击可查看检查详情
  544. show(type) {
  545. this.showType = type;
  546. if (type === "show") {
  547. //展开
  548. // 计算高度
  549. const query = uni.createSelectorQuery().in(this);
  550. query
  551. .selectAll(".page_item_infos")
  552. .boundingClientRect((data) => {
  553. let len = data.reduce((prev, current) => {
  554. return prev + current.height;
  555. }, 0);
  556. this.animation.height(len).step();
  557. this.animationData = this.animation.export();
  558. })
  559. .exec();
  560. } else if (type === "hiddle") {
  561. this.animation.height(0).step();
  562. this.animationData = this.animation.export();
  563. }
  564. },
  565. // 抢单->知道了
  566. know() {
  567. this.models.disjunctor = false;
  568. uni.navigateTo({
  569. url: "../receiptpage/receiptpage",
  570. });
  571. },
  572. // 抢单
  573. showAlert() {
  574. get("/workerOrder/takeOrder/" + this.infoDATA.id).then((res) => {
  575. if (res.status == 200) {
  576. this.models = {
  577. disjunctor: true,
  578. content: "接单成功",
  579. icon: "success",
  580. operate: {
  581. know: "知道了",
  582. },
  583. };
  584. } else {
  585. uni.showToast({
  586. icon: "none",
  587. title: "请求失败!",
  588. });
  589. }
  590. });
  591. },
  592. // 请求详细页面的数据(除标本轮巡和标本配送)
  593. getInfo(id) {
  594. uni.showLoading({
  595. title: "加载中",
  596. mask: true,
  597. });
  598. get("/api/fetchData/workOrder/" + id).then((res) => {
  599. uni.hideLoading();
  600. if (res.status == 200) {
  601. this.infoDATA = res.data;
  602. // 计算高度
  603. setTimeout(() => {
  604. const query = uni.createSelectorQuery().in(this);
  605. query
  606. .selectAll(".page_item_infos")
  607. .boundingClientRect((data) => {
  608. let len = data.reduce((prev, current) => {
  609. return prev + current.height;
  610. }, 0);
  611. this.animation.height(len).step();
  612. this.animationData = this.animation.export();
  613. })
  614. .exec();
  615. }, 500)
  616. } else {
  617. uni.showToast({
  618. icon: "none",
  619. title: "请求失败!",
  620. });
  621. }
  622. });
  623. },
  624. // 请求详细页面的数据
  625. getInfoBySpecimen(id) {
  626. uni.showLoading({
  627. title: "加载中",
  628. mask: true,
  629. });
  630. post("/api/getWechatItem", {
  631. id
  632. }).then((res) => {
  633. uni.hideLoading();
  634. if (res.state == 200) {
  635. this.actualDelivery = res.actualDelivery;
  636. this.infoDATA = res.data;
  637. // 计算高度
  638. setTimeout(() => {
  639. const query = uni.createSelectorQuery().in(this);
  640. query
  641. .selectAll(".page_item_infos")
  642. .boundingClientRect((data) => {
  643. let len = data.reduce((prev, current) => {
  644. return prev + current.height;
  645. }, 0);
  646. this.animation.height(len).step();
  647. this.animationData = this.animation.export();
  648. })
  649. .exec();
  650. }, 500)
  651. } else {
  652. uni.showToast({
  653. icon: "none",
  654. title: "请求失败!",
  655. });
  656. }
  657. });
  658. },
  659. },
  660. onLoad(options) {
  661. console.log(options, 'options');
  662. this.currentUserId = uni.getStorageSync('userData').user.id;
  663. let id = options.id;
  664. this.dataId = id;
  665. if (
  666. options.associationTypeValue == 'specimen' ||
  667. options.associationTypeValue == 'specimenPlan'
  668. ) {
  669. this.getInfoBySpecimen(id);
  670. } else {
  671. this.getInfo(id);
  672. }
  673. // 创建动画
  674. this.animation = uni.createAnimation({
  675. duration: 500,
  676. timingFunction: "ease",
  677. });
  678. // #ifdef APP-PLUS
  679. webHandle("no", "app");
  680. // #endif
  681. // #ifdef H5
  682. webHandle("no", "wx");
  683. // #endif
  684. },
  685. onUnload() {
  686. // 页面关闭后清空数据
  687. this.animationData = {};
  688. },
  689. };
  690. </script>
  691. <style lang="less">
  692. .Receipt_infopage {
  693. padding: 0 20rpx;
  694. overflow: hidden;
  695. .red {
  696. color: red !important;
  697. font-weight: bold !important;
  698. }
  699. .green {
  700. color: #49b856 !important;
  701. font-weight: bold !important;
  702. }
  703. .title {
  704. font-size: 48rpx;
  705. margin-top: 24rpx;
  706. margin-bottom: 24rpx;
  707. text-align: center;
  708. }
  709. .page_item {
  710. margin-top: 16rpx;
  711. margin-bottom: 124rpx;
  712. background: #fff;
  713. border-radius: 8rpx;
  714. padding: 0 16rpx;
  715. border: 2rpx solid #e5e9ed;
  716. .L {
  717. width: 40rpx;
  718. height: 40rpx;
  719. border-radius: 50%;
  720. background: #f9fafb;
  721. position: relative;
  722. left: -50rpx;
  723. top: 66rpx;
  724. }
  725. .R {
  726. width: 40rpx;
  727. height: 40rpx;
  728. border-radius: 50%;
  729. background: #f9fafb;
  730. position: relative;
  731. float: right;
  732. right: -50rpx;
  733. top: 26rpx;
  734. }
  735. .starting {
  736. width: 50rpx;
  737. height: 50rpx;
  738. color: #fff;
  739. background: #49b856;
  740. display: inline-block;
  741. border-radius: 50%;
  742. text-align: center;
  743. line-height: 46rpx;
  744. font-size: 32rpx;
  745. margin-right: 6rpx;
  746. }
  747. .End {
  748. width: 50rpx;
  749. height: 50rpx;
  750. color: #fff;
  751. background: #39b199;
  752. display: inline-block;
  753. border-radius: 50%;
  754. text-align: center;
  755. line-height: 46rpx;
  756. font-size: 32rpx;
  757. margin-right: 6rpx;
  758. }
  759. .page_item_top {
  760. height: 86rpx;
  761. border-bottom: 2rpx dashed #666;
  762. padding: 0 16rpx;
  763. .page_item_top_L {
  764. height: 100%;
  765. float: left;
  766. line-height: 88rpx;
  767. .emergencys {
  768. background: #ff3b53 !important;
  769. width: 124rpx !important;
  770. }
  771. .emergency {
  772. background: #ff3b53 !important;
  773. }
  774. .emergency1 {
  775. background: #49b856 !important;
  776. }
  777. .page_item_cont_start {
  778. text-align: center;
  779. height: 44rpx;
  780. width: 104rpx;
  781. line-height: 44rpx;
  782. border-radius: 8rpx;
  783. background: #49b856;
  784. color: #fff;
  785. display: inline-block;
  786. font-size: 28rpx;
  787. .cubeic-star {
  788. margin-right: 8rpx;
  789. }
  790. }
  791. .L_time {
  792. color: #6cc076;
  793. font-size: 32rpx;
  794. }
  795. .L_text {
  796. font-size: 32rpx;
  797. display: inline-block;
  798. font-weight: 700;
  799. margin-right: 16rpx;
  800. }
  801. }
  802. .page_item_top_R {
  803. height: 60rpx;
  804. float: right;
  805. padding-top: 20rpx;
  806. font-size: 32rpx;
  807. position: absolute;
  808. right: 50rpx;
  809. .L_iocn {
  810. display: inline-block;
  811. height: 52rpx;
  812. line-height: 48rpx;
  813. color: rgb(7, 134, 60);
  814. font-size: 36rpx;
  815. font-weight: 700;
  816. }
  817. }
  818. }
  819. .page_item_cont {
  820. min-height: 180rpx;
  821. // max-height: 424rpx;
  822. padding: 0 16rpx;
  823. text-align: left;
  824. position: relative;
  825. .text_big {
  826. font-size: 32rpx;
  827. position: absolute;
  828. right: 16rpx;
  829. font-weight: 700;
  830. margin-top: 10rpx;
  831. }
  832. .text_big2 {
  833. font-size: 32rpx;
  834. position: absolute;
  835. right: 16rpx;
  836. font-weight: 700;
  837. }
  838. .line {
  839. height: 20rpx;
  840. width: 2rpx;
  841. border-left: 2rpx solid #666;
  842. position: absolute;
  843. top: 82rpx;
  844. left: 40rpx;
  845. }
  846. .lines {
  847. height: 40%;
  848. width: 2rpx;
  849. border-left: 2rpx solid #666;
  850. position: absolute;
  851. top: 23%;
  852. left: 36rpx;
  853. }
  854. .page_item_cont_T {
  855. padding-top: 28rpx;
  856. font-size: 28rpx;
  857. .page_item_cont_title {
  858. height: 100%;
  859. font-size: 32rpx;
  860. }
  861. }
  862. .page_item_cont_B {
  863. padding-top: 28rpx;
  864. margin-bottom: 28rpx;
  865. .page_item_cont_title {
  866. height: 60rpx;
  867. font-size: 32rpx;
  868. }
  869. .page_item_cont_title1 {
  870. height: 60rpx;
  871. line-height: 60rpx;
  872. font-size: 32rpx;
  873. padding-left: 64rpx;
  874. }
  875. }
  876. }
  877. .page_item_foot {
  878. border-top: 2rpx dashed #666;
  879. border-bottom: 2rpx dashed #666;
  880. padding: 28rpx 16rpx;
  881. text-align: left;
  882. .page_item_foot_text {
  883. font-size: 32rpx;
  884. margin-bottom: 20rpx;
  885. .text1 {
  886. color: rgb(102, 102, 102);
  887. }
  888. .text2 {
  889. float: right;
  890. font-weight: 700;
  891. }
  892. }
  893. }
  894. .page_item_info {
  895. padding: 20rpx 16rpx;
  896. text-align: left;
  897. line-height: 60rpx;
  898. font-size: 32rpx;
  899. .spe_list {
  900. padding: 32rpx 0;
  901. border-top: 2rpx solid #666;
  902. .page_item_info_title {
  903. color: #666;
  904. }
  905. }
  906. .page_item_info_title {
  907. font-weight: 700;
  908. }
  909. .text {
  910. float: right;
  911. font-weight: 700;
  912. .page_item_info_txt {
  913. color: #49b856;
  914. margin-left: 8rpx;
  915. margin-right: 8rpx;
  916. }
  917. }
  918. }
  919. #infos {
  920. height: 0;
  921. overflow: hidden;
  922. }
  923. .page_item_infos {
  924. padding-top: 20rpx;
  925. padding-bottom: 20rpx;
  926. border-bottom: 2rpx dashed #666;
  927. .page_item_info2 {
  928. text-align: left;
  929. line-height: 60rpx;
  930. font-size: 32rpx;
  931. padding-left: 16rpx;
  932. .page_item_foot_text {
  933. font-size: 32rpx;
  934. margin-bottom: 20rpx;
  935. &:last-of-type {
  936. margin-bottom: 0;
  937. }
  938. .text1 {
  939. color: rgb(102, 102, 102);
  940. }
  941. .text2 {
  942. float: right;
  943. font-weight: 700;
  944. }
  945. .btn {
  946. height: 66rpx;
  947. width: 132rpx;
  948. margin: 0 auto;
  949. background-color: #49b856;
  950. color: #fff;
  951. border-radius: 8rpx;
  952. font-size: 32rpx;
  953. margin-top: 20rpx;
  954. text-align: center;
  955. }
  956. }
  957. }
  958. }
  959. #pulldown {
  960. color: #49b856;
  961. font-size: 36rpx;
  962. height: 60rpx;
  963. text-align: center;
  964. .cubeic-pulldown {
  965. font-size: 48rpx;
  966. position: relative;
  967. bottom: 6rpx;
  968. }
  969. }
  970. #pullup {
  971. color: #49b856;
  972. font-size: 36rpx;
  973. height: 60rpx;
  974. text-align: center;
  975. .cubeic-pullup {
  976. font-size: 48rpx;
  977. position: relative;
  978. top: 12rpx;
  979. }
  980. }
  981. }
  982. .foot_btn2 {
  983. position: fixed;
  984. bottom: 0;
  985. right: 20rpx;
  986. left: 20rpx;
  987. line-height: 66rpx;
  988. height: 100rpx;
  989. border-top: 2rpx solid #e5e9ed;
  990. background: #f9fafb;
  991. display: flex;
  992. justify-content: space-between;
  993. .btn2,
  994. .btn3 {
  995. height: 66rpx;
  996. flex: 1;
  997. margin: 0 1%;
  998. background-image: linear-gradient(to right, #72c172, #3bb197);
  999. color: #fff;
  1000. border-radius: 8rpx;
  1001. font-size: 32rpx;
  1002. margin-top: 16rpx;
  1003. text-align: center;
  1004. }
  1005. }
  1006. }
  1007. </style>