receipt_infopage.vue 67 KB

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