receiptpage.vue 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404
  1. <template>
  2. <view class="Receiptpage">
  3. <view class="page_tab">
  4. <view class="page_tab_bar" :class="{ active: item.label === selectedLabelSlots }" v-for="item in tabs"
  5. :key="item.value" @click="clickHandler(item.label)">
  6. {{ item.label }}
  7. <text class="tab_num">( {{ item.num }} )</text>
  8. <view class="more" v-if="item.label === '执行中'"></view>
  9. <picker class="more_picker" v-if="item.label === '执行中'" @click.stop @change="execFilter($event)" :value="index"
  10. :range="array" range-key="name">
  11. <view class="uni-input">{{ array[index].name }}</view>
  12. </picker>
  13. </view>
  14. </view>
  15. <view v-if="zxzData.length == 0" class="zwsj">
  16. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  17. <view class="zwsj-txt">暂无数据</view>
  18. </view>
  19. <view class="page_items">
  20. <scroll-view class="page_items_scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
  21. :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
  22. @scroll="scroll" @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort">
  23. <view class="page_item_wrap" v-for="(item, index) of zxzData" :key="index">
  24. <view class="page_item">
  25. <view class="L"></view>
  26. <view class="R"></view>
  27. <view class="page_item_top">
  28. <view class="page_item_top_L">
  29. <!-- <text class="L_iocn" v-if="item.taskType.associationType.value == 'specimen'">标</text>
  30. <text class="L_iocn" v-if="item.taskType.associationType.value == 'drugsBag'">药</text>
  31. <text class="L_iocn" v-if="item.taskType.associationType.value == 'specimenPlan'">巡</text>
  32. <text class="L_iocn" v-if="item.taskType.associationType.value == 'jPBag'">静</text>
  33. <text class="L_iocn" v-if="item.taskType.associationType.value == 'inspect'">病</text>
  34. <text class="L_iocn" v-if="
  35. item.taskType.associationType.value == 'patientTransport'
  36. ">病</text>
  37. <text class="L_iocn" v-if="item.taskType.associationType.value == 'other'">其</text> -->
  38. <view class="page_item_cont_start emergency1" v-if="item.emergencyType.value == 1">
  39. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  40. </image>
  41. {{ item.emergencyType.name }}
  42. </view>
  43. <view class="page_item_cont_start emergency" v-if="item.emergencyType.value == 2">
  44. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  45. </image>
  46. {{ item.emergencyType.name }}
  47. </view>
  48. <view class="page_item_cont_start emergencys" v-if="item.emergencyType.value == 3">
  49. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  50. </image>
  51. {{ item.emergencyType.name }}
  52. </view>
  53. <view class="page_item_top_R type" style="margin-left: 16rpx;">
  54. {{
  55. item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
  56. }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
  57. </view>
  58. <!-- <text class="L_time" v-if="item.overdueTime">{{ item.overdueTime }}前送达</text> -->
  59. </view>
  60. <view class="page_item_top_R" v-if="
  61. !(
  62. item.taskType.associationType.value == 'inspect' &&
  63. item.gdState.value == 5
  64. )
  65. ">
  66. <text class="text_big">{{ item.gdState.name }}</text>
  67. </view>
  68. <view class="page_item_top_R" v-if="
  69. item.taskType.associationType.value == 'inspect' &&
  70. item.gdState.value == 5
  71. ">
  72. <text class="text_big">待送回</text>
  73. </view>
  74. <!-- <view class="page_item_top_R type">
  75. {{
  76. item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
  77. }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
  78. </view> -->
  79. </view>
  80. <view class="page_item_cont" @click="itemInfo(item)">
  81. <view class="page_item_cont_T">
  82. <view class="page_item_cont_title">
  83. <text> <text class="starting">起</text> 点科室 </text>
  84. <text class="text_big">{{ item.startDept.dept }}</text>
  85. </view>
  86. <!-- <view class="page_item_cont_start emergency1" v-if="item.emergencyType.value == 1">
  87. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  88. </image>
  89. {{ item.emergencyType.name }}
  90. </view>
  91. <view class="page_item_cont_start emergency" v-if="item.emergencyType.value == 2">
  92. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  93. </image>
  94. {{ item.emergencyType.name }}
  95. </view>
  96. <view class="page_item_cont_start emergencys" v-if="item.emergencyType.value == 3">
  97. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  98. </image>
  99. {{ item.emergencyType.name }}
  100. </view> -->
  101. </view>
  102. <view class="page_item_conts" v-if="item.taskType.associationType.value == 'specimen'">
  103. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  104. <view>扫描标本数量 : {{ item.actualReceiveNum || '无'}}</view>
  105. <view class="line"></view>
  106. </view>
  107. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'blood'">
  108. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  109. <view>接收数量 : {{ item.actualReceiveNum || '无'}}</view>
  110. <view class="line"></view>
  111. </view>
  112. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'inspect'">
  113. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  114. <view>
  115. 预约时间 : {{ item.yyTime | yyTimeFilter
  116. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  117. </view>
  118. <view>
  119. 床号 : {{ item.patient ? item.patient.patientName : "-" }}({{
  120. item.patient ? item.patient.bedNum : "-"
  121. }})
  122. </view>
  123. <view>
  124. 携带设备 :
  125. <text>{{ item.goods || "暂无" }}</text>
  126. </view>
  127. <view v-if="item.patient.careLevel">
  128. 护理等级 :
  129. <text :class="[
  130. item.patient.careLevel.value == 0 ||
  131. item.patient.careLevel.value == 1
  132. ? 'red'
  133. : 'green',
  134. ]">{{ item.patient.careLevel.name }}</text>
  135. </view>
  136. <view v-if="item.patient.illnessState">
  137. 病情级别 :
  138. <text :class="{
  139. red:
  140. item.patient.illnessState.value == 2 ||
  141. item.patient.illnessState.value == 3,
  142. }">{{ item.patient.illnessState.name }}</text>
  143. </view>
  144. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  145. 陪同情况 :
  146. <text :class="{ red: item.isAccompany === 1 }">{{
  147. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  148. }}</text>
  149. </view>
  150. <view class="line"></view>
  151. </view>
  152. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'patientTransport'">
  153. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  154. <view>
  155. 预约时间 : {{ item.yyjdTime | yyTimeFilter
  156. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  157. </view>
  158. <view>
  159. 床号 : {{ item.patient ? item.patient.patientName : "-" }}({{
  160. item.patient ? item.patient.bedNum : "-"
  161. }})
  162. </view>
  163. <view>
  164. 携带设备 :
  165. <text>{{ item.goods || "暂无" }}</text>
  166. </view>
  167. <view v-if="item.patient.careLevel">
  168. 护理等级 :
  169. <text :class="[
  170. item.patient.careLevel.value == 0 ||
  171. item.patient.careLevel.value == 1
  172. ? 'red'
  173. : 'green',
  174. ]">{{ item.patient.careLevel.name }}</text>
  175. </view>
  176. <view v-if="item.patient.illnessState">
  177. 病情级别 :
  178. <text :class="{
  179. red:
  180. item.patient.illnessState.value == 2 ||
  181. item.patient.illnessState.value == 3,
  182. }">{{ item.patient.illnessState.name }}</text>
  183. </view>
  184. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  185. 陪同情况 :
  186. <text :class="{ red: item.isAccompany === 1 }">{{
  187. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  188. }}</text>
  189. </view>
  190. <view class="line"></view>
  191. </view>
  192. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'drugsBag'">
  193. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  194. <view>
  195. 药包编码 : {{ item.drugs ? item.drugs.packid : "无" }}
  196. </view>
  197. <view class="line"></view>
  198. </view>
  199. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'jPBag'">
  200. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  201. <view>
  202. 药包编码 :
  203. {{ item.staticDistri ? item.staticDistri.packid : "无" }}
  204. </view>
  205. <view class="line"></view>
  206. </view>
  207. <view class="page_item_conts" v-else>
  208. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  209. <view class="line"></view>
  210. </view>
  211. <view class="page_item_cont_B">
  212. <view class="page_item_cont_title" v-if="item.taskType.associationType.value != 'inspect'">
  213. <text> <text class="End">终</text> 点科室 </text>
  214. <text class="text_big" v-for="(dept, i) of item.endDepts" :key="i">{{ dept.dept }}</text>
  215. </view>
  216. <view class="page_item_cont_title" v-if="item.taskType.associationType.value == 'inspect'">
  217. <text> <text class="End">检</text> 查科室 </text>
  218. <text class="text_big" v-for="(dept, i) of item.middleDept" :key="i">{{ dept.dept }}</text>
  219. </view>
  220. </view>
  221. </view>
  222. <view v-if="
  223. item.taskType.associationType.value == 'inspect' ||
  224. item.taskType.associationType.value == 'patientTransport'
  225. ">
  226. <!-- 待抢单 -->
  227. <text class="red" v-if="item.gdState.value == 2">请扫描患者腕带,或者请扫描科室码</text>
  228. <!-- 待到达 -->
  229. <text class="red" v-if="item.gdState.value == 4">请扫描患者腕带</text>
  230. <!-- 执行中 -->
  231. <text class="red" v-if="item.gdState.value == 8">请扫描检查科室码,并扫描患者腕带</text>
  232. <!-- 待送达 -->
  233. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
  234. </view>
  235. <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
  236. <view class="page_item_btn" v-if="
  237. selectedLabelSlots == '执行中' &&
  238. item.taskType.associationType.value != 'patientTransport' &&
  239. item.taskType.associationType.value != 'inspect' &&
  240. item.taskType.associationType.value != 'other' &&
  241. item.taskType.associationType.value != 'ordinary'
  242. " hover-class="seimin-btn-hover">
  243. <smallScreen :sData="item" :sType="2">扫码</smallScreen>
  244. </view>
  245. <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
  246. <view class="page_item_btn_wrap" v-if="
  247. selectedLabelSlots == '执行中' &&
  248. item.taskType.associationType.value != 'jPBag' &&
  249. item.taskType.associationType.value != 'drugsBag' &&
  250. item.taskType.associationType.value != 'specimen' &&
  251. item.taskType.associationType.value != 'specimenPlan' &&
  252. item.taskType.associationType.value != 'ordinary'
  253. ">
  254. <view class="page_item_btn" :style="{
  255. width:
  256. item.taskType.associationType.value != 'other' &&
  257. item.gdState.value == 4
  258. ? '50%'
  259. : '100%',
  260. }" hover-class="seimin-btn-hover">
  261. <smallScreen :sData="item" :sType="1">扫码</smallScreen>
  262. </view>
  263. <view v-if="
  264. item.taskType.associationType.value != 'other' &&
  265. item.gdState.value == 4
  266. " class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
  267. </view>
  268. <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)"
  269. hover-class="seimin-btn-hover">接单</view>
  270. </view>
  271. <view class="L-l"></view>
  272. <view class="R-l"></view>
  273. </view>
  274. </scroll-view>
  275. </view>
  276. <!-- 底部扫一扫 -->
  277. <bigScreen></bigScreen>
  278. <!-- 悬浮按钮 -->
  279. <uni-fab :pattern="pattern" :content="content" :direction="direction" @trigger="trigger"></uni-fab>
  280. <!-- 弹窗 -->
  281. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  282. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  283. <!-- 手动查询标本弹窗 -->
  284. <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  285. @ok="speOk" @cancel="speCancel">
  286. </handViewSpecimen>
  287. <!-- 手动查询药品弹窗 -->
  288. <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
  289. :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
  290. </handViewDrugsBag>
  291. </view>
  292. </template>
  293. <script>
  294. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  295. import showModel from "../../components/showModel/showModel.vue";
  296. import bigScreen from "../../components/bigScreen/bigScreen.vue";
  297. // https://ext.dcloud.net.cn/plugin?id=144
  298. import uniFab from "@/components/uni-fab/uni-fab.vue";
  299. import {
  300. get,
  301. post,
  302. SM,
  303. deleteIt,
  304. webHandle
  305. } from "../../http/http.js";
  306. import {
  307. photographTool
  308. } from "../../tools/photograph.js";
  309. export default {
  310. data() {
  311. return {
  312. SMFlag: true,
  313. // 手动查询标本弹窗model
  314. speModels: {
  315. disjunctor: false,
  316. },
  317. // 手动查询药品弹窗model
  318. drugbagModels: {
  319. disjunctor: false,
  320. },
  321. // 筛选条件
  322. array: [{
  323. id: 0,
  324. name: "全部",
  325. },
  326. {
  327. id: 71,
  328. name: "待到达",
  329. },
  330. {
  331. id: 72,
  332. name: "待送达",
  333. },
  334. {
  335. id: 75,
  336. name: "执行中",
  337. },
  338. ],
  339. index: 0,
  340. arrayKey: 0,
  341. // 当前登录人是否是药房角色
  342. pharmacistFlag: false,
  343. // 抢单的id
  344. qdId: "",
  345. // 弹窗model
  346. models: {
  347. disjunctor: false,
  348. },
  349. // 悬浮按钮样式
  350. pattern: {
  351. buttonColor: "#6cc076",
  352. },
  353. // 悬浮按钮展开菜单显示方式
  354. direction: "vertical",
  355. // 悬浮按钮展开菜单内容配置项
  356. content: [{
  357. text: "我的任务",
  358. }, ],
  359. // 当前选中tab页名称
  360. selectedLabelSlots: "待接单",
  361. // tab页信息
  362. tabs: [{
  363. label: "待接单", //tab页名称
  364. value: "1", //值
  365. num: 0, //数量
  366. },
  367. {
  368. label: "执行中",
  369. value: "2",
  370. num: 0,
  371. },
  372. ],
  373. //列表数据
  374. zxzData: [],
  375. //分页页码
  376. idx: 0,
  377. // 列表项总数
  378. totalNum: -1,
  379. triggered: false, //下拉刷新状态
  380. freshing: false, //上拉加载开关
  381. scroll_top: 0, //距离顶部的距离
  382. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  383. };
  384. },
  385. filters: {
  386. // 自定义管道 yyTime
  387. yyTimeFilter: function(data) {
  388. if (data) {
  389. let nDate = null;
  390. if (typeof data == 'string') {
  391. let arr = data.split(/[-:\s]/);
  392. nDate = new Date(
  393. arr[0] - 0,
  394. arr[1] - 1,
  395. arr[2] - 0,
  396. arr[3] - 0,
  397. arr[4] - 0,
  398. 0
  399. );
  400. } else if (typeof data == 'number') {
  401. nDate = new Date(data);
  402. }
  403. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  404. const date = nDate.getDate().toString().padStart(2, 0);
  405. const hour = nDate.getHours().toString().padStart(2, 0);
  406. const minute = nDate.getMinutes().toString().padStart(2, 0);
  407. return `${month}-${date} ${hour}:${minute}`;
  408. } else {
  409. return "-";
  410. }
  411. },
  412. },
  413. components: {
  414. uniFab,
  415. showModel,
  416. bigScreen,
  417. },
  418. methods: {
  419. // 手动查询药品-确认
  420. drugbagOk(data) {
  421. console.log(data);
  422. if (!data.id) {
  423. //没有查询到药品
  424. uni.showModal({
  425. title: '提示',
  426. content: "没有查询到发药单号!",
  427. showCancel: false,
  428. success: function(res) {
  429. if (res.confirm) {
  430. console.log('用户点击确定');
  431. } else if (res.cancel) {
  432. console.log('用户点击取消');
  433. }
  434. }
  435. });
  436. return;
  437. }
  438. this.drugbagModels.disjunctor = false;
  439. uni.navigateTo({
  440. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${data.id}`,
  441. });
  442. },
  443. // 手动查询药品-取消
  444. drugbagCancel() {
  445. this.drugbagModels.disjunctor = false;
  446. },
  447. // 手动查询药品弹窗
  448. showHandViewDrugsbag() {
  449. console.log(1)
  450. this.drugbagModels = {
  451. title: '填写发药单号',
  452. disjunctor: true,
  453. }
  454. },
  455. // 手动查询标本-确认
  456. speOk(data) {
  457. console.log(data);
  458. if (!data.id) {
  459. //没有查询到标本
  460. uni.showModal({
  461. title: '提示',
  462. content: "没有查询到标本!",
  463. showCancel: false,
  464. success: function(res) {
  465. if (res.confirm) {
  466. console.log('用户点击确定');
  467. } else if (res.cancel) {
  468. console.log('用户点击取消');
  469. }
  470. }
  471. });
  472. return;
  473. }
  474. this.speModels.disjunctor = false;
  475. let infoDATA = {
  476. stype: data.stype,
  477. scode: data.scode,
  478. patientName: data.patientName,
  479. sickRoom: data.sickRoom ?
  480. data.sickRoom.dept : "-",
  481. checkDept: data.checkDept ?
  482. data.checkDept.dept : "-",
  483. bedNum: data.bedNum,
  484. };
  485. uni.navigateTo({
  486. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  487. JSON.stringify({data,status:666,scanCodeSpecimenOrderSign:data.scanCodeSpecimenOrderSign,workOrder:data.workOrderDTO})
  488. )}&infoDATA=${encodeURIComponent(
  489. JSON.stringify(infoDATA)
  490. )}`,
  491. });
  492. },
  493. // 手动查询标本-取消
  494. speCancel() {
  495. this.speModels.disjunctor = false;
  496. },
  497. // 手动查询标本弹窗
  498. showHandViewSpecimen() {
  499. this.speModels = {
  500. title: '填写标本编码',
  501. disjunctor: true,
  502. }
  503. },
  504. // 执行中筛选
  505. execFilter({
  506. detail: {
  507. value
  508. }
  509. }) {
  510. this.index = value;
  511. this.arrayKey = this.array[value].id;
  512. this.zxzData = [];
  513. this.totalNum = -1;
  514. this.idx = 0;
  515. this.selectedLabelSlots = "执行中";
  516. this.executingOrders(0);
  517. },
  518. // 获取科室二维码设置开关
  519. getMenu() {
  520. let menu = uni.getStorageSync("userData").menu;
  521. //判断当前登陆人具体角色 start
  522. let roles = uni.getStorageSync("userData").user.role;
  523. this.pharmacistFlag = roles.some(
  524. (item) => item.rolecode === "pharmacist"
  525. );
  526. //判断当前登陆人具体角色 end
  527. console.log(menu);
  528. menu.forEach((item) => {
  529. if (item.link === "wxInspect") {
  530. this.content.push({
  531. text: "检查信息",
  532. });
  533. } else if (item.link === "wxPatient") {
  534. this.content.push({
  535. text: "患者信息",
  536. });
  537. } else if (item.link === "wxPharmacy") {
  538. // 如果是配药师人员,则增加药房
  539. if (this.pharmacistFlag) {
  540. this.content.push({
  541. text: "药房",
  542. });
  543. }
  544. } else if (item.link === "wxCode") {
  545. this.content.push({
  546. text: "二维码设置",
  547. });
  548. } else if (item.link === "wxSpecimenEntry") {
  549. this.content.push({
  550. text: "标本录入",
  551. });
  552. } else if (item.link === "wxDrugsbagEntry") {
  553. this.content.push({
  554. text: "药品录入",
  555. });
  556. } else if (item.link === "wxTakeMedicine") {
  557. this.content.push({
  558. text: "摆药取药",
  559. });
  560. }
  561. });
  562. },
  563. // 拍照
  564. photograph(data) {
  565. photographTool(data);
  566. },
  567. // 悬浮按钮点击事件
  568. trigger(e) {
  569. if (e.item.text === "我的任务") {
  570. uni.navigateTo({
  571. url: "../mypage/mypage",
  572. });
  573. } else if (e.item.text === "退出登录") {
  574. // 假登录
  575. uni.showToast({
  576. title: "退出成功!",
  577. });
  578. let ip = uni.getStorageSync("ip"); //记住域名或ip
  579. let username = uni.getStorageSync("username"); //记住用户名
  580. let password = uni.getStorageSync("password"); //记住密码
  581. let savePasswordTime = uni.getStorageSync("savePasswordTime"); //记住密码的时间戳
  582. let clientid = uni.getStorageSync("clientid");
  583. uni.clearStorageSync();
  584. if (username) {
  585. uni.setStorageSync("ip", ip); //记住域名或ip
  586. uni.setStorageSync("username", username); //记住用户名
  587. uni.setStorageSync("password", password); //记住密码
  588. uni.setStorageSync("savePasswordTime", savePasswordTime); //记住密码的时间戳
  589. }
  590. uni.setStorageSync("clientid", clientid);
  591. uni.navigateTo({
  592. url: "../homePage/homePage",
  593. });
  594. // 假登录
  595. deleteIt("/auth/logout2").then((result) => {
  596. if (result.status == 200) {
  597. uni.showToast({
  598. title: "退出成功!",
  599. });
  600. let ip = uni.getStorageSync("ip"); //记住域名或ip
  601. let username = uni.getStorageSync("username"); //记住用户名
  602. let password = uni.getStorageSync("password"); //记住密码
  603. let clientid = uni.getStorageSync("clientid");
  604. uni.clearStorageSync();
  605. uni.setStorageSync("ip", ip); //记住域名或ip
  606. uni.setStorageSync("username", username); //记住用户名
  607. uni.setStorageSync("password", password); //记住密码
  608. uni.setStorageSync("clientid", clientid);
  609. uni.navigateTo({
  610. url: "../homePage/homePage",
  611. });
  612. } else {
  613. uni.showToast({
  614. icon: "none",
  615. title: "请求失败!",
  616. });
  617. }
  618. });
  619. } else if (e.item.text === "药房") {
  620. uni.navigateTo({
  621. url: "../pharmacy/pharmacy",
  622. });
  623. } else if (e.item.text === "患者信息") {
  624. uni.navigateTo({
  625. url: "../patientInformationList/patientInformationList",
  626. });
  627. } else if (e.item.text === "负责科室") {
  628. if (uni.getStorageSync("setDepts")) {
  629. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  630. }
  631. let obj = uni.getStorageSync("setDeptConfg");
  632. uni.navigateTo({
  633. url: `../setDept/setDept?configName=${obj.configName}&id=${obj.id}&changedept=1`,
  634. });
  635. } else if (e.item.text === "检查信息") {
  636. uni.navigateTo({
  637. url: "../inspectList/inspectList",
  638. });
  639. } else if (e.item.text === "二维码设置") {
  640. uni.navigateTo({
  641. url: "../settingCode/settingCode",
  642. });
  643. } else if (e.item.text === "标本录入") {
  644. this.showHandViewSpecimen();
  645. } else if (e.item.text === "药品录入") {
  646. this.showHandViewDrugsbag();
  647. } else if (e.item.text === "摆药取药") {
  648. this.handleTakeMedicine()
  649. }
  650. },
  651. // 摆药取药
  652. handleTakeMedicine() {
  653. if (!this.SMFlag) {
  654. return;
  655. }
  656. this.SMFlag = false;
  657. SM().then((content) => {
  658. uni.showLoading({
  659. title: "加载中",
  660. mask: true,
  661. });
  662. //检验二维码的有效性(扫码前必须验证)
  663. post("/dept/scanning", {
  664. content,
  665. })
  666. .then((result) => {
  667. this.currentCode = result.code;
  668. this.SMFlag = true;
  669. // 200检测通过,201没有有效期也通过。
  670. if (result.state == 200 || result.state == 201) {
  671. uni.hideLoading();
  672. uni.navigateTo({
  673. url: `../promptPage/promptPage?code=${result.code}`,
  674. });
  675. } else {
  676. uni.hideLoading();
  677. uni.showToast({
  678. icon: "none",
  679. title: '请求失败',
  680. });
  681. }
  682. })
  683. }).catch(err => {
  684. this.SMFlag = true;
  685. });
  686. },
  687. // 点击tab页切换
  688. clickHandler(key) {
  689. this.selectedLabelSlots = key;
  690. this.idx = 0;
  691. this.totalNum = -1;
  692. // this.zxzData = [];
  693. this.scroll_top = Math.random(); //回到顶部
  694. if (key === "待接单") {
  695. this.waitingOrders(0);
  696. } else if (key === "执行中") {
  697. this.executingOrders(0);
  698. }
  699. },
  700. // 进入详情页
  701. itemInfo(workOrder) {
  702. console.log(workOrder);
  703. uni.navigateTo({
  704. url: `../receipt_infopage/receipt_infopage?id=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  705. });
  706. },
  707. //抢单后知道了
  708. know() {
  709. this.models.disjunctor = false;
  710. this.idx = 0;
  711. this.totalNum = -1;
  712. // this.zxzData = [];
  713. this.executingOrdersGetNum();
  714. this.waitingOrders(0); //seimin
  715. this.scroll_top = Math.random(); //回到顶部
  716. },
  717. //抢单确定
  718. ok() {
  719. this.models.disjunctor = false;
  720. get("/workerOrder/takeOrder/" + this.qdId.id).then((res) => {
  721. let msg = "接单失败";
  722. let icon = "error";
  723. if (res.status == 200) {
  724. msg = "接单成功";
  725. icon = "success";
  726. }
  727. this.models = {
  728. disjunctor: true,
  729. content: msg,
  730. icon: icon,
  731. operate: {
  732. know: "知道了",
  733. },
  734. };
  735. });
  736. },
  737. //抢单取消
  738. cancel() {
  739. this.models.disjunctor = false;
  740. },
  741. // 抢单
  742. showAlerts(data) {
  743. this.qdId = data;
  744. this.models = {
  745. disjunctor: true,
  746. title: "提示",
  747. content: "是否确定接单?",
  748. icon: "warn",
  749. operate: {
  750. ok: "确定",
  751. cancel: "取消",
  752. },
  753. };
  754. },
  755. //执行中列表数据获取
  756. executingOrders(idx) {
  757. console.log(this.zxzData.length, this.totalNum);
  758. if (this.zxzData.length == this.totalNum) {
  759. uni.showToast({
  760. icon: "none",
  761. title: "没有更多数据了!",
  762. });
  763. this.freshing = true;
  764. return;
  765. }
  766. let data = {
  767. idx,
  768. sum: 20,
  769. };
  770. if (this.arrayKey) {
  771. data.keyWord = this.arrayKey;
  772. } else {
  773. delete data.keyWord;
  774. }
  775. uni.showLoading({
  776. title: "加载中",
  777. mask: true,
  778. });
  779. post("/workerOrder/executingOrders", data).then((res) => {
  780. uni.hideLoading();
  781. if (res.status == 200) {
  782. this.triggered = false;
  783. this.freshing = true;
  784. this.totalNum = res.data.resultCount;
  785. if (idx === 0) {
  786. this.zxzData = res.data.data;
  787. } else {
  788. this.zxzData.push(...res.data.data);
  789. }
  790. this.tabs[1].num = res.data.resultCount;
  791. } else {
  792. uni.showToast({
  793. icon: "none",
  794. title: "请求失败!",
  795. });
  796. }
  797. });
  798. },
  799. //待抢单列表数据获取
  800. waitingOrders(idx) {
  801. if (this.zxzData.length == this.totalNum) {
  802. uni.showToast({
  803. icon: "none",
  804. title: "没有更多数据了!",
  805. });
  806. this.freshing = true;
  807. return;
  808. }
  809. let data = {
  810. idx,
  811. sum: 20,
  812. };
  813. uni.showLoading({
  814. title: "加载中",
  815. mask: true,
  816. });
  817. // 请求列表数据
  818. post("/workerOrder/waitingOrders", data).then((res) => {
  819. uni.hideLoading();
  820. if (res.status == 200) {
  821. this.triggered = false;
  822. this.freshing = true;
  823. this.totalNum = res.data.resultCount;
  824. if (idx === 0) {
  825. this.zxzData = res.data.data;
  826. } else {
  827. this.zxzData.push(...res.data.data);
  828. }
  829. this.tabs[0].num = res.data.resultCount;
  830. } else {
  831. uni.showToast({
  832. icon: "none",
  833. title: "请求失败!",
  834. });
  835. }
  836. });
  837. },
  838. //刷新
  839. refresherrefresh() {
  840. if (this.triggered) {
  841. return;
  842. }
  843. this.triggered = true;
  844. this.idx = 0;
  845. this.totalNum = -1;
  846. if (this.selectedLabelSlots == "待接单") {
  847. this.waitingOrders(0);
  848. } else if (this.selectedLabelSlots == "执行中") {
  849. this.executingOrders(0);
  850. }
  851. },
  852. // 滚动
  853. scroll(e) {
  854. if (e.detail.scrollTop < 20) {
  855. this.scroll_refresher_enabled = true;
  856. } else {
  857. this.scroll_refresher_enabled = false;
  858. }
  859. },
  860. // 下拉刷新复位
  861. refresherrestore() {
  862. this.triggered = false;
  863. console.log("下拉刷新复位");
  864. },
  865. //下拉刷新中止
  866. refresherabort() {
  867. this.triggered = false;
  868. console.log("下拉刷新中止");
  869. },
  870. //分页,上拉加载
  871. scrolltolower() {
  872. if (this.freshing) {
  873. this.freshing = false;
  874. if (this.selectedLabelSlots == "待接单") {
  875. this.waitingOrders(++this.idx);
  876. } else if (this.selectedLabelSlots == "执行中") {
  877. this.executingOrders(++this.idx);
  878. }
  879. }
  880. },
  881. // 执行中获取数字
  882. executingOrdersGetNum() {
  883. let data = {
  884. idx: 0,
  885. sum: 20,
  886. };
  887. if (this.arrayKey) {
  888. data.keyWord = this.arrayKey;
  889. } else {
  890. delete data.keyWord;
  891. }
  892. post("/workerOrder/executingOrders", data).then((res) => {
  893. if (res.status == 200) {
  894. this.tabs[1].num = res.data.resultCount;
  895. } else {
  896. uni.showToast({
  897. icon: "none",
  898. title: "请求失败!",
  899. });
  900. }
  901. });
  902. },
  903. // 待接单获取数字
  904. waitingOrdersGetNum() {
  905. let data = {
  906. idx: 0,
  907. sum: 20,
  908. };
  909. post("/workerOrder/waitingOrders", data).then((res) => {
  910. if (res.status == 200) {
  911. this.tabs[0].num = res.data.resultCount;
  912. } else {
  913. uni.showToast({
  914. icon: "none",
  915. title: "请求失败!",
  916. });
  917. }
  918. });
  919. },
  920. // 阻止浏览器滑动
  921. stop(e) {
  922. e.preventDefault();
  923. },
  924. },
  925. onLoad() {
  926. // 获取菜单权限
  927. this.getMenu();
  928. post("/auth/getUserWorkDept", {}).then((ress) => {
  929. if (ress.status == 200) {
  930. let userId = uni.getStorageSync("userData").user.id;
  931. let groupManager = ress.settings && ress.settings.groupManager; //当前工作组合选择的组
  932. let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
  933. let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
  934. if (workType == 2 && (ruleType == 3 || (ruleType == 4 && userId == groupManager.manager))) {
  935. //自选排班,科室绑定分组,当前登陆人是组长
  936. this.content.unshift({
  937. text: "负责科室",
  938. });
  939. }
  940. }
  941. });
  942. // let setDeptConfg = uni.getStorageSync("setDeptConfg");
  943. // let manager = uni.getStorageSync("manager");
  944. // let userId = uni.getStorageSync("userData").user.id;
  945. // console.log(setDeptConfg, manager, userId);
  946. // if (
  947. // setDeptConfg.workSchemeType == 2 &&
  948. // (setDeptConfg.ruleType == 3 ||
  949. // (setDeptConfg.ruleType == 4 && userId == manager))
  950. // ) {
  951. // //自选排班,科室绑定人员 || 科室绑定分组 && 组长是当前登陆人
  952. // this.content.unshift({
  953. // text: "负责科室",
  954. // });
  955. // }
  956. // #ifdef APP-PLUS
  957. // this.content.push({
  958. // text: "退出登录",
  959. // });
  960. // #endif
  961. this.selectedLabelSlots = "执行中";
  962. this.waitingOrdersGetNum();
  963. this.executingOrders(0);
  964. // #ifdef APP-PLUS
  965. webHandle("no", "app");
  966. // #endif
  967. // #ifdef H5
  968. webHandle("no", "wx");
  969. // #endif
  970. },
  971. onShow() {
  972. this.SMFlag = true;
  973. // #ifdef H5
  974. document.body.addEventListener("touchmove", this.stop, {
  975. passive: false,
  976. });
  977. // #endif
  978. },
  979. onHide() {
  980. // #ifdef H5
  981. document.body.removeEventListener("touchmove", this.stop, {
  982. passive: false,
  983. });
  984. // #endif
  985. },
  986. };
  987. </script>
  988. <style lang="less">
  989. .Receiptpage {
  990. width: 100%;
  991. height: 100%;
  992. position: relative;
  993. .red {
  994. color: red !important;
  995. font-weight: bold !important;
  996. }
  997. .page_tab {
  998. width: 100%;
  999. height: 96rpx;
  1000. display: flex;
  1001. position: fixed;
  1002. left: 0;
  1003. top: 0;
  1004. z-index: 999;
  1005. .page_tab_bar {
  1006. flex: 1;
  1007. font-size: 36rpx;
  1008. background: #fff;
  1009. display: flex;
  1010. justify-content: center;
  1011. align-items: center;
  1012. position: relative;
  1013. &:after {
  1014. content: "";
  1015. position: absolute;
  1016. left: 0;
  1017. bottom: 0;
  1018. height: 2rpx;
  1019. width: 100%;
  1020. background-color: transparent;
  1021. }
  1022. .tab_num {
  1023. color: #ff3b53;
  1024. margin-left: 8rpx;
  1025. }
  1026. .more {
  1027. position: absolute;
  1028. right: 20rpx;
  1029. width: 40rpx;
  1030. height: 4rpx;
  1031. border-top: 2px solid #49b856;
  1032. border-bottom: 2px solid #49b856;
  1033. background-color: #49b856;
  1034. padding: 5px 0;
  1035. background-clip: content-box;
  1036. }
  1037. .more_picker {
  1038. position: absolute;
  1039. right: 0;
  1040. height: 100%;
  1041. opacity: 0;
  1042. }
  1043. &.active {
  1044. color: #49b856;
  1045. &:after {
  1046. background-color: #49b856;
  1047. }
  1048. }
  1049. }
  1050. }
  1051. .zwsj {
  1052. position: absolute;
  1053. left: 50%;
  1054. top: 180rpx;
  1055. transform: translateX(-50%);
  1056. .zwsj-img {
  1057. width: 560rpx;
  1058. }
  1059. .zwsj-txt {
  1060. font-size: 36rpx;
  1061. font-weight: 700;
  1062. margin-top: 20rpx;
  1063. text-align: center;
  1064. }
  1065. }
  1066. .page_items {
  1067. height: calc(100vh - 184rpx);
  1068. padding: 0 20rpx;
  1069. // padding-bottom: 88rpx;
  1070. padding-top: 96rpx;
  1071. .page_items_scroll {
  1072. height: 100%;
  1073. .page_item_wrap {
  1074. position: relative;
  1075. margin-bottom: 32rpx;
  1076. .page_item {
  1077. margin-bottom: 16rpx;
  1078. // min-height: 356rpx;
  1079. background: #fff;
  1080. border-radius: 8rpx;
  1081. overflow: hidden;
  1082. border: 2rpx solid #e5e9ed;
  1083. .L {
  1084. width: 40rpx;
  1085. height: 40rpx;
  1086. border-radius: 50%;
  1087. background: #f9fafb;
  1088. position: absolute;
  1089. left: -24rpx;
  1090. top: 68rpx;
  1091. border: 2rpx solid #e5e9ed;
  1092. }
  1093. .R {
  1094. width: 40rpx;
  1095. height: 40rpx;
  1096. border-radius: 50%;
  1097. background: #f9fafb;
  1098. position: absolute;
  1099. float: right;
  1100. right: -24rpx;
  1101. top: 68rpx;
  1102. border: 2rpx solid #e5e9ed;
  1103. }
  1104. .starting {
  1105. width: 40rpx;
  1106. height: 40rpx;
  1107. color: #fff;
  1108. background: #49b856;
  1109. display: inline-block;
  1110. border-radius: 50%;
  1111. text-align: center;
  1112. line-height: 40rpx;
  1113. font-size: 28rpx;
  1114. }
  1115. .End {
  1116. width: 40rpx;
  1117. height: 40rpx;
  1118. color: #fff;
  1119. background: #39b199;
  1120. display: inline-block;
  1121. border-radius: 50%;
  1122. text-align: center;
  1123. line-height: 40rpx;
  1124. font-size: 28rpx;
  1125. }
  1126. .page_item_top {
  1127. height: 86rpx;
  1128. border-bottom: 2rpx dashed #e5e9ed;
  1129. padding: 0 16rpx;
  1130. .page_item_top_L {
  1131. height: 100%;
  1132. float: left;
  1133. line-height: 88rpx;
  1134. display: flex;
  1135. align-items: center;
  1136. .emergencys {
  1137. background: #ff3b53 !important;
  1138. width: 124rpx !important;
  1139. }
  1140. .emergency {
  1141. background: #ff3b53 !important;
  1142. }
  1143. .emergency1 {
  1144. background: #49b856 !important;
  1145. }
  1146. .page_item_cont_start {
  1147. text-align: center;
  1148. height: 44rpx;
  1149. width: 104rpx;
  1150. line-height: 44rpx;
  1151. border-radius: 8rpx;
  1152. background: #49b856;
  1153. color: #fff;
  1154. .page_item_cont_start-img {
  1155. width: 22rpx;
  1156. position: relative;
  1157. top: 6rpx;
  1158. margin-right: 8rpx;
  1159. }
  1160. }
  1161. .L_iocn {
  1162. display: inline-block;
  1163. width: 44rpx;
  1164. height: 44rpx;
  1165. line-height: 42rpx;
  1166. border-radius: 100rpx;
  1167. color: #6cc076;
  1168. font-size: 32rpx;
  1169. border: 4rpx solid #6cc076;
  1170. background: #f0f6ed;
  1171. text-align: center;
  1172. margin-right: 8rpx;
  1173. }
  1174. .L_time {
  1175. color: #6cc076;
  1176. font-size: 32rpx;
  1177. }
  1178. .L_text {
  1179. font-size: 32rpx;
  1180. }
  1181. }
  1182. .page_item_top_R {
  1183. height: 100%;
  1184. float: right;
  1185. line-height: 88rpx;
  1186. font-size: 32rpx;
  1187. &.type {
  1188. margin-right: 32rpx;
  1189. color: red;
  1190. max-width: 260rpx;
  1191. white-space: nowrap;
  1192. text-overflow: ellipsis;
  1193. overflow: hidden;
  1194. }
  1195. .text_big{
  1196. font-weight: bold;
  1197. }
  1198. }
  1199. }
  1200. .page_item_cont {
  1201. min-height: 180rpx;
  1202. padding: 0 16rpx;
  1203. text-align: left;
  1204. position: relative;
  1205. display: flex;
  1206. flex-direction: column;
  1207. justify-content: space-between;
  1208. .text_big {
  1209. font-size: 32rpx;
  1210. margin-left: 10rpx;
  1211. font-weight: 700;
  1212. }
  1213. .line {
  1214. height: 100%;
  1215. width: 2rpx;
  1216. border-left: 2rpx solid #e5e9ed;
  1217. position: absolute;
  1218. // top: 70rpx;
  1219. top: 50%;
  1220. left: 20rpx;
  1221. transform: translateY(-50%);
  1222. }
  1223. .lines {
  1224. height: 40%;
  1225. width: 2rpx;
  1226. border-left: 2rpx solid #e5e9ed;
  1227. position: absolute;
  1228. top: 23%;
  1229. left: 36rpx;
  1230. }
  1231. .emergencys {
  1232. background: #ff3b53 !important;
  1233. width: 124rpx !important;
  1234. }
  1235. .emergency {
  1236. background: #ff3b53 !important;
  1237. }
  1238. .emergency1 {
  1239. background: #49b856 !important;
  1240. }
  1241. .page_item_cont_T {
  1242. // min-height: 80rpx;
  1243. // max-height: 324rpx;
  1244. font-size: 28rpx;
  1245. margin-top: 16rpx;
  1246. display: flex;
  1247. justify-content: space-between;
  1248. .page_item_cont_title {
  1249. height: 100%;
  1250. // float: left;
  1251. }
  1252. .page_item_cont_start {
  1253. text-align: center;
  1254. // float: right;
  1255. height: 44rpx;
  1256. width: 104rpx;
  1257. line-height: 44rpx;
  1258. border-radius: 8rpx;
  1259. background: #49b856;
  1260. color: #fff;
  1261. .page_item_cont_start-img {
  1262. width: 22rpx;
  1263. position: relative;
  1264. top: 6rpx;
  1265. margin-right: 8rpx;
  1266. }
  1267. }
  1268. }
  1269. .page_item_conts {
  1270. min-height: 30rpx;
  1271. color: rgb(102, 102, 102);
  1272. padding-left: 50rpx;
  1273. font-size: 28rpx;
  1274. margin: 16rpx 0;
  1275. position: relative;
  1276. view:not(.line) {
  1277. line-height: 1.2;
  1278. }
  1279. text {
  1280. color: #49b856;
  1281. }
  1282. }
  1283. .page_item_cont_B {
  1284. // padding-top: 20rpx;
  1285. font-size: 28rpx;
  1286. // overflow: hidden;
  1287. margin-bottom: 16rpx;
  1288. .page_item_cont_title {
  1289. height: 100%;
  1290. float: left;
  1291. }
  1292. }
  1293. }
  1294. .page_item_btn_wrap {
  1295. display: flex;
  1296. justify-content: space-between;
  1297. .page_item_btn {
  1298. height: 88rpx;
  1299. width: 49%;
  1300. background-image: linear-gradient(to right, #72c172, #3bb197);
  1301. border-radius: 8rpx;
  1302. line-height: 88rpx;
  1303. color: #fff;
  1304. font-size: 36rpx;
  1305. font-weight: 700;
  1306. text-align: center;
  1307. }
  1308. }
  1309. .page_item_btn {
  1310. height: 88rpx;
  1311. background-image: linear-gradient(to right, #72c172, #3bb197);
  1312. border-radius: 8rpx;
  1313. line-height: 88rpx;
  1314. color: #fff;
  1315. font-size: 36rpx;
  1316. font-weight: 700;
  1317. text-align: center;
  1318. }
  1319. }
  1320. .L-l {
  1321. width: 2rpx;
  1322. height: 40rpx;
  1323. background: #f9fafb;
  1324. position: absolute;
  1325. left: 20rpx;
  1326. top: 72rpx;
  1327. display: none;
  1328. }
  1329. .R-l {
  1330. width: 2rpx;
  1331. height: 40rpx;
  1332. background: #f9fafb;
  1333. position: absolute;
  1334. right: 20rpx;
  1335. top: 72rpx;
  1336. display: none;
  1337. }
  1338. }
  1339. }
  1340. }
  1341. .text {
  1342. font-size: 36rpx;
  1343. }
  1344. .wt_icon {
  1345. font-size: 40rpx;
  1346. }
  1347. }
  1348. </style>