receipt_infopage.vue 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  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 || '无' }}</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 || '无' }}</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 || '无' }}</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_foot_text" v-if="
  145. infoDATA.taskType.associationType.value == 'inspect' ||
  146. infoDATA.taskType.associationType.value == 'patientTransport'
  147. ">
  148. <text class="text1">携带设备</text>
  149. <text class="text2">{{ infoDATA.goods || "暂无" }}</text>
  150. </view>
  151. <view class="page_item_info" style="padding: 0;" v-if="infoDATA.workOrderRemark !== undefined">
  152. <view class="page_item_foot_text">
  153. <view class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport'">备注信息</view>
  154. <view class="text1" v-else>工单备注</view>
  155. <view class="text2" style="float: none;word-break: break-all;">{{ infoDATA.workOrderRemark }}</view>
  156. </view>
  157. </view>
  158. <view class="page_item_foot_text" v-if="
  159. infoDATA.taskType.associationType.value == 'inspect' ||
  160. infoDATA.taskType.associationType.value == 'patientTransport'
  161. ">
  162. <text class="text1">患者姓名</text>
  163. <text class="text2">{{ infoDATA.patient.patientName }}({{
  164. infoDATA.patient.residenceNo
  165. }})</text>
  166. </view>
  167. <view class="page_item_foot_text" v-if="
  168. (infoDATA.taskType.associationType.value == 'inspect' ||
  169. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.careLevel
  170. ">
  171. <text class="text1">{{infoDATA.patient.careLevel.desc}}</text>
  172. <text class="text2"
  173. :class="[(infoDATA.patient.careLevel.value==0||infoDATA.patient.careLevel.value==1)?'red':'green']">{{infoDATA.patient.careLevel.name}}</text>
  174. </view>
  175. <view class="page_item_foot_text" v-if="
  176. (infoDATA.taskType.associationType.value == 'inspect' ||
  177. infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.illnessState
  178. ">
  179. <text class="text1">{{infoDATA.patient.illnessState.desc}}</text>
  180. <text class="text2"
  181. :class="{red:infoDATA.patient.illnessState.value==2||infoDATA.patient.illnessState.value==3}">{{infoDATA.patient.illnessState.name}}</text>
  182. </view>
  183. <view class="page_item_foot_text"
  184. v-if="
  185. (infoDATA.taskType.associationType.value == 'inspect' ||
  186. infoDATA.taskType.associationType.value == 'patientTransport')&&(infoDATA.isAccompany===1||infoDATA.isAccompany===0)">
  187. <text class="text1">陪同情况</text>
  188. <text class="text2"
  189. :class="{red:infoDATA.isAccompany===1}">{{ infoDATA.isAccompany===1?'需要医护陪同':'无需医护陪同'}}</text>
  190. </view>
  191. <view class="page_item_foot_text"
  192. v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.inspectScore">
  193. <text class="text1">陪检方式</text>
  194. <text class="text2">{{ infoDATA.inspectScore.inspectMode }}</text>
  195. </view>
  196. <view class="page_item_foot_text"
  197. v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.inspectUsers">
  198. <text class="text1">陪检人员</text>
  199. <text class="text2">{{ infoDATA.inspectUsers }}</text>
  200. </view>
  201. <view class="page_item_foot_text"
  202. v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.inspectUsersNum">
  203. <text class="text1">陪检人数</text>
  204. <text class="text2">{{ infoDATA.inspectUsersNum }}</text>
  205. </view>
  206. <view class="page_item_foot_text"
  207. v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.inspectUsers">
  208. <text class="text1">执行人员</text>
  209. <text class="text2">{{ infoDATA.inspectUsers }}</text>
  210. </view>
  211. <view class="page_item_foot_text"
  212. v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.inspectUsersNum">
  213. <text class="text1">执行人数</text>
  214. <text class="text2">{{ infoDATA.inspectUsersNum }}</text>
  215. </view>
  216. </view>
  217. <!-- 药包 -->
  218. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">
  219. <text class="page_item_info_title">药包编码</text>
  220. <text class="text">{{ infoDATA.drugs?infoDATA.drugs.packid:'无' }}</text>
  221. </view>
  222. <!-- 血制品 -->
  223. <view class="page_item_info" v-if="
  224. infoDATA.taskType.associationType.value == 'ordinary' &&
  225. infoDATA.taskType.ordinaryField.value == 'blood'
  226. ">
  227. <view>
  228. <text class="page_item_info_title">·</text>
  229. <text class="text">
  230. 送达数量
  231. <text class="page_item_info_txt">{{infoDATA.deliveryNum || '无'}}</text>
  232. </text>
  233. <text class="text">
  234. 实收数量
  235. <text class="page_item_info_txt">{{infoDATA.actualReceiveNum || '无'}}</text>
  236. </text>
  237. <text class="text">
  238. 应收数量
  239. <text class="page_item_info_txt">{{infoDATA.expectReceiveNum || '无'}}</text>
  240. </text>
  241. </view>
  242. </view>
  243. <!-- 标本 -->
  244. <view class="page_item_info" v-if="
  245. infoDATA.taskType.associationType.value == 'specimen' ||
  246. infoDATA.taskType.associationType.value == 'specimenPlan'
  247. ">
  248. <view>
  249. <text class="page_item_info_title">标本信息</text>
  250. <text class="text">
  251. 预计接收
  252. <text class="page_item_info_txt">{{
  253. infoDATA.expectReceiveNum || '无'
  254. }}</text>
  255. </text>
  256. <text class="text"
  257. v-if="infoDATA.gdState.value == 5 || infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  258. 扫描接收
  259. <text class="page_item_info_txt">{{infoDATA.actualReceiveNum || '无'}}</text>
  260. </text>
  261. <text class="text" v-if="infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
  262. 实际送达
  263. <text class="page_item_info_txt">{{actualDelivery || '无'}}</text>
  264. </text>
  265. </view>
  266. <view v-for="spe in infoDATA.specimenSet" :key="spe.id" class="spe_list">
  267. <view>
  268. <text class="page_item_info_title">标本类型</text>
  269. <text class="text">{{ spe.stype ? spe.stype.name : "-" }}({{
  270. spe.urgent == 1 ? "急" : "普"
  271. }})</text>
  272. </view>
  273. <view>
  274. <text class="page_item_info_title">标本编码</text>
  275. <text class="text">{{ spe.scode }}</text>
  276. </view>
  277. <view>
  278. <text class="page_item_info_title">患者姓名</text>
  279. <text class="text">{{ spe.patientName }}<text v-if="spe.bedNum">({{spe.bedNum}})</text></text>
  280. </view>
  281. <view>
  282. <text class="page_item_info_title">目标科室</text>
  283. <text class="text">{{
  284. spe.checkDept ? spe.checkDept.dept : "-"
  285. }}</text>
  286. </view>
  287. </view>
  288. </view>
  289. <!-- 静配 -->
  290. <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'jPBag'">
  291. <text class="page_item_info_title">药包编码</text>
  292. <text class="text">{{ infoDATA.staticDistri?infoDATA.staticDistri.packid:'无' }}</text>
  293. </view>
  294. <!-- 陪检 -->
  295. <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
  296. <view class="page_item_info">
  297. <text class="page_item_info_title">检查信息</text>
  298. </view>
  299. <view id="infos" :animation="animationData">
  300. <view class="page_item_infos" v-for="(item, index) of infoDATA.checkList" :key="index">
  301. <view class="page_item_info2">
  302. <view class="page_item_foot_text">
  303. <text class="text1">检查科室</text>
  304. <text class="text2">{{ item.execDept?item.execDept.dept:'-' }}</text>
  305. </view>
  306. <view class="page_item_foot_text">
  307. <text class="text1">检查项</text>
  308. <text class="text2">{{ item.inspectName||'-' }}</text>
  309. </view>
  310. <view class="page_item_foot_text">
  311. <text class="text1">叫号信息</text>
  312. <text class="text2">{{ item.reservationNumber||'-' }}</text>
  313. </view>
  314. <view class="page_item_foot_text">
  315. <text class="text1">预约时间</text>
  316. <text class="text2">{{ item.yyTime || "-" }}</text>
  317. </view>
  318. <!-- <view class="page_item_foot_text"
  319. v-show="item.inspectState.value==1||item.inspectState.value==2||item.inspectState.value==4">
  320. <view class="btn" @click.stop="remove(item)">移除</view>
  321. </view> -->
  322. <view class="page_item_foot_text">
  323. <view class="btn" @click.stop="remove(item)">移除</view>
  324. </view>
  325. </view>
  326. </view>
  327. </view>
  328. <view id="pulldown" @click="show('show')" v-if="showType == 'hiddle'">
  329. 点击可查看检查详情
  330. <text class="cubeic-pulldown icon_transport transport-paixujiantouxia"></text>
  331. </view>
  332. <view id="pullup" @click="show('hiddle')" v-if="showType == 'show'">
  333. 点击可收起检查详情
  334. <text class="cubeic-pullup icon_transport transport-paixujiantoushang"></text>
  335. </view>
  336. </view>
  337. </view>
  338. <view class="foot_btn2 footerPadding" style="flex-wrap: wrap;">
  339. <view class="btn2" @click="showAlert" v-if="infoDATA.gdState.value == 2">接单</view>
  340. <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
  341. <template
  342. v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
  343. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  344. infoDATA.gdState.value != 2 &&
  345. infoDATA.taskType.associationType.value != 'jPBag' &&
  346. infoDATA.taskType.associationType.value != 'drugsBag' &&
  347. infoDATA.taskType.associationType.value != 'specimen' &&
  348. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  349. infoDATA.taskType.associationType.value != 'ordinary' &&
  350. !(infoDATA.taskType.associationType.value == 'other' && (infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch || infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch))
  351. " hover-class="seimin-btn-hover">
  352. <smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen>
  353. </view>
  354. <!-- 其他临床服务-完成工单-待到达 -->
  355. <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">确认到达</view>
  356. <!-- 其他临床服务-完成工单-待送达 -->
  357. <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">完成工单</view>
  358. <!-- 其他临床服务-拍照 -->
  359. <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].photoSwitch" class="btn2 page_item_btn" @click="photographToOther(infoDATA, 'start')" hover-class="seimin-btn-hover">拍照</view>
  360. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
  361. infoDATA.taskType.associationType.value != 'jPBag' &&
  362. infoDATA.taskType.associationType.value != 'drugsBag' &&
  363. infoDATA.taskType.associationType.value != 'specimen' &&
  364. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  365. infoDATA.taskType.associationType.value != 'other' &&
  366. infoDATA.taskType.associationType.value != 'ordinary' &&
  367. infoDATA.gdState.value == 4
  368. " hover-class="seimin-btn-hover">拍照</view>
  369. <view class="btn3" @click="specialCloseClick()" v-if="
  370. infoDATA.gdState.value != 2 &&
  371. infoDATA.taskType.associationType.value != 'jPBag' &&
  372. infoDATA.taskType.associationType.value != 'drugsBag' &&
  373. infoDATA.taskType.associationType.value != 'specimen' &&
  374. infoDATA.taskType.associationType.value != 'specimenPlan' &&
  375. infoDATA.taskType.associationType.value != 'ordinary' &&
  376. infoDATA.taskType.specialCloseButton == 1
  377. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  378. </template>
  379. <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
  380. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
  381. infoDATA.gdState.value != 2 &&
  382. infoDATA.taskType.associationType.value != 'patientTransport' &&
  383. infoDATA.taskType.associationType.value != 'inspect' &&
  384. infoDATA.taskType.associationType.value != 'other' &&
  385. infoDATA.taskType.associationType.value != 'ordinary'
  386. " hover-class="seimin-btn-hover">
  387. <smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen>
  388. </view>
  389. <!-- 如果是万能交接 -->
  390. <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']"
  391. v-if="infoDATA.taskType.associationType.value == 'ordinary'"
  392. hover-class="seimin-btn-hover" @click="goBack()">
  393. 知道了
  394. </view>
  395. <view class="btn3" @click="specialCloseClick()" v-if="
  396. infoDATA.gdState.value != 2 &&
  397. infoDATA.taskType.associationType.value != 'patientTransport' &&
  398. infoDATA.taskType.associationType.value != 'inspect' &&
  399. infoDATA.taskType.associationType.value != 'other' &&
  400. infoDATA.taskType.specialCloseButton == 1
  401. " hover-class="seimin-btn-hover">特殊情况关闭</view>
  402. <view class="btn3" @click="viewSpecimen(infoDATA)" v-if="
  403. infoDATA.taskType.associationType.value == 'specimen' ||
  404. infoDATA.taskType.associationType.value == 'specimenPlan'
  405. " hover-class="seimin-btn-hover">查看标本</view>
  406. <view class="btn3" @click="viewDrugsBag(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'drugsBag'" hover-class="seimin-btn-hover">查看业务流程</view>
  407. <view class="btn3" @click="toDrugBatches(infoDATA.drugs.batchNo)" v-if="infoDATA.taskType.associationType.value == 'drugsBag' && taskTypeConfig.drugsBatchInfo == 1" hover-class="seimin-btn-hover">药品批次</view>
  408. <view class="btn3" @click="viewBlood(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'blood'" hover-class="seimin-btn-hover">查看血制品</view>
  409. <view class="btn3" @click="additionalUser(infoDATA)" v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.worker && infoDATA.worker.id && multiplayerMode === 1" hover-class="seimin-btn-hover">追加陪检人员</view>
  410. <view class="btn3" @click="additionalUser(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.worker && infoDATA.worker.id && clinicalMultiplayerMode === 1 && clinicalTaskIdsFlag && !infoDATA.copyBy" hover-class="seimin-btn-hover">追加执行人员</view>
  411. <view class="btn3" style="flex-basis: 100%;" @click="patientHandover(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'patientTransport' && infoDATA.worker && infoDATA.worker.id && handoverOrder === 1" hover-class="seimin-btn-hover">扫描交接</view>
  412. </view>
  413. <!-- 弹窗 -->
  414. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  415. @know="know" :operate="models.operate" @ok="ok" @cancel="cancel" :textareaFlag="textareaFlag"
  416. @textareaInput="textareaInput"></showModel>
  417. <!-- 弹窗 -->
  418. <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor"
  419. :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1" :remove="true">
  420. </inspectRemoveModel>
  421. <!-- 弹窗 -->
  422. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  423. :operate="models2.operate" @ok="ok2" @cancel="cancel2"></showModel>
  424. <!-- 填写交接人工号弹窗 -->
  425. <selectAccount v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  426. @cancel="hosCancel">
  427. </selectAccount>
  428. <!-- 手动查询弹窗 -->
  429. <checkboxModal v-if="checkboxModels.disjunctor" :content="checkboxModels.content" :disjunctor="checkboxModels.disjunctor"
  430. @ok="checkboxOk" @cancel="checkboxCancel">
  431. </checkboxModal>
  432. </view>
  433. </template>
  434. <script>
  435. import selectAccount from "../../components/selectAccount/selectAccount.vue";
  436. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  437. import {
  438. get,
  439. post,
  440. SM,
  441. webHandle
  442. } from "../../http/http.js";
  443. import {
  444. pathUrl,
  445. photographTool
  446. } from "../../tools/photograph.js";
  447. export default {
  448. components: {
  449. selectAccount,
  450. },
  451. data() {
  452. return {
  453. patientHandoverData: {},
  454. patientHandoverCode: '',
  455. other: {
  456. user: {},
  457. data: {},
  458. },
  459. // 手动查询弹窗model
  460. checkboxModels: {
  461. disjunctor: false,
  462. },
  463. taskTypeConfig: {},
  464. // 填写交接人工号弹窗model
  465. hosModels: {
  466. disjunctor: false,
  467. },
  468. currentCode: '', //当前拍照使用的科室二维码
  469. currentData: {}, //当前小扫描的工单对象
  470. multiplayerMode: 0,
  471. handoverOrder: 0,
  472. clinicalMultiplayerMode: 0,
  473. clinicalTaskIdsFlag: false,
  474. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  475. SMFlag:true,
  476. actualDelivery: 0,
  477. currentUserId: 0,
  478. // 弹窗model
  479. models: {
  480. disjunctor: false,
  481. },
  482. // 弹窗model1
  483. models1: {
  484. disjunctor: false,
  485. },
  486. // 弹窗model1
  487. models2: {
  488. disjunctor: false,
  489. },
  490. currentInspect: null,
  491. showType: "show",
  492. infoDATA: {},
  493. dataId: "",
  494. animationData: {},
  495. // 特殊情况关闭原因开关
  496. textareaFlag: false,
  497. textareaText: "",
  498. };
  499. },
  500. filters: {
  501. // 自定义管道 yyTime
  502. yyTimeFilter: function(data) {
  503. if (data) {
  504. let nDate = null;
  505. if (typeof data == 'string') {
  506. let arr = data.split(/[-:\s]/);
  507. nDate = new Date(
  508. arr[0] - 0,
  509. arr[1] - 1,
  510. arr[2] - 0,
  511. arr[3] - 0,
  512. arr[4] - 0,
  513. 0
  514. );
  515. } else if (typeof data == 'number') {
  516. nDate = new Date(data);
  517. }
  518. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  519. const date = nDate.getDate().toString().padStart(2, 0);
  520. const hour = nDate.getHours().toString().padStart(2, 0);
  521. const minute = nDate.getMinutes().toString().padStart(2, 0);
  522. return `${month}-${date} ${hour}:${minute}`;
  523. } else {
  524. return "-";
  525. }
  526. },
  527. },
  528. methods: {
  529. ok2() {
  530. uni.showLoading({
  531. title: "加载中",
  532. mask: true,
  533. });
  534. post("/patient/patientHandover", {
  535. id: this.patientHandoverCode.id,
  536. patientCode: this.patientHandoverData.patient.patientCode,
  537. }).then((result) => {
  538. this.models2.disjunctor = false;
  539. if (result.state == 200) {
  540. uni.hideLoading();
  541. uni.showToast({
  542. icon: "none",
  543. mask: true,
  544. title: "交接成功!",
  545. });
  546. setTimeout(() => {
  547. uni.navigateTo({
  548. url: `/pages/receiptpage/receiptpage`,
  549. });
  550. },300)
  551. } else {
  552. uni.hideLoading();
  553. uni.showToast({
  554. icon: "none",
  555. title: result.msg || "接口获取数据失败!",
  556. });
  557. }
  558. });
  559. },
  560. cancel2() {
  561. this.models2.disjunctor = false;
  562. },
  563. // 门诊患者交接
  564. patientHandover(infoDATA){
  565. console.log(infoDATA);
  566. this.patientHandoverData = infoDATA;
  567. if (!this.SMFlag) {
  568. return;
  569. }
  570. this.SMFlag = false;
  571. SM().then((content) => {
  572. uni.showLoading({
  573. title: "加载中",
  574. mask: true,
  575. });
  576. //检验二维码的有效性(扫码前必须验证)
  577. post("/dept/scanning", {
  578. content,
  579. })
  580. .then((result) => {
  581. this.patientHandoverCode = JSON.parse(result.code);
  582. this.SMFlag = true;
  583. // 200检测通过,201没有有效期也通过。
  584. if (result.state == 200 || result.state == 201) {
  585. uni.hideLoading();
  586. this.models2 = {
  587. disjunctor: true,
  588. title: "提示",
  589. content: `您确认要与<span class="red">${this.patientHandoverCode.name}</span>交接吗?`,
  590. icon: "warn",
  591. operate: {
  592. ok: "确定",
  593. cancel: "取消",
  594. },
  595. };
  596. } else {
  597. uni.hideLoading();
  598. uni.showToast({
  599. icon: "none",
  600. title: result.info || "接口获取数据失败!",
  601. });
  602. }
  603. })
  604. }).catch(err => {
  605. this.SMFlag = true;
  606. });
  607. },
  608. // 手动查询-确认
  609. checkboxOk(bulkCopy) {
  610. console.log(bulkCopy);
  611. this.checkboxModels.disjunctor = false;
  612. let { user, data } = this.other;
  613. this.additionalUserCommon(user, data.id, data.worker.id, bulkCopy);
  614. },
  615. // 手动查询-取消
  616. checkboxCancel() {
  617. this.checkboxModels.disjunctor = false;
  618. },
  619. // 手动查询弹窗
  620. showCheckboxModal(user, data) {
  621. this.other = {
  622. user,
  623. data,
  624. };
  625. this.checkboxModels = {
  626. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  627. disjunctor: true,
  628. }
  629. },
  630. // 判断药品页面控制-是否显示关联批次药品
  631. isShowDrugsBatchInfo(){
  632. post("/simple/data/fetchDataList/taskType", {
  633. "idx": 0,
  634. "sum": 10,
  635. "taskType": {
  636. "simpleQuery": true,
  637. "hosId": {
  638. "id": this.hosId
  639. },
  640. "associationType": {
  641. "key": "association_types",
  642. "value": "drugsBag"
  643. }
  644. }
  645. }).then((res) => {
  646. if (res.status == 200) {
  647. res.list = res.list || [];
  648. let taskType = res.list[0] || {};
  649. if(taskType.id){
  650. post("/simple/data/fetchDataList/taskTypeConfig", {
  651. "idx": 0,
  652. "sum": 10,
  653. "taskTypeConfig": {
  654. "taskTypeDTO": {
  655. "hosId": {
  656. "id": this.hosId
  657. },
  658. "associationType": taskType.associationType
  659. }
  660. }
  661. }).then((res) => {
  662. if (res.status == 200) {
  663. res.list = res.list || [];
  664. this.taskTypeConfig = res.list[0] || {};
  665. } else {
  666. uni.showToast({
  667. icon: "none",
  668. title: res.msg || "接口获取数据失败!",
  669. });
  670. }
  671. });
  672. }else{
  673. uni.showToast({
  674. icon: "none",
  675. title: "请配置药品任务类型!",
  676. });
  677. }
  678. } else {
  679. uni.showToast({
  680. icon: "none",
  681. title: res.msg || "接口获取数据失败!",
  682. });
  683. }
  684. });
  685. },
  686. // 跳转到药品批次页面
  687. toDrugBatches(batchNo){
  688. uni.navigateTo({
  689. url: `../drugBatches/drugBatches?batchNo=${batchNo}`,
  690. });
  691. },
  692. // 前往其他临床服务完成工单确认页面
  693. otherCompleteOrder(data){
  694. console.log(data);
  695. uni.navigateTo({
  696. url: `../otherCompleteOrder/otherCompleteOrder?orderId=${data.id}&taskType=${data.taskType ? encodeURIComponent(JSON.stringify(data.taskType)) : ''}&order=${data ? encodeURIComponent(JSON.stringify(data)) : ''}`,
  697. });
  698. },
  699. // 如果不是静配,药配,标本配送,标本轮巡
  700. // 科室签到(小扫描)-拍照
  701. nextDeptOrder_ss(data, accountObj) {
  702. console.log(this.currentCode);
  703. let isKs = 0;
  704. let ids = [];
  705. let id = data.id;
  706. ids.push(id);
  707. let list = {
  708. code: "",
  709. ids: ids,
  710. };
  711. let code = "";
  712. let type = "";
  713. if (this.currentCode) {
  714. let gdStateValue = data.gdState.value; //工单状态value
  715. let associationTypeValue = data.taskType.associationType.value; //关联类型value
  716. // 其他临床服务,并且工单状态是待到达||工单状态待送达
  717. if (
  718. (associationTypeValue == "other" &&
  719. gdStateValue == "4") ||
  720. gdStateValue == "5"
  721. ) {
  722. code = this.currentCode;
  723. type = "orderSign/" + code;
  724. list = {
  725. ids
  726. };
  727. if (accountObj) {
  728. list.handover = [accountObj.accountId];
  729. }
  730. isKs = 1;
  731. }
  732. uni.showLoading({
  733. title: "加载中",
  734. mask: true,
  735. });
  736. post("/workerOrder/" + type, list).then((res) => {
  737. uni.hideLoading();
  738. if (res) {
  739. if (res.status == 200) {
  740. if (
  741. gdStateValue == "4" &&
  742. associationTypeValue == "other"
  743. ) {
  744. uni.navigateTo({
  745. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  746. });
  747. }
  748. if (gdStateValue == "5") {
  749. uni.navigateTo({
  750. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  751. });
  752. }
  753. } else {
  754. uni.navigateTo({
  755. url: `../../pages/scanning_Result/scanning_Result?type=${
  756. associationTypeValue
  757. }&type1=${res.type}&id=${data.id}&status=600&msg=${
  758. res.msg
  759. }&isKs=${isKs}&model=${encodeURIComponent(
  760. JSON.stringify(res)
  761. )}&qrcode=${this.currentCode}`,
  762. });
  763. }
  764. } else {
  765. uni.navigateTo({
  766. url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
  767. });
  768. }
  769. });
  770. }
  771. },
  772. // 填写交接人工号-确认
  773. hosOk(data) {
  774. console.log(data);
  775. const {
  776. accountName,
  777. account,
  778. accountId
  779. } = data;
  780. if (!accountName && !account) {
  781. //没有填写交接人
  782. uni.showModal({
  783. title: '提示',
  784. content: "请填写交接人工号!",
  785. showCancel: false,
  786. success: function(res) {
  787. if (res.confirm) {
  788. console.log('用户点击确定');
  789. } else if (res.cancel) {
  790. console.log('用户点击取消');
  791. }
  792. }
  793. });
  794. return;
  795. } else if (!accountName && account || accountName && !account) {
  796. //没有填写交接人
  797. uni.showModal({
  798. title: '提示',
  799. content: "请填写正确的交接人工号!",
  800. showCancel: false,
  801. success: function(res) {
  802. if (res.confirm) {
  803. console.log('用户点击确定');
  804. } else if (res.cancel) {
  805. console.log('用户点击取消');
  806. }
  807. }
  808. });
  809. return;
  810. }
  811. this.hosModels.disjunctor = false;
  812. let associationTypeValue = this.currentData.taskType.associationType.value;
  813. console.log(associationTypeValue)
  814. this.uploadToOther(this.currentData, data, 'start');
  815. },
  816. // 填写交接人工号-取消
  817. hosCancel() {
  818. this.hosModels.disjunctor = false;
  819. },
  820. // 填写交接人工号弹窗
  821. showSelectAccount() {
  822. this.hosModels = {
  823. disjunctor: true,
  824. }
  825. },
  826. // 拍照-上传
  827. uploadToOther(data, accountObj, type){
  828. // 其他临床服务拍照签到
  829. console.log(data, 1111);
  830. let id_seimin;
  831. let asTypeValue_seimin;
  832. let gdStateValue_seimin;
  833. if (data.status != 200 && data.status !== undefined) {
  834. id_seimin = data.id;
  835. asTypeValue_seimin = data.type;
  836. gdStateValue_seimin = JSON.parse(data.model).gdstate2; //type改成gdstate
  837. } else {
  838. id_seimin = data.id;
  839. asTypeValue_seimin = data.taskType.associationType.value;
  840. gdStateValue_seimin = data.gdState.value;
  841. }
  842. //#ifdef H5
  843. uni.chooseImage({
  844. count: 1,
  845. sourceType: ['camera'],
  846. success: (chooseImageRes) => {
  847. console.log(chooseImageRes, pathUrl)
  848. const tempFilePaths = chooseImageRes.tempFilePaths;
  849. const tempFiles = chooseImageRes.tempFiles;
  850. let tp = tempFilePaths[0];
  851. uni.showLoading({
  852. mask: true,
  853. title: '加载中'
  854. });
  855. post('/workerOrder/findRecordInfoByOrderId', {
  856. orderId: id_seimin,
  857. gdOperate: 21,
  858. }).then(result => {
  859. console.log(result)
  860. if (result.state == 200) {
  861. uni.getImageInfo({
  862. src: tp,
  863. success: (res) => {
  864. console.log('压缩前', res)
  865. let canvasWidth = res.width //图片原始长宽
  866. let canvasHeight = res.height
  867. let img = new Image()
  868. img.src = res.path
  869. let canvas = document.createElement('canvas');
  870. let ctx = canvas.getContext('2d')
  871. canvas.width = canvasWidth
  872. canvas.height = canvasHeight
  873. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  874. canvas.toBlob((fileSrc) => {
  875. tp = window.URL.createObjectURL(fileSrc)
  876. console.log('压缩后', tp);
  877. uni.uploadFile({
  878. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  879. filePath: tp,
  880. name: 'file',
  881. formData: {
  882. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  883. 0].path.split(
  884. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  885. },
  886. success: (uploadFileRes) => {
  887. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  888. this.nextDeptOrder_ss(data, accountObj, type);
  889. },
  890. fail: err => {
  891. console.error(err);
  892. uni.hideLoading();
  893. uni.showToast({
  894. icon: 'none',
  895. title: '上传失败',
  896. duration: 2000
  897. });
  898. }
  899. });
  900. }, 'image/jpeg', 0.3)
  901. },
  902. fail: function () {
  903. uni.hideLoading();
  904. uni.showToast({
  905. icon: 'none',
  906. title: '上传失败',
  907. duration: 2000
  908. });
  909. }
  910. })
  911. } else {
  912. uni.hideLoading();
  913. uni.showToast({
  914. icon: "none",
  915. title: result.msg || "接口获取数据失败!",
  916. });
  917. }
  918. })
  919. }
  920. });
  921. //#endif
  922. //#ifdef APP-PLUS
  923. uni.chooseImage({
  924. count: 1,
  925. sourceType: ['camera'],
  926. sizeType: ['compressed'],
  927. success: (chooseImageRes) => {
  928. console.log(chooseImageRes, pathUrl)
  929. const tempFilePaths = chooseImageRes.tempFilePaths;
  930. const tempFiles = chooseImageRes.tempFiles;
  931. let tp = tempFilePaths[0];
  932. uni.showLoading({
  933. mask: true,
  934. title: '加载中'
  935. });
  936. post('/workerOrder/findRecordInfoByOrderId', {
  937. orderId: id_seimin,
  938. gdOperate: 21,
  939. }).then(result => {
  940. console.log(result)
  941. if (result.state == 200) {
  942. uni.compressImage({
  943. src: tp,
  944. quality: 30,
  945. success: (res) => {
  946. console.log('压缩前', res)
  947. tp = res.tempFilePath;
  948. console.log('压缩后', tp);
  949. uni.uploadFile({
  950. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  951. filePath: tp,
  952. name: 'file',
  953. formData: {
  954. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  955. 0].path.split(
  956. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  957. },
  958. success: (uploadFileRes) => {
  959. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  960. this.nextDeptOrder_ss(data, accountObj, type);
  961. },
  962. fail: err => {
  963. console.error(err);
  964. uni.hideLoading();
  965. uni.showToast({
  966. icon: 'none',
  967. title: '上传失败',
  968. duration: 2000
  969. });
  970. }
  971. });
  972. },
  973. fail: function () {
  974. uni.hideLoading();
  975. uni.showToast({
  976. icon: 'none',
  977. title: '上传失败',
  978. duration: 2000
  979. });
  980. }
  981. })
  982. } else {
  983. uni.hideLoading();
  984. uni.showToast({
  985. icon: "none",
  986. title: result.msg || "接口获取数据失败!",
  987. });
  988. }
  989. })
  990. }
  991. });
  992. //#endif
  993. },
  994. // 拍照-其他
  995. async photographToOther(data, type) {
  996. this.currentData = data;
  997. uni.showLoading({
  998. title: "加载中",
  999. mask: true,
  1000. });
  1001. // 其他临床服务
  1002. let result = await post("/dept/scanning", {
  1003. content: type === 'start' ? data.startDept.qrcode : data.endDepts[0].qrcode,
  1004. taskTypeId: data.taskType.id,
  1005. gdState: data.gdState.id,
  1006. });
  1007. uni.hideLoading();
  1008. this.currentCode = result.code;
  1009. if (result.state == 200 || result.state == 201) {
  1010. uni.showModal({
  1011. title: '提示',
  1012. content: '请尽量拍摄角度覆盖清洁区域?',
  1013. success: (res) => {
  1014. if (res.confirm) {
  1015. if (result.account) {
  1016. this.uploadToOther(data, {
  1017. account: result.account,
  1018. accountName: result.name,
  1019. accountId: result.id,
  1020. }, type);
  1021. } else {
  1022. this.uploadToOther(data, undefined, type);
  1023. }
  1024. } else if (res.cancel) {
  1025. console.log('用户点击取消');
  1026. }
  1027. }
  1028. });
  1029. } else if (result.state == '0000') {
  1030. this.showSelectAccount();
  1031. } else {
  1032. uni.showToast({
  1033. icon: "none",
  1034. title: result.info || "接口获取数据失败!",
  1035. });
  1036. }
  1037. },
  1038. goBack() {
  1039. uni.navigateTo({
  1040. url: "../receiptpage/receiptpage",
  1041. });
  1042. },
  1043. // 查看标本
  1044. viewSpecimen(workOrder) {
  1045. uni.navigateTo({
  1046. url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  1047. });
  1048. },
  1049. // 查看药品业务数据
  1050. viewDrugsBag(workOrder) {
  1051. uni.navigateTo({
  1052. url: `../drugsBagHistory/drugsBagHistory?id=${workOrder.drugs.id}&packid=${workOrder.drugs.packid}`,
  1053. });
  1054. },
  1055. // 查看血制品
  1056. viewBlood(workOrder) {
  1057. uni.showLoading({
  1058. title: "加载中",
  1059. mask: true,
  1060. });
  1061. post('/transflow/checkData', {
  1062. "type": "blood",
  1063. "orderId": workOrder.id
  1064. }).then(res => {
  1065. uni.hideLoading();
  1066. if(res.state == 200){
  1067. uni.navigateTo({
  1068. url: `../blood_list/blood_list?bloods=${encodeURIComponent(JSON.stringify(res.data.all))}`,
  1069. });
  1070. }else{
  1071. uni.showToast({
  1072. icon: "none",
  1073. title: res.msg || "接口获取数据失败!",
  1074. });
  1075. }
  1076. })
  1077. },
  1078. // 移除检查->知道了
  1079. know1() {
  1080. this.models1.disjunctor = false;
  1081. // this.getInfo(this.dataId);
  1082. uni.navigateTo({
  1083. url: '../receiptpage/receiptpage',
  1084. });
  1085. },
  1086. // 移除检查->确定
  1087. ok1(data) {
  1088. console.log(data);
  1089. const {
  1090. value,
  1091. yyTime
  1092. } = data;
  1093. if (!value) {
  1094. //没有选择移除原因
  1095. uni.showModal({
  1096. title: "提示",
  1097. content: "请选择移除原因!",
  1098. showCancel: false,
  1099. success: function(res) {
  1100. if (res.confirm) {
  1101. console.log("用户点击确定");
  1102. } else if (res.cancel) {
  1103. console.log("用户点击取消");
  1104. }
  1105. },
  1106. });
  1107. return;
  1108. } else if (value == 2 && !yyTime) {
  1109. //没有填写预约时间
  1110. uni.showModal({
  1111. title: "提示",
  1112. content: "请填写预约时间!",
  1113. showCancel: false,
  1114. success: function(res) {
  1115. if (res.confirm) {
  1116. console.log("用户点击确定");
  1117. } else if (res.cancel) {
  1118. console.log("用户点击取消");
  1119. }
  1120. },
  1121. });
  1122. return;
  1123. }
  1124. this.models1.disjunctor = false;
  1125. let postData = {
  1126. gdId: this.infoDATA.id,
  1127. inspectId: this.currentInspect.id,
  1128. reason: value == 1 ? 'checkDone' : 'modificationTime',
  1129. yyTime: value == 1 ? undefined : yyTime,
  1130. };
  1131. uni.showLoading({
  1132. title: '移除中',
  1133. mask: true,
  1134. })
  1135. post('/workerOrder/removeInspectByOderId', postData).then(res => {
  1136. uni.hideLoading();
  1137. if (res.state == 200) {
  1138. uni.showToast({
  1139. icon: 'none',
  1140. title: '移除成功!',
  1141. success() {
  1142. setTimeout(() => {
  1143. uni.navigateTo({
  1144. url: '../receiptpage/receiptpage',
  1145. });
  1146. }, 1500)
  1147. }
  1148. })
  1149. } else {
  1150. uni.showToast({
  1151. icon: 'none',
  1152. title: '移除失败!',
  1153. })
  1154. }
  1155. })
  1156. },
  1157. // 移除检查->取消
  1158. cancel1() {
  1159. this.models1.disjunctor = false;
  1160. },
  1161. // 移除
  1162. remove(item) {
  1163. this.currentInspect = item;
  1164. this.models1 = {
  1165. disjunctor: true,
  1166. content: "请选择您移除检查的原因?检查移除后将会自动完成或删除工单!",
  1167. icon: "warn",
  1168. operate: {
  1169. ok: "确定",
  1170. cancel: "取消",
  1171. },
  1172. };
  1173. },
  1174. // 拍照
  1175. photograph(data) {
  1176. photographTool(data);
  1177. },
  1178. // 特殊情况输入文字
  1179. textareaInput(value) {
  1180. this.textareaText = value;
  1181. if (value.trim().length >= 10) {
  1182. this.models.operate = {
  1183. ok: "确定",
  1184. cancel: "取消",
  1185. };
  1186. } else {
  1187. this.models.operate = {
  1188. cancel: "取消",
  1189. };
  1190. }
  1191. },
  1192. // 追加陪检人/执行人按钮
  1193. additionalUser(data) {
  1194. if (!this.SMFlag) {
  1195. return;
  1196. }
  1197. this.SMFlag = false;
  1198. console.log(data, 'data');
  1199. SM().then((ress1) => {
  1200. uni.showLoading({
  1201. title: "加载中",
  1202. mask: true,
  1203. });
  1204. //检验二维码的有效性
  1205. post("/dept/scanning", {
  1206. content: ress1,
  1207. taskTypeId: data.taskType.id,
  1208. gdState: data.gdState.id,
  1209. }).then((result) => {
  1210. this.SMFlag = true;
  1211. // this.currentCode = result.code;
  1212. if (result.state == 200 || result.state == 201) {
  1213. console.log(result);
  1214. let user;
  1215. try{
  1216. // json对象字符串
  1217. user = JSON.parse(result.code);
  1218. // 不是json对象字符串
  1219. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() !== 'object'){
  1220. user = result.code;
  1221. }
  1222. }catch(e){
  1223. user = result.code;
  1224. }
  1225. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'object' && user.type == 'myQrCode' && user.id && user.name){
  1226. user.qrcode = ress1;
  1227. uni.hideLoading();
  1228. if(data.taskType.associationType.value == 'other'){
  1229. this.showCheckboxModal(user, data);
  1230. }else{
  1231. uni.showModal({
  1232. title: "提示",
  1233. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1234. success: (res) => {
  1235. if (res.confirm) {
  1236. console.log("用户点击确定");
  1237. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1238. } else if (res.cancel) {
  1239. console.log("用户点击取消");
  1240. }
  1241. },
  1242. });
  1243. }
  1244. }else if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'string'){
  1245. let identityCardNumber = user;
  1246. // 根据身份证获取name
  1247. // todo
  1248. post("/data/fetchDataList/user", {idx: 0, sum: 1, user: { identityCardNumber }}).then((result) => {
  1249. uni.hideLoading();
  1250. if(result.status == 200){
  1251. result.list = result.list || [];
  1252. if(result.list.length){
  1253. let user = {name: result.list[0].name, identityCardNumber, qrcode: ress1};
  1254. if(data.taskType.associationType.value == 'other'){
  1255. this.showCheckboxModal(user, data);
  1256. }else{
  1257. uni.showModal({
  1258. title: "提示",
  1259. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1260. success: (res) => {
  1261. if (res.confirm) {
  1262. console.log("用户点击确定");
  1263. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1264. } else if (res.cancel) {
  1265. console.log("用户点击取消");
  1266. }
  1267. },
  1268. });
  1269. }
  1270. }else{
  1271. uni.navigateTo({
  1272. url: `../result_error/result_error?qrcode=${ress1}&msg=扫描二维码无法找到用户!`,
  1273. });
  1274. }
  1275. }else{
  1276. uni.navigateTo({
  1277. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1278. });
  1279. }
  1280. })
  1281. }else{
  1282. uni.hideLoading();
  1283. uni.navigateTo({
  1284. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1285. });
  1286. }
  1287. } else {
  1288. uni.hideLoading();
  1289. uni.navigateTo({
  1290. url: `../result_error/result_error?qrcode=${ress1}&msg=${result.info || '接口获取数据失败!'}`,
  1291. });
  1292. }
  1293. });
  1294. }).catch(err=>{
  1295. this.SMFlag = true;
  1296. });
  1297. },
  1298. // 追加陪检人/执行人
  1299. additionalUserCommon(user, gdId, workerId, bulkCopy) {
  1300. console.log(user, gdId, workerId, bulkCopy);
  1301. uni.showLoading({
  1302. title: "加载中",
  1303. mask: true,
  1304. });
  1305. // 二维码里有id则传userid,没有则传identityCardNumber
  1306. post("/workerOrder/additionalAccompanyingPersonnel", {
  1307. userId: user.id || undefined,
  1308. identityCardNumber: !user.id ? user.identityCardNumber : undefined,
  1309. gdId,
  1310. workerId,
  1311. bulkCopy: bulkCopy ? 1 : undefined,
  1312. }).then((result) => {
  1313. uni.hideLoading();
  1314. if (result.state == 200) {
  1315. this.getInfo(gdId);
  1316. uni.showToast({
  1317. icon: 'none',
  1318. duration: 4000,
  1319. title: '操作成功!'
  1320. })
  1321. } else {
  1322. uni.navigateTo({
  1323. url: `../result_error/result_error?qrcode=${user.qrcode}&msg=${result.msg || '接口获取数据失败!'}`,
  1324. });
  1325. }
  1326. });
  1327. },
  1328. // 特殊情况关闭按钮
  1329. specialCloseClick() {
  1330. this.textareaFlag = true;
  1331. this.models = {
  1332. title: "特殊情况关闭",
  1333. disjunctor: true,
  1334. content: "",
  1335. icon: "",
  1336. operate: {
  1337. cancel: "取消",
  1338. },
  1339. };
  1340. },
  1341. ok() {
  1342. uni.showLoading({
  1343. title: "加载中",
  1344. mask: true,
  1345. });
  1346. post("/workerOrder/specialCaseClose", {
  1347. workOrderId: this.dataId,
  1348. reason: this.textareaText.trim(),
  1349. }).then((result) => {
  1350. this.models.disjunctor = false;
  1351. this.textareaFlag = false;
  1352. this.textareaText = "";
  1353. if (result.state == 200) {
  1354. uni.hideLoading();
  1355. this.models = {
  1356. disjunctor: true,
  1357. content: "工单关闭成功",
  1358. icon: "success",
  1359. operate: {
  1360. know: "知道了",
  1361. },
  1362. };
  1363. } else {
  1364. uni.hideLoading();
  1365. this.models = {
  1366. disjunctor: true,
  1367. content: "工单关闭失败",
  1368. icon: "error",
  1369. operate: {
  1370. know: "知道了",
  1371. },
  1372. };
  1373. }
  1374. });
  1375. },
  1376. cancel() {
  1377. this.models.disjunctor = false;
  1378. this.textareaFlag = false;
  1379. this.textareaText = "";
  1380. },
  1381. // 点击可查看检查详情
  1382. show(type) {
  1383. this.showType = type;
  1384. if (type === "show") {
  1385. //展开
  1386. // 计算高度
  1387. const query = uni.createSelectorQuery().in(this);
  1388. query
  1389. .selectAll(".page_item_infos")
  1390. .boundingClientRect((data) => {
  1391. let len = data.reduce((prev, current) => {
  1392. return prev + current.height;
  1393. }, 0);
  1394. this.animation.height(len).step();
  1395. this.animationData = this.animation.export();
  1396. })
  1397. .exec();
  1398. } else if (type === "hiddle") {
  1399. this.animation.height(0).step();
  1400. this.animationData = this.animation.export();
  1401. }
  1402. },
  1403. // 抢单->知道了
  1404. know() {
  1405. this.models.disjunctor = false;
  1406. uni.navigateTo({
  1407. url: "../receiptpage/receiptpage",
  1408. });
  1409. },
  1410. // 抢单
  1411. showAlert() {
  1412. get("/workerOrder/takeOrder/" + this.infoDATA.id).then((res) => {
  1413. if (res.status == 200) {
  1414. this.models = {
  1415. disjunctor: true,
  1416. content: "接单成功",
  1417. icon: "success",
  1418. operate: {
  1419. know: "知道了",
  1420. },
  1421. };
  1422. } else {
  1423. uni.showToast({
  1424. icon: "none",
  1425. title: res.msg || "接口获取数据失败!",
  1426. });
  1427. }
  1428. });
  1429. },
  1430. // 请求详细页面的数据(除标本轮巡和标本配送)
  1431. getInfo(id) {
  1432. uni.showLoading({
  1433. title: "加载中",
  1434. mask: true,
  1435. });
  1436. get("/api/fetchData/workOrder/" + id).then((res) => {
  1437. uni.hideLoading();
  1438. if (res.status == 200) {
  1439. this.infoDATA = res.data;
  1440. // 计算高度
  1441. setTimeout(() => {
  1442. const query = uni.createSelectorQuery().in(this);
  1443. query
  1444. .selectAll(".page_item_infos")
  1445. .boundingClientRect((data) => {
  1446. let len = data.reduce((prev, current) => {
  1447. return prev + current.height;
  1448. }, 0);
  1449. this.animation.height(len).step();
  1450. this.animationData = this.animation.export();
  1451. })
  1452. .exec();
  1453. }, 500)
  1454. } else {
  1455. uni.showToast({
  1456. icon: "none",
  1457. title: res.msg || "接口获取数据失败!",
  1458. });
  1459. }
  1460. });
  1461. },
  1462. // 请求详细页面的数据
  1463. getInfoBySpecimen(id) {
  1464. uni.showLoading({
  1465. title: "加载中",
  1466. mask: true,
  1467. });
  1468. post("/api/getWechatItem", {
  1469. id
  1470. }).then((res) => {
  1471. uni.hideLoading();
  1472. if (res.state == 200) {
  1473. this.actualDelivery = res.actualDelivery;
  1474. this.infoDATA = res.data;
  1475. // 计算高度
  1476. setTimeout(() => {
  1477. const query = uni.createSelectorQuery().in(this);
  1478. query
  1479. .selectAll(".page_item_infos")
  1480. .boundingClientRect((data) => {
  1481. let len = data.reduce((prev, current) => {
  1482. return prev + current.height;
  1483. }, 0);
  1484. this.animation.height(len).step();
  1485. this.animationData = this.animation.export();
  1486. })
  1487. .exec();
  1488. }, 500)
  1489. } else {
  1490. uni.showToast({
  1491. icon: "none",
  1492. title: res.msg || "接口获取数据失败!",
  1493. });
  1494. }
  1495. });
  1496. },
  1497. // 获取检查页面控制开关
  1498. getTaskConfig(){
  1499. post("/simple/data/fetchDataList/taskTypeConfig", {
  1500. "idx": 0,
  1501. "sum": 10,
  1502. "taskTypeConfig": {
  1503. "taskTypeDTO": {
  1504. "hosId": {
  1505. "id": this.hosId
  1506. },
  1507. "associationType": {
  1508. "key": "association_types",
  1509. "value": "inspect"
  1510. }
  1511. }
  1512. }
  1513. }).then((result) => {
  1514. if (result.status == 200) {
  1515. if(result.list && result.list[0]){
  1516. this.multiplayerMode = result.list[0].multiplayerMode;
  1517. this.handoverOrder = result.list[0].handoverOrder;
  1518. }else{
  1519. this.multiplayerMode = 0;
  1520. this.handoverOrder = 0;
  1521. }
  1522. } else {
  1523. this.multiplayerMode = 0;
  1524. this.handoverOrder = 0;
  1525. }
  1526. });
  1527. },
  1528. // 获取临床服务页面控制开关
  1529. getTaskOtherConfig(options){
  1530. post("/simple/data/fetchDataList/taskTypeConfig", {
  1531. "idx": 0,
  1532. "sum": 10,
  1533. "taskTypeConfig": {
  1534. "hosId": this.hosId,
  1535. "associationType": options.associationTypeId,
  1536. }
  1537. }).then((result) => {
  1538. if (result.status == 200) {
  1539. if(result.list && result.list[0]){
  1540. this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
  1541. let clinicalTaskIds = result.list[0].clinicalTaskIds ? result.list[0].clinicalTaskIds.split(',') : [] ;
  1542. this.clinicalTaskIdsFlag = clinicalTaskIds.includes(options.taskTypeId);
  1543. console.log(clinicalTaskIds, options.taskTypeId)
  1544. }else{
  1545. this.clinicalMultiplayerMode = 0;
  1546. this.clinicalTaskIdsFlag = false;
  1547. }
  1548. } else {
  1549. this.clinicalMultiplayerMode = 0;
  1550. this.clinicalTaskIdsFlag = false;
  1551. }
  1552. });
  1553. },
  1554. },
  1555. onLoad(options) {
  1556. console.log(options, 'options');
  1557. options.associationTypeValue === 'drugsBag' && this.isShowDrugsBatchInfo();
  1558. this.currentUserId = uni.getStorageSync('userData').user.id;
  1559. let id = options.id;
  1560. this.dataId = id;
  1561. if (
  1562. options.associationTypeValue == 'specimen' ||
  1563. options.associationTypeValue == 'specimenPlan'
  1564. ) {
  1565. this.getInfoBySpecimen(id);
  1566. } else {
  1567. this.getInfo(id);
  1568. }
  1569. if (
  1570. options.associationTypeValue == 'inspect' ||
  1571. options.associationTypeValue == 'patientTransport'
  1572. ) {
  1573. this.getTaskConfig();
  1574. }else if(options.associationTypeValue == 'other'){
  1575. this.getTaskOtherConfig(options);
  1576. }
  1577. // 创建动画
  1578. this.animation = uni.createAnimation({
  1579. duration: 500,
  1580. timingFunction: "ease",
  1581. });
  1582. // #ifdef APP-PLUS
  1583. webHandle("no", "app");
  1584. // #endif
  1585. // #ifdef H5
  1586. webHandle("no", "wx");
  1587. // #endif
  1588. },
  1589. onUnload() {
  1590. // 页面关闭后清空数据
  1591. this.animationData = {};
  1592. },
  1593. };
  1594. </script>
  1595. <style lang="less">
  1596. .Receipt_infopage {
  1597. padding: 0 20rpx;
  1598. overflow: hidden;
  1599. .red {
  1600. color: red !important;
  1601. font-weight: bold !important;
  1602. }
  1603. .green {
  1604. color: #49b856 !important;
  1605. font-weight: bold !important;
  1606. }
  1607. .title {
  1608. font-size: 48rpx;
  1609. margin-top: 24rpx;
  1610. margin-bottom: 24rpx;
  1611. text-align: center;
  1612. }
  1613. .page_item {
  1614. margin-top: 16rpx;
  1615. margin-bottom: 124rpx;
  1616. background: #fff;
  1617. border-radius: 8rpx;
  1618. padding: 0 16rpx;
  1619. border: 2rpx solid #e5e9ed;
  1620. .L {
  1621. width: 40rpx;
  1622. height: 40rpx;
  1623. border-radius: 50%;
  1624. background: #f9fafb;
  1625. position: relative;
  1626. left: -50rpx;
  1627. top: 66rpx;
  1628. }
  1629. .R {
  1630. width: 40rpx;
  1631. height: 40rpx;
  1632. border-radius: 50%;
  1633. background: #f9fafb;
  1634. position: relative;
  1635. float: right;
  1636. right: -50rpx;
  1637. top: 26rpx;
  1638. }
  1639. .starting {
  1640. width: 50rpx;
  1641. height: 50rpx;
  1642. color: #fff;
  1643. background: #49b856;
  1644. display: inline-block;
  1645. border-radius: 50%;
  1646. text-align: center;
  1647. line-height: 46rpx;
  1648. font-size: 32rpx;
  1649. margin-right: 6rpx;
  1650. }
  1651. .End {
  1652. width: 50rpx;
  1653. height: 50rpx;
  1654. color: #fff;
  1655. background: #39b199;
  1656. display: inline-block;
  1657. border-radius: 50%;
  1658. text-align: center;
  1659. line-height: 46rpx;
  1660. font-size: 32rpx;
  1661. margin-right: 6rpx;
  1662. }
  1663. .page_item_top {
  1664. height: 86rpx;
  1665. border-bottom: 2rpx dashed #666;
  1666. padding: 0 16rpx;
  1667. .page_item_top_L {
  1668. height: 100%;
  1669. float: left;
  1670. line-height: 88rpx;
  1671. .emergencys {
  1672. background: #ff3b53 !important;
  1673. width: 124rpx !important;
  1674. }
  1675. .emergency {
  1676. background: #ff3b53 !important;
  1677. }
  1678. .emergency1 {
  1679. background: #49b856 !important;
  1680. }
  1681. .page_item_cont_start {
  1682. text-align: center;
  1683. height: 44rpx;
  1684. width: 104rpx;
  1685. line-height: 44rpx;
  1686. border-radius: 8rpx;
  1687. background: #49b856;
  1688. color: #fff;
  1689. display: inline-block;
  1690. font-size: 28rpx;
  1691. .cubeic-star {
  1692. margin-right: 8rpx;
  1693. }
  1694. }
  1695. .L_time {
  1696. color: #6cc076;
  1697. font-size: 32rpx;
  1698. }
  1699. .L_text {
  1700. font-size: 32rpx;
  1701. display: inline-block;
  1702. font-weight: 700;
  1703. margin-right: 16rpx;
  1704. }
  1705. }
  1706. .page_item_top_R {
  1707. height: 60rpx;
  1708. float: right;
  1709. padding-top: 20rpx;
  1710. font-size: 32rpx;
  1711. position: absolute;
  1712. right: 50rpx;
  1713. .L_iocn {
  1714. display: inline-block;
  1715. height: 52rpx;
  1716. line-height: 48rpx;
  1717. color: rgb(7, 134, 60);
  1718. font-size: 36rpx;
  1719. font-weight: 700;
  1720. }
  1721. }
  1722. }
  1723. .page_item_cont {
  1724. min-height: 180rpx;
  1725. // max-height: 424rpx;
  1726. padding: 0 16rpx;
  1727. text-align: left;
  1728. position: relative;
  1729. .text_big {
  1730. font-size: 32rpx;
  1731. position: absolute;
  1732. right: 16rpx;
  1733. font-weight: 700;
  1734. margin-top: 10rpx;
  1735. }
  1736. .text_big2 {
  1737. font-size: 32rpx;
  1738. position: absolute;
  1739. right: 16rpx;
  1740. font-weight: 700;
  1741. }
  1742. .line {
  1743. height: 20rpx;
  1744. width: 2rpx;
  1745. border-left: 2rpx solid #666;
  1746. position: absolute;
  1747. top: 82rpx;
  1748. left: 40rpx;
  1749. }
  1750. .lines {
  1751. height: 40%;
  1752. width: 2rpx;
  1753. border-left: 2rpx solid #666;
  1754. position: absolute;
  1755. top: 23%;
  1756. left: 36rpx;
  1757. }
  1758. .page_item_cont_T {
  1759. padding-top: 28rpx;
  1760. font-size: 28rpx;
  1761. .page_item_cont_title {
  1762. height: 100%;
  1763. font-size: 32rpx;
  1764. }
  1765. }
  1766. .page_item_cont_B {
  1767. padding-top: 28rpx;
  1768. margin-bottom: 28rpx;
  1769. .page_item_cont_title {
  1770. height: 60rpx;
  1771. font-size: 32rpx;
  1772. }
  1773. .page_item_cont_title1 {
  1774. height: 60rpx;
  1775. line-height: 60rpx;
  1776. font-size: 32rpx;
  1777. padding-left: 64rpx;
  1778. }
  1779. }
  1780. }
  1781. .page_item_foot {
  1782. border-top: 2rpx dashed #666;
  1783. border-bottom: 2rpx dashed #666;
  1784. padding: 28rpx 16rpx;
  1785. text-align: left;
  1786. .page_item_foot_text {
  1787. font-size: 32rpx;
  1788. margin-bottom: 20rpx;
  1789. .text1 {
  1790. color: rgb(102, 102, 102);
  1791. }
  1792. .text2 {
  1793. float: right;
  1794. font-weight: 700;
  1795. }
  1796. }
  1797. }
  1798. .page_item_info {
  1799. padding: 20rpx 16rpx;
  1800. text-align: left;
  1801. line-height: 60rpx;
  1802. font-size: 32rpx;
  1803. .spe_list {
  1804. padding: 32rpx 0;
  1805. border-top: 2rpx solid #666;
  1806. .page_item_info_title {
  1807. color: #666;
  1808. }
  1809. }
  1810. .page_item_info_title {
  1811. font-weight: 700;
  1812. }
  1813. .text {
  1814. float: right;
  1815. font-weight: 700;
  1816. .page_item_info_txt {
  1817. color: #49b856;
  1818. margin-left: 8rpx;
  1819. margin-right: 8rpx;
  1820. }
  1821. }
  1822. }
  1823. #infos {
  1824. height: 0;
  1825. overflow: hidden;
  1826. }
  1827. .page_item_infos {
  1828. padding-top: 20rpx;
  1829. padding-bottom: 20rpx;
  1830. border-bottom: 2rpx dashed #666;
  1831. .page_item_info2 {
  1832. text-align: left;
  1833. line-height: 60rpx;
  1834. font-size: 32rpx;
  1835. padding-left: 16rpx;
  1836. .page_item_foot_text {
  1837. font-size: 32rpx;
  1838. margin-bottom: 20rpx;
  1839. &:last-of-type {
  1840. margin-bottom: 0;
  1841. }
  1842. .text1 {
  1843. color: rgb(102, 102, 102);
  1844. }
  1845. .text2 {
  1846. float: right;
  1847. font-weight: 700;
  1848. }
  1849. .btn {
  1850. height: 66rpx;
  1851. width: 132rpx;
  1852. margin: 0 auto;
  1853. background-color: #49b856;
  1854. color: #fff;
  1855. border-radius: 8rpx;
  1856. font-size: 32rpx;
  1857. margin-top: 20rpx;
  1858. text-align: center;
  1859. }
  1860. }
  1861. }
  1862. }
  1863. #pulldown {
  1864. color: #49b856;
  1865. font-size: 36rpx;
  1866. height: 60rpx;
  1867. text-align: center;
  1868. .cubeic-pulldown {
  1869. font-size: 48rpx;
  1870. position: relative;
  1871. bottom: 6rpx;
  1872. }
  1873. }
  1874. #pullup {
  1875. color: #49b856;
  1876. font-size: 36rpx;
  1877. height: 60rpx;
  1878. text-align: center;
  1879. .cubeic-pullup {
  1880. font-size: 48rpx;
  1881. position: relative;
  1882. top: 12rpx;
  1883. }
  1884. }
  1885. }
  1886. .foot_btn2 {
  1887. position: fixed;
  1888. bottom: 0;
  1889. right: 20rpx;
  1890. left: 20rpx;
  1891. line-height: 66rpx;
  1892. height: 100rpx;
  1893. border-top: 2rpx solid #e5e9ed;
  1894. background: #f9fafb;
  1895. display: flex;
  1896. justify-content: space-between;
  1897. .btn2,
  1898. .btn3 {
  1899. height: 66rpx;
  1900. flex: 1;
  1901. margin: 0 1%;
  1902. background-image: linear-gradient(to right, #72c172, #3bb197);
  1903. color: #fff;
  1904. border-radius: 8rpx;
  1905. font-size: 28rpx;
  1906. margin-top: 8rpx;
  1907. margin-bottom: 8rpx;
  1908. text-align: center;
  1909. }
  1910. }
  1911. }
  1912. </style>