receipt_infopage.vue 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  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.taskType.associationType.value == 'other'">{{ 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. try{
  582. this.patientHandoverCode = JSON.parse(result.code);
  583. }catch(e){
  584. this.patientHandoverCode = '';
  585. }
  586. this.SMFlag = true;
  587. // 200检测通过,201没有有效期也通过。
  588. if (result.state == 200 || result.state == 201) {
  589. uni.hideLoading();
  590. if(Object.prototype.toString.call(this.patientHandoverCode) === '[object Object]' && this.patientHandoverCode.name){
  591. this.models2 = {
  592. disjunctor: true,
  593. title: "提示",
  594. content: `您确认要与<span class="red">${this.patientHandoverCode.name}</span>交接吗?`,
  595. icon: "warn",
  596. operate: {
  597. ok: "确定",
  598. cancel: "取消",
  599. },
  600. };
  601. }else{
  602. uni.showToast({
  603. icon: "none",
  604. title: "请扫描正确的二维码!",
  605. });
  606. }
  607. } else {
  608. uni.hideLoading();
  609. uni.showToast({
  610. icon: "none",
  611. title: result.info || "接口获取数据失败!",
  612. });
  613. }
  614. })
  615. }).catch(err => {
  616. this.SMFlag = true;
  617. });
  618. },
  619. // 手动查询-确认
  620. checkboxOk(bulkCopy) {
  621. console.log(bulkCopy);
  622. this.checkboxModels.disjunctor = false;
  623. let { user, data } = this.other;
  624. this.additionalUserCommon(user, data.id, data.worker.id, bulkCopy);
  625. },
  626. // 手动查询-取消
  627. checkboxCancel() {
  628. this.checkboxModels.disjunctor = false;
  629. },
  630. // 手动查询弹窗
  631. showCheckboxModal(user, data) {
  632. this.other = {
  633. user,
  634. data,
  635. };
  636. this.checkboxModels = {
  637. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  638. disjunctor: true,
  639. }
  640. },
  641. // 判断药品页面控制-是否显示关联批次药品
  642. isShowDrugsBatchInfo(){
  643. post("/simple/data/fetchDataList/taskType", {
  644. "idx": 0,
  645. "sum": 10,
  646. "taskType": {
  647. "simpleQuery": true,
  648. "hosId": {
  649. "id": this.hosId
  650. },
  651. "associationType": {
  652. "key": "association_types",
  653. "value": "drugsBag"
  654. }
  655. }
  656. }).then((res) => {
  657. if (res.status == 200) {
  658. res.list = res.list || [];
  659. let taskType = res.list[0] || {};
  660. if(taskType.id){
  661. post("/simple/data/fetchDataList/taskTypeConfig", {
  662. "idx": 0,
  663. "sum": 10,
  664. "taskTypeConfig": {
  665. "taskTypeDTO": {
  666. "hosId": {
  667. "id": this.hosId
  668. },
  669. "associationType": taskType.associationType
  670. }
  671. }
  672. }).then((res) => {
  673. if (res.status == 200) {
  674. res.list = res.list || [];
  675. this.taskTypeConfig = res.list[0] || {};
  676. } else {
  677. uni.showToast({
  678. icon: "none",
  679. title: res.msg || "接口获取数据失败!",
  680. });
  681. }
  682. });
  683. }else{
  684. uni.showToast({
  685. icon: "none",
  686. title: "请配置药品任务类型!",
  687. });
  688. }
  689. } else {
  690. uni.showToast({
  691. icon: "none",
  692. title: res.msg || "接口获取数据失败!",
  693. });
  694. }
  695. });
  696. },
  697. // 跳转到药品批次页面
  698. toDrugBatches(batchNo){
  699. uni.navigateTo({
  700. url: `../drugBatches/drugBatches?batchNo=${batchNo}`,
  701. });
  702. },
  703. // 前往其他临床服务完成工单确认页面
  704. otherCompleteOrder(data){
  705. console.log(data);
  706. uni.navigateTo({
  707. url: `../otherCompleteOrder/otherCompleteOrder?orderId=${data.id}&taskType=${data.taskType ? encodeURIComponent(JSON.stringify(data.taskType)) : ''}&order=${data ? encodeURIComponent(JSON.stringify(data)) : ''}`,
  708. });
  709. },
  710. // 如果不是静配,药配,标本配送,标本轮巡
  711. // 科室签到(小扫描)-拍照
  712. nextDeptOrder_ss(data, accountObj) {
  713. console.log(this.currentCode);
  714. let isKs = 0;
  715. let ids = [];
  716. let id = data.id;
  717. ids.push(id);
  718. let list = {
  719. code: "",
  720. ids: ids,
  721. };
  722. let code = "";
  723. let type = "";
  724. if (this.currentCode) {
  725. let gdStateValue = data.gdState.value; //工单状态value
  726. let associationTypeValue = data.taskType.associationType.value; //关联类型value
  727. // 其他临床服务,并且工单状态是待到达||工单状态待送达
  728. if (
  729. (associationTypeValue == "other" &&
  730. gdStateValue == "4") ||
  731. gdStateValue == "5"
  732. ) {
  733. code = this.currentCode;
  734. type = "orderSign/" + code;
  735. list = {
  736. ids
  737. };
  738. if (accountObj) {
  739. list.handover = [accountObj.accountId];
  740. }
  741. isKs = 1;
  742. }
  743. uni.showLoading({
  744. title: "加载中",
  745. mask: true,
  746. });
  747. post("/workerOrder/" + type, list).then((res) => {
  748. uni.hideLoading();
  749. if (res) {
  750. if (res.status == 200) {
  751. if (
  752. gdStateValue == "4" &&
  753. associationTypeValue == "other"
  754. ) {
  755. uni.navigateTo({
  756. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  757. });
  758. }
  759. if (gdStateValue == "5") {
  760. uni.navigateTo({
  761. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  762. });
  763. }
  764. } else {
  765. uni.navigateTo({
  766. url: `../../pages/scanning_Result/scanning_Result?type=${
  767. associationTypeValue
  768. }&type1=${res.type}&id=${data.id}&status=600&msg=${
  769. res.msg
  770. }&isKs=${isKs}&model=${encodeURIComponent(
  771. JSON.stringify(res)
  772. )}&qrcode=${this.currentCode}`,
  773. });
  774. }
  775. } else {
  776. uni.navigateTo({
  777. url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
  778. });
  779. }
  780. });
  781. }
  782. },
  783. // 填写交接人工号-确认
  784. hosOk(data) {
  785. console.log(data);
  786. const {
  787. accountName,
  788. account,
  789. accountId
  790. } = data;
  791. if (!accountName && !account) {
  792. //没有填写交接人
  793. uni.showModal({
  794. title: '提示',
  795. content: "请填写交接人工号!",
  796. showCancel: false,
  797. success: function(res) {
  798. if (res.confirm) {
  799. console.log('用户点击确定');
  800. } else if (res.cancel) {
  801. console.log('用户点击取消');
  802. }
  803. }
  804. });
  805. return;
  806. } else if (!accountName && account || accountName && !account) {
  807. //没有填写交接人
  808. uni.showModal({
  809. title: '提示',
  810. content: "请填写正确的交接人工号!",
  811. showCancel: false,
  812. success: function(res) {
  813. if (res.confirm) {
  814. console.log('用户点击确定');
  815. } else if (res.cancel) {
  816. console.log('用户点击取消');
  817. }
  818. }
  819. });
  820. return;
  821. }
  822. this.hosModels.disjunctor = false;
  823. let associationTypeValue = this.currentData.taskType.associationType.value;
  824. console.log(associationTypeValue)
  825. this.uploadToOther(this.currentData, data, 'start');
  826. },
  827. // 填写交接人工号-取消
  828. hosCancel() {
  829. this.hosModels.disjunctor = false;
  830. },
  831. // 填写交接人工号弹窗
  832. showSelectAccount() {
  833. this.hosModels = {
  834. disjunctor: true,
  835. }
  836. },
  837. // 拍照-上传
  838. uploadToOther(data, accountObj, type){
  839. // 其他临床服务拍照签到
  840. console.log(data, 1111);
  841. let id_seimin;
  842. let asTypeValue_seimin;
  843. let gdStateValue_seimin;
  844. if (data.status != 200 && data.status !== undefined) {
  845. id_seimin = data.id;
  846. asTypeValue_seimin = data.type;
  847. gdStateValue_seimin = JSON.parse(data.model).gdstate2; //type改成gdstate
  848. } else {
  849. id_seimin = data.id;
  850. asTypeValue_seimin = data.taskType.associationType.value;
  851. gdStateValue_seimin = data.gdState.value;
  852. }
  853. //#ifdef H5
  854. uni.chooseImage({
  855. count: 1,
  856. sourceType: ['camera'],
  857. success: (chooseImageRes) => {
  858. console.log(chooseImageRes, pathUrl)
  859. const tempFilePaths = chooseImageRes.tempFilePaths;
  860. const tempFiles = chooseImageRes.tempFiles;
  861. let tp = tempFilePaths[0];
  862. uni.showLoading({
  863. mask: true,
  864. title: '加载中'
  865. });
  866. post('/workerOrder/findRecordInfoByOrderId', {
  867. orderId: id_seimin,
  868. gdOperate: 21,
  869. }).then(result => {
  870. console.log(result)
  871. if (result.state == 200) {
  872. uni.getImageInfo({
  873. src: tp,
  874. success: (res) => {
  875. console.log('压缩前', res)
  876. let canvasWidth = res.width //图片原始长宽
  877. let canvasHeight = res.height
  878. let img = new Image()
  879. img.src = res.path
  880. let canvas = document.createElement('canvas');
  881. let ctx = canvas.getContext('2d')
  882. canvas.width = canvasWidth
  883. canvas.height = canvasHeight
  884. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  885. canvas.toBlob((fileSrc) => {
  886. tp = window.URL.createObjectURL(fileSrc)
  887. console.log('压缩后', tp);
  888. uni.uploadFile({
  889. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  890. filePath: tp,
  891. name: 'file',
  892. formData: {
  893. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  894. 0].path.split(
  895. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  896. },
  897. success: (uploadFileRes) => {
  898. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  899. this.nextDeptOrder_ss(data, accountObj, type);
  900. },
  901. fail: err => {
  902. console.error(err);
  903. uni.hideLoading();
  904. uni.showToast({
  905. icon: 'none',
  906. title: '上传失败',
  907. duration: 2000
  908. });
  909. }
  910. });
  911. }, 'image/jpeg', 0.3)
  912. },
  913. fail: function () {
  914. uni.hideLoading();
  915. uni.showToast({
  916. icon: 'none',
  917. title: '上传失败',
  918. duration: 2000
  919. });
  920. }
  921. })
  922. } else {
  923. uni.hideLoading();
  924. uni.showToast({
  925. icon: "none",
  926. title: result.msg || "接口获取数据失败!",
  927. });
  928. }
  929. })
  930. }
  931. });
  932. //#endif
  933. //#ifdef APP-PLUS
  934. uni.chooseImage({
  935. count: 1,
  936. sourceType: ['camera'],
  937. sizeType: ['compressed'],
  938. success: (chooseImageRes) => {
  939. console.log(chooseImageRes, pathUrl)
  940. const tempFilePaths = chooseImageRes.tempFilePaths;
  941. const tempFiles = chooseImageRes.tempFiles;
  942. let tp = tempFilePaths[0];
  943. uni.showLoading({
  944. mask: true,
  945. title: '加载中'
  946. });
  947. post('/workerOrder/findRecordInfoByOrderId', {
  948. orderId: id_seimin,
  949. gdOperate: 21,
  950. }).then(result => {
  951. console.log(result)
  952. if (result.state == 200) {
  953. uni.compressImage({
  954. src: tp,
  955. quality: 30,
  956. success: (res) => {
  957. console.log('压缩前', res)
  958. tp = res.tempFilePath;
  959. console.log('压缩后', tp);
  960. uni.uploadFile({
  961. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  962. filePath: tp,
  963. name: 'file',
  964. formData: {
  965. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  966. 0].path.split(
  967. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  968. },
  969. success: (uploadFileRes) => {
  970. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  971. this.nextDeptOrder_ss(data, accountObj, type);
  972. },
  973. fail: err => {
  974. console.error(err);
  975. uni.hideLoading();
  976. uni.showToast({
  977. icon: 'none',
  978. title: '上传失败',
  979. duration: 2000
  980. });
  981. }
  982. });
  983. },
  984. fail: function () {
  985. uni.hideLoading();
  986. uni.showToast({
  987. icon: 'none',
  988. title: '上传失败',
  989. duration: 2000
  990. });
  991. }
  992. })
  993. } else {
  994. uni.hideLoading();
  995. uni.showToast({
  996. icon: "none",
  997. title: result.msg || "接口获取数据失败!",
  998. });
  999. }
  1000. })
  1001. }
  1002. });
  1003. //#endif
  1004. },
  1005. // 拍照-其他
  1006. async photographToOther(data, type) {
  1007. this.currentData = data;
  1008. uni.showLoading({
  1009. title: "加载中",
  1010. mask: true,
  1011. });
  1012. // 其他临床服务
  1013. let result = await post("/dept/scanning", {
  1014. content: type === 'start' ? data.startDept.qrcode : data.endDepts[0].qrcode,
  1015. taskTypeId: data.taskType.id,
  1016. gdState: data.gdState.id,
  1017. });
  1018. uni.hideLoading();
  1019. this.currentCode = result.code;
  1020. if (result.state == 200 || result.state == 201) {
  1021. uni.showModal({
  1022. title: '提示',
  1023. content: '请尽量拍摄角度覆盖清洁区域?',
  1024. success: (res) => {
  1025. if (res.confirm) {
  1026. if (result.account) {
  1027. this.uploadToOther(data, {
  1028. account: result.account,
  1029. accountName: result.name,
  1030. accountId: result.id,
  1031. }, type);
  1032. } else {
  1033. this.uploadToOther(data, undefined, type);
  1034. }
  1035. } else if (res.cancel) {
  1036. console.log('用户点击取消');
  1037. }
  1038. }
  1039. });
  1040. } else if (result.state == '0000') {
  1041. this.showSelectAccount();
  1042. } else {
  1043. uni.showToast({
  1044. icon: "none",
  1045. title: result.info || "接口获取数据失败!",
  1046. });
  1047. }
  1048. },
  1049. goBack() {
  1050. uni.navigateTo({
  1051. url: "../receiptpage/receiptpage",
  1052. });
  1053. },
  1054. // 查看标本
  1055. viewSpecimen(workOrder) {
  1056. uni.navigateTo({
  1057. url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  1058. });
  1059. },
  1060. // 查看药品业务数据
  1061. viewDrugsBag(workOrder) {
  1062. uni.navigateTo({
  1063. url: `../drugsBagHistory/drugsBagHistory?id=${workOrder.drugs.id}&packid=${workOrder.drugs.packid}`,
  1064. });
  1065. },
  1066. // 查看血制品
  1067. viewBlood(workOrder) {
  1068. uni.showLoading({
  1069. title: "加载中",
  1070. mask: true,
  1071. });
  1072. post('/transflow/checkData', {
  1073. "type": "blood",
  1074. "orderId": workOrder.id
  1075. }).then(res => {
  1076. uni.hideLoading();
  1077. if(res.state == 200){
  1078. uni.navigateTo({
  1079. url: `../blood_list/blood_list?bloods=${encodeURIComponent(JSON.stringify(res.data.all))}`,
  1080. });
  1081. }else{
  1082. uni.showToast({
  1083. icon: "none",
  1084. title: res.msg || "接口获取数据失败!",
  1085. });
  1086. }
  1087. })
  1088. },
  1089. // 移除检查->知道了
  1090. know1() {
  1091. this.models1.disjunctor = false;
  1092. // this.getInfo(this.dataId);
  1093. uni.navigateTo({
  1094. url: '../receiptpage/receiptpage',
  1095. });
  1096. },
  1097. // 移除检查->确定
  1098. ok1(data) {
  1099. console.log(data);
  1100. const {
  1101. value,
  1102. yyTime
  1103. } = data;
  1104. if (!value) {
  1105. //没有选择移除原因
  1106. uni.showModal({
  1107. title: "提示",
  1108. content: "请选择移除原因!",
  1109. showCancel: false,
  1110. success: function(res) {
  1111. if (res.confirm) {
  1112. console.log("用户点击确定");
  1113. } else if (res.cancel) {
  1114. console.log("用户点击取消");
  1115. }
  1116. },
  1117. });
  1118. return;
  1119. } else if (value == 2 && !yyTime) {
  1120. //没有填写预约时间
  1121. uni.showModal({
  1122. title: "提示",
  1123. content: "请填写预约时间!",
  1124. showCancel: false,
  1125. success: function(res) {
  1126. if (res.confirm) {
  1127. console.log("用户点击确定");
  1128. } else if (res.cancel) {
  1129. console.log("用户点击取消");
  1130. }
  1131. },
  1132. });
  1133. return;
  1134. }
  1135. this.models1.disjunctor = false;
  1136. let postData = {
  1137. gdId: this.infoDATA.id,
  1138. inspectId: this.currentInspect.id,
  1139. reason: value == 1 ? 'checkDone' : 'modificationTime',
  1140. yyTime: value == 1 ? undefined : yyTime,
  1141. };
  1142. uni.showLoading({
  1143. title: '移除中',
  1144. mask: true,
  1145. })
  1146. post('/workerOrder/removeInspectByOderId', postData).then(res => {
  1147. uni.hideLoading();
  1148. if (res.state == 200) {
  1149. uni.showToast({
  1150. icon: 'none',
  1151. title: '移除成功!',
  1152. success() {
  1153. setTimeout(() => {
  1154. uni.navigateTo({
  1155. url: '../receiptpage/receiptpage',
  1156. });
  1157. }, 1500)
  1158. }
  1159. })
  1160. } else {
  1161. uni.showToast({
  1162. icon: 'none',
  1163. title: '移除失败!',
  1164. })
  1165. }
  1166. })
  1167. },
  1168. // 移除检查->取消
  1169. cancel1() {
  1170. this.models1.disjunctor = false;
  1171. },
  1172. // 移除
  1173. remove(item) {
  1174. this.currentInspect = item;
  1175. this.models1 = {
  1176. disjunctor: true,
  1177. content: "请选择您移除检查的原因?检查移除后将会自动完成或删除工单!",
  1178. icon: "warn",
  1179. operate: {
  1180. ok: "确定",
  1181. cancel: "取消",
  1182. },
  1183. };
  1184. },
  1185. // 拍照
  1186. photograph(data) {
  1187. photographTool(data);
  1188. },
  1189. // 特殊情况输入文字
  1190. textareaInput(value) {
  1191. this.textareaText = value;
  1192. if (value.trim().length >= 10) {
  1193. this.models.operate = {
  1194. ok: "确定",
  1195. cancel: "取消",
  1196. };
  1197. } else {
  1198. this.models.operate = {
  1199. cancel: "取消",
  1200. };
  1201. }
  1202. },
  1203. // 追加陪检人/执行人按钮
  1204. additionalUser(data) {
  1205. if (!this.SMFlag) {
  1206. return;
  1207. }
  1208. this.SMFlag = false;
  1209. console.log(data, 'data');
  1210. SM().then((ress1) => {
  1211. uni.showLoading({
  1212. title: "加载中",
  1213. mask: true,
  1214. });
  1215. //检验二维码的有效性
  1216. post("/dept/scanning", {
  1217. content: ress1,
  1218. taskTypeId: data.taskType.id,
  1219. gdState: data.gdState.id,
  1220. }).then((result) => {
  1221. this.SMFlag = true;
  1222. // this.currentCode = result.code;
  1223. if (result.state == 200 || result.state == 201) {
  1224. console.log(result);
  1225. let user;
  1226. try{
  1227. // json对象字符串
  1228. user = JSON.parse(result.code);
  1229. // 不是json对象字符串
  1230. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() !== 'object'){
  1231. user = result.code;
  1232. }
  1233. }catch(e){
  1234. user = result.code;
  1235. }
  1236. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'object' && user.type == 'myQrCode' && user.id && user.name){
  1237. user.qrcode = ress1;
  1238. uni.hideLoading();
  1239. if(data.taskType.associationType.value == 'other'){
  1240. this.showCheckboxModal(user, data);
  1241. }else{
  1242. uni.showModal({
  1243. title: "提示",
  1244. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1245. success: (res) => {
  1246. if (res.confirm) {
  1247. console.log("用户点击确定");
  1248. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1249. } else if (res.cancel) {
  1250. console.log("用户点击取消");
  1251. }
  1252. },
  1253. });
  1254. }
  1255. }else if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'string'){
  1256. let identityCardNumber = user;
  1257. // 根据身份证获取name
  1258. // todo
  1259. post("/data/fetchDataList/user", {idx: 0, sum: 1, user: { identityCardNumber }}).then((result) => {
  1260. uni.hideLoading();
  1261. if(result.status == 200){
  1262. result.list = result.list || [];
  1263. if(result.list.length){
  1264. let user = {name: result.list[0].name, identityCardNumber, qrcode: ress1};
  1265. if(data.taskType.associationType.value == 'other'){
  1266. this.showCheckboxModal(user, data);
  1267. }else{
  1268. uni.showModal({
  1269. title: "提示",
  1270. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1271. success: (res) => {
  1272. if (res.confirm) {
  1273. console.log("用户点击确定");
  1274. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1275. } else if (res.cancel) {
  1276. console.log("用户点击取消");
  1277. }
  1278. },
  1279. });
  1280. }
  1281. }else{
  1282. uni.navigateTo({
  1283. url: `../result_error/result_error?qrcode=${ress1}&msg=扫描二维码无法找到用户!`,
  1284. });
  1285. }
  1286. }else{
  1287. uni.navigateTo({
  1288. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1289. });
  1290. }
  1291. })
  1292. }else{
  1293. uni.hideLoading();
  1294. uni.navigateTo({
  1295. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1296. });
  1297. }
  1298. } else {
  1299. uni.hideLoading();
  1300. uni.navigateTo({
  1301. url: `../result_error/result_error?qrcode=${ress1}&msg=${result.info || '接口获取数据失败!'}`,
  1302. });
  1303. }
  1304. });
  1305. }).catch(err=>{
  1306. this.SMFlag = true;
  1307. });
  1308. },
  1309. // 追加陪检人/执行人
  1310. additionalUserCommon(user, gdId, workerId, bulkCopy) {
  1311. console.log(user, gdId, workerId, bulkCopy);
  1312. uni.showLoading({
  1313. title: "加载中",
  1314. mask: true,
  1315. });
  1316. // 二维码里有id则传userid,没有则传identityCardNumber
  1317. post("/workerOrder/additionalAccompanyingPersonnel", {
  1318. userId: user.id || undefined,
  1319. identityCardNumber: !user.id ? user.identityCardNumber : undefined,
  1320. gdId,
  1321. workerId,
  1322. bulkCopy: bulkCopy ? 1 : undefined,
  1323. }).then((result) => {
  1324. uni.hideLoading();
  1325. if (result.state == 200) {
  1326. this.getInfo(gdId);
  1327. uni.showToast({
  1328. icon: 'none',
  1329. duration: 4000,
  1330. title: '操作成功!'
  1331. })
  1332. } else {
  1333. uni.navigateTo({
  1334. url: `../result_error/result_error?qrcode=${user.qrcode}&msg=${result.msg || '接口获取数据失败!'}`,
  1335. });
  1336. }
  1337. });
  1338. },
  1339. // 特殊情况关闭按钮
  1340. specialCloseClick() {
  1341. this.textareaFlag = true;
  1342. this.models = {
  1343. title: "特殊情况关闭",
  1344. disjunctor: true,
  1345. content: "",
  1346. icon: "",
  1347. operate: {
  1348. cancel: "取消",
  1349. },
  1350. };
  1351. },
  1352. ok() {
  1353. uni.showLoading({
  1354. title: "加载中",
  1355. mask: true,
  1356. });
  1357. post("/workerOrder/specialCaseClose", {
  1358. workOrderId: this.dataId,
  1359. reason: this.textareaText.trim(),
  1360. }).then((result) => {
  1361. this.models.disjunctor = false;
  1362. this.textareaFlag = false;
  1363. this.textareaText = "";
  1364. if (result.state == 200) {
  1365. uni.hideLoading();
  1366. this.models = {
  1367. disjunctor: true,
  1368. content: "工单关闭成功",
  1369. icon: "success",
  1370. operate: {
  1371. know: "知道了",
  1372. },
  1373. };
  1374. } else {
  1375. uni.hideLoading();
  1376. this.models = {
  1377. disjunctor: true,
  1378. content: "工单关闭失败",
  1379. icon: "error",
  1380. operate: {
  1381. know: "知道了",
  1382. },
  1383. };
  1384. }
  1385. });
  1386. },
  1387. cancel() {
  1388. this.models.disjunctor = false;
  1389. this.textareaFlag = false;
  1390. this.textareaText = "";
  1391. },
  1392. // 点击可查看检查详情
  1393. show(type) {
  1394. this.showType = type;
  1395. if (type === "show") {
  1396. //展开
  1397. // 计算高度
  1398. const query = uni.createSelectorQuery().in(this);
  1399. query
  1400. .selectAll(".page_item_infos")
  1401. .boundingClientRect((data) => {
  1402. let len = data.reduce((prev, current) => {
  1403. return prev + current.height;
  1404. }, 0);
  1405. this.animation.height(len).step();
  1406. this.animationData = this.animation.export();
  1407. })
  1408. .exec();
  1409. } else if (type === "hiddle") {
  1410. this.animation.height(0).step();
  1411. this.animationData = this.animation.export();
  1412. }
  1413. },
  1414. // 抢单->知道了
  1415. know() {
  1416. this.models.disjunctor = false;
  1417. uni.navigateTo({
  1418. url: "../receiptpage/receiptpage",
  1419. });
  1420. },
  1421. // 抢单
  1422. showAlert() {
  1423. get("/workerOrder/takeOrder/" + this.infoDATA.id).then((res) => {
  1424. if (res.status == 200) {
  1425. this.models = {
  1426. disjunctor: true,
  1427. content: "接单成功",
  1428. icon: "success",
  1429. operate: {
  1430. know: "知道了",
  1431. },
  1432. };
  1433. } else {
  1434. uni.showToast({
  1435. icon: "none",
  1436. title: res.msg || "接口获取数据失败!",
  1437. });
  1438. }
  1439. });
  1440. },
  1441. // 请求详细页面的数据(除标本轮巡和标本配送)
  1442. getInfo(id) {
  1443. uni.showLoading({
  1444. title: "加载中",
  1445. mask: true,
  1446. });
  1447. get("/api/fetchData/workOrder/" + id).then((res) => {
  1448. uni.hideLoading();
  1449. if (res.status == 200) {
  1450. this.infoDATA = res.data;
  1451. // 计算高度
  1452. setTimeout(() => {
  1453. const query = uni.createSelectorQuery().in(this);
  1454. query
  1455. .selectAll(".page_item_infos")
  1456. .boundingClientRect((data) => {
  1457. let len = data.reduce((prev, current) => {
  1458. return prev + current.height;
  1459. }, 0);
  1460. this.animation.height(len).step();
  1461. this.animationData = this.animation.export();
  1462. })
  1463. .exec();
  1464. }, 500)
  1465. } else {
  1466. uni.showToast({
  1467. icon: "none",
  1468. title: res.msg || "接口获取数据失败!",
  1469. });
  1470. }
  1471. });
  1472. },
  1473. // 请求详细页面的数据
  1474. getInfoBySpecimen(id) {
  1475. uni.showLoading({
  1476. title: "加载中",
  1477. mask: true,
  1478. });
  1479. post("/api/getWechatItem", {
  1480. id
  1481. }).then((res) => {
  1482. uni.hideLoading();
  1483. if (res.state == 200) {
  1484. this.actualDelivery = res.actualDelivery;
  1485. this.infoDATA = res.data;
  1486. // 计算高度
  1487. setTimeout(() => {
  1488. const query = uni.createSelectorQuery().in(this);
  1489. query
  1490. .selectAll(".page_item_infos")
  1491. .boundingClientRect((data) => {
  1492. let len = data.reduce((prev, current) => {
  1493. return prev + current.height;
  1494. }, 0);
  1495. this.animation.height(len).step();
  1496. this.animationData = this.animation.export();
  1497. })
  1498. .exec();
  1499. }, 500)
  1500. } else {
  1501. uni.showToast({
  1502. icon: "none",
  1503. title: res.msg || "接口获取数据失败!",
  1504. });
  1505. }
  1506. });
  1507. },
  1508. // 获取检查页面控制开关
  1509. getTaskConfig(){
  1510. post("/simple/data/fetchDataList/taskTypeConfig", {
  1511. "idx": 0,
  1512. "sum": 10,
  1513. "taskTypeConfig": {
  1514. "taskTypeDTO": {
  1515. "hosId": {
  1516. "id": this.hosId
  1517. },
  1518. "associationType": {
  1519. "key": "association_types",
  1520. "value": "inspect"
  1521. }
  1522. }
  1523. }
  1524. }).then((result) => {
  1525. if (result.status == 200) {
  1526. if(result.list && result.list[0]){
  1527. this.multiplayerMode = result.list[0].multiplayerMode;
  1528. this.handoverOrder = result.list[0].handoverOrder;
  1529. }else{
  1530. this.multiplayerMode = 0;
  1531. this.handoverOrder = 0;
  1532. }
  1533. } else {
  1534. this.multiplayerMode = 0;
  1535. this.handoverOrder = 0;
  1536. }
  1537. });
  1538. },
  1539. // 获取临床服务页面控制开关
  1540. getTaskOtherConfig(options){
  1541. post("/simple/data/fetchDataList/taskTypeConfig", {
  1542. "idx": 0,
  1543. "sum": 10,
  1544. "taskTypeConfig": {
  1545. "hosId": this.hosId,
  1546. "associationType": options.associationTypeId,
  1547. }
  1548. }).then((result) => {
  1549. if (result.status == 200) {
  1550. if(result.list && result.list[0]){
  1551. this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
  1552. let clinicalTaskIds = result.list[0].clinicalTaskIds ? result.list[0].clinicalTaskIds.split(',') : [] ;
  1553. this.clinicalTaskIdsFlag = clinicalTaskIds.includes(options.taskTypeId);
  1554. console.log(clinicalTaskIds, options.taskTypeId)
  1555. }else{
  1556. this.clinicalMultiplayerMode = 0;
  1557. this.clinicalTaskIdsFlag = false;
  1558. }
  1559. } else {
  1560. this.clinicalMultiplayerMode = 0;
  1561. this.clinicalTaskIdsFlag = false;
  1562. }
  1563. });
  1564. },
  1565. },
  1566. onLoad(options) {
  1567. console.log(options, 'options');
  1568. options.associationTypeValue === 'drugsBag' && this.isShowDrugsBatchInfo();
  1569. this.currentUserId = uni.getStorageSync('userData').user.id;
  1570. let id = options.id;
  1571. this.dataId = id;
  1572. if (
  1573. options.associationTypeValue == 'specimen' ||
  1574. options.associationTypeValue == 'specimenPlan'
  1575. ) {
  1576. this.getInfoBySpecimen(id);
  1577. } else {
  1578. this.getInfo(id);
  1579. }
  1580. if (
  1581. options.associationTypeValue == 'inspect' ||
  1582. options.associationTypeValue == 'patientTransport'
  1583. ) {
  1584. this.getTaskConfig();
  1585. }else if(options.associationTypeValue == 'other'){
  1586. this.getTaskOtherConfig(options);
  1587. }
  1588. // 创建动画
  1589. this.animation = uni.createAnimation({
  1590. duration: 500,
  1591. timingFunction: "ease",
  1592. });
  1593. // #ifdef APP-PLUS
  1594. webHandle("no", "app");
  1595. // #endif
  1596. // #ifdef H5
  1597. webHandle("no", "wx");
  1598. // #endif
  1599. },
  1600. onUnload() {
  1601. // 页面关闭后清空数据
  1602. this.animationData = {};
  1603. },
  1604. };
  1605. </script>
  1606. <style lang="less">
  1607. .Receipt_infopage {
  1608. padding: 0 20rpx;
  1609. overflow: hidden;
  1610. .red {
  1611. color: red !important;
  1612. font-weight: bold !important;
  1613. }
  1614. .green {
  1615. color: #49b856 !important;
  1616. font-weight: bold !important;
  1617. }
  1618. .title {
  1619. font-size: 48rpx;
  1620. margin-top: 24rpx;
  1621. margin-bottom: 24rpx;
  1622. text-align: center;
  1623. }
  1624. .page_item {
  1625. margin-top: 16rpx;
  1626. margin-bottom: 124rpx;
  1627. background: #fff;
  1628. border-radius: 8rpx;
  1629. padding: 0 16rpx;
  1630. border: 2rpx solid #e5e9ed;
  1631. .L {
  1632. width: 40rpx;
  1633. height: 40rpx;
  1634. border-radius: 50%;
  1635. background: #f9fafb;
  1636. position: relative;
  1637. left: -50rpx;
  1638. top: 66rpx;
  1639. }
  1640. .R {
  1641. width: 40rpx;
  1642. height: 40rpx;
  1643. border-radius: 50%;
  1644. background: #f9fafb;
  1645. position: relative;
  1646. float: right;
  1647. right: -50rpx;
  1648. top: 26rpx;
  1649. }
  1650. .starting {
  1651. width: 50rpx;
  1652. height: 50rpx;
  1653. color: #fff;
  1654. background: #49b856;
  1655. display: inline-block;
  1656. border-radius: 50%;
  1657. text-align: center;
  1658. line-height: 46rpx;
  1659. font-size: 32rpx;
  1660. margin-right: 6rpx;
  1661. }
  1662. .End {
  1663. width: 50rpx;
  1664. height: 50rpx;
  1665. color: #fff;
  1666. background: #39b199;
  1667. display: inline-block;
  1668. border-radius: 50%;
  1669. text-align: center;
  1670. line-height: 46rpx;
  1671. font-size: 32rpx;
  1672. margin-right: 6rpx;
  1673. }
  1674. .page_item_top {
  1675. height: 86rpx;
  1676. border-bottom: 2rpx dashed #666;
  1677. padding: 0 16rpx;
  1678. .page_item_top_L {
  1679. height: 100%;
  1680. float: left;
  1681. line-height: 88rpx;
  1682. .emergencys {
  1683. background: #ff3b53 !important;
  1684. width: 124rpx !important;
  1685. }
  1686. .emergency {
  1687. background: #ff3b53 !important;
  1688. }
  1689. .emergency1 {
  1690. background: #49b856 !important;
  1691. }
  1692. .page_item_cont_start {
  1693. text-align: center;
  1694. height: 44rpx;
  1695. width: 104rpx;
  1696. line-height: 44rpx;
  1697. border-radius: 8rpx;
  1698. background: #49b856;
  1699. color: #fff;
  1700. display: inline-block;
  1701. font-size: 28rpx;
  1702. .cubeic-star {
  1703. margin-right: 8rpx;
  1704. }
  1705. }
  1706. .L_time {
  1707. color: #6cc076;
  1708. font-size: 32rpx;
  1709. }
  1710. .L_text {
  1711. font-size: 32rpx;
  1712. display: inline-block;
  1713. font-weight: 700;
  1714. margin-right: 16rpx;
  1715. }
  1716. }
  1717. .page_item_top_R {
  1718. height: 60rpx;
  1719. float: right;
  1720. padding-top: 20rpx;
  1721. font-size: 32rpx;
  1722. position: absolute;
  1723. right: 50rpx;
  1724. .L_iocn {
  1725. display: inline-block;
  1726. height: 52rpx;
  1727. line-height: 48rpx;
  1728. color: rgb(7, 134, 60);
  1729. font-size: 36rpx;
  1730. font-weight: 700;
  1731. }
  1732. }
  1733. }
  1734. .page_item_cont {
  1735. min-height: 180rpx;
  1736. // max-height: 424rpx;
  1737. padding: 0 16rpx;
  1738. text-align: left;
  1739. position: relative;
  1740. .text_big {
  1741. font-size: 32rpx;
  1742. position: absolute;
  1743. right: 16rpx;
  1744. font-weight: 700;
  1745. margin-top: 10rpx;
  1746. }
  1747. .text_big2 {
  1748. font-size: 32rpx;
  1749. position: absolute;
  1750. right: 16rpx;
  1751. font-weight: 700;
  1752. }
  1753. .line {
  1754. height: 20rpx;
  1755. width: 2rpx;
  1756. border-left: 2rpx solid #666;
  1757. position: absolute;
  1758. top: 82rpx;
  1759. left: 40rpx;
  1760. }
  1761. .lines {
  1762. height: 40%;
  1763. width: 2rpx;
  1764. border-left: 2rpx solid #666;
  1765. position: absolute;
  1766. top: 23%;
  1767. left: 36rpx;
  1768. }
  1769. .page_item_cont_T {
  1770. padding-top: 28rpx;
  1771. font-size: 28rpx;
  1772. .page_item_cont_title {
  1773. height: 100%;
  1774. font-size: 32rpx;
  1775. }
  1776. }
  1777. .page_item_cont_B {
  1778. padding-top: 28rpx;
  1779. margin-bottom: 28rpx;
  1780. .page_item_cont_title {
  1781. height: 60rpx;
  1782. font-size: 32rpx;
  1783. }
  1784. .page_item_cont_title1 {
  1785. height: 60rpx;
  1786. line-height: 60rpx;
  1787. font-size: 32rpx;
  1788. padding-left: 64rpx;
  1789. }
  1790. }
  1791. }
  1792. .page_item_foot {
  1793. border-top: 2rpx dashed #666;
  1794. border-bottom: 2rpx dashed #666;
  1795. padding: 28rpx 16rpx;
  1796. text-align: left;
  1797. .page_item_foot_text {
  1798. font-size: 32rpx;
  1799. margin-bottom: 20rpx;
  1800. .text1 {
  1801. color: rgb(102, 102, 102);
  1802. }
  1803. .text2 {
  1804. float: right;
  1805. font-weight: 700;
  1806. }
  1807. }
  1808. }
  1809. .page_item_info {
  1810. padding: 20rpx 16rpx;
  1811. text-align: left;
  1812. line-height: 60rpx;
  1813. font-size: 32rpx;
  1814. .spe_list {
  1815. padding: 32rpx 0;
  1816. border-top: 2rpx solid #666;
  1817. .page_item_info_title {
  1818. color: #666;
  1819. }
  1820. }
  1821. .page_item_info_title {
  1822. font-weight: 700;
  1823. }
  1824. .text {
  1825. float: right;
  1826. font-weight: 700;
  1827. .page_item_info_txt {
  1828. color: #49b856;
  1829. margin-left: 8rpx;
  1830. margin-right: 8rpx;
  1831. }
  1832. }
  1833. }
  1834. #infos {
  1835. height: 0;
  1836. overflow: hidden;
  1837. }
  1838. .page_item_infos {
  1839. padding-top: 20rpx;
  1840. padding-bottom: 20rpx;
  1841. border-bottom: 2rpx dashed #666;
  1842. .page_item_info2 {
  1843. text-align: left;
  1844. line-height: 60rpx;
  1845. font-size: 32rpx;
  1846. padding-left: 16rpx;
  1847. .page_item_foot_text {
  1848. font-size: 32rpx;
  1849. margin-bottom: 20rpx;
  1850. &:last-of-type {
  1851. margin-bottom: 0;
  1852. }
  1853. .text1 {
  1854. color: rgb(102, 102, 102);
  1855. }
  1856. .text2 {
  1857. float: right;
  1858. font-weight: 700;
  1859. }
  1860. .btn {
  1861. height: 66rpx;
  1862. width: 132rpx;
  1863. margin: 0 auto;
  1864. background-color: #49b856;
  1865. color: #fff;
  1866. border-radius: 8rpx;
  1867. font-size: 32rpx;
  1868. margin-top: 20rpx;
  1869. text-align: center;
  1870. }
  1871. }
  1872. }
  1873. }
  1874. #pulldown {
  1875. color: #49b856;
  1876. font-size: 36rpx;
  1877. height: 60rpx;
  1878. text-align: center;
  1879. .cubeic-pulldown {
  1880. font-size: 48rpx;
  1881. position: relative;
  1882. bottom: 6rpx;
  1883. }
  1884. }
  1885. #pullup {
  1886. color: #49b856;
  1887. font-size: 36rpx;
  1888. height: 60rpx;
  1889. text-align: center;
  1890. .cubeic-pullup {
  1891. font-size: 48rpx;
  1892. position: relative;
  1893. top: 12rpx;
  1894. }
  1895. }
  1896. }
  1897. .foot_btn2 {
  1898. position: fixed;
  1899. bottom: 0;
  1900. right: 20rpx;
  1901. left: 20rpx;
  1902. line-height: 66rpx;
  1903. height: 100rpx;
  1904. border-top: 2rpx solid #e5e9ed;
  1905. background: #f9fafb;
  1906. display: flex;
  1907. justify-content: space-between;
  1908. .btn2,
  1909. .btn3 {
  1910. height: 66rpx;
  1911. flex: 1;
  1912. margin: 0 1%;
  1913. background-image: linear-gradient(to right, #72c172, #3bb197);
  1914. color: #fff;
  1915. border-radius: 8rpx;
  1916. font-size: 28rpx;
  1917. margin-top: 8rpx;
  1918. margin-bottom: 8rpx;
  1919. text-align: center;
  1920. }
  1921. }
  1922. }
  1923. </style>