pharmacyDetails.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="pharmacyDetails_title">
  4. <view class="pharmacyDetails_tab" :class="{ 'active': selectedLabelSlots === item.id }" v-for="item in tabs"
  5. :key="item.id" @click="clickHandler(item.id)">
  6. <view class="pharmacyDetails_label">
  7. {{ item.label }}
  8. </view>
  9. </view>
  10. </view>
  11. <view class="page_item_wrap">
  12. <view class="page_item">
  13. <view class="page_item_top">
  14. <view class="page_item_top-inner" v-show="selectedLabelSlots == 1">
  15. <view class="page_item_top_L">
  16. <text class="L_text">请领单:{{ infoDATA.packid }}</text>
  17. </view>
  18. <view class="page_item_top_R">
  19. <text class="L_iocn">{{
  20. infoDATA.drugsState && infoDATA.drugsState.name
  21. }}</text>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="page_item_cont" v-show="selectedLabelSlots == 1">
  26. <view class="page_item_cont_B">
  27. <view class="page_item_cont_title">
  28. <text>记账时间</text>
  29. <text class="text_big">
  30. <text>{{ infoDATA.creatTime }}</text>
  31. </text>
  32. </view>
  33. </view>
  34. <view class="page_item_cont_C">
  35. <view class="page_item_cont_title_C">
  36. <text>请领科室</text>
  37. <text class="text_big">
  38. <text>{{ infoDATA.target && infoDATA.target.dept }}</text>
  39. </text>
  40. </view>
  41. </view>
  42. </view>
  43. <scroll-view scroll-y class="page_item_cont" v-show="selectedLabelSlots == 2">
  44. <view class="page_item_cont_C" v-for="(item,i) in queryProcessList" :key="i">
  45. <view class="page_item_cont_title_C">
  46. <text style="width: 5em;">{{item.operationTime}}</text>
  47. <text style="flex: 1;">{{item.operationType?item.operationType.name:''}}</text>
  48. <view class="text_big" style="text-align: center;max-width: 10em;flex: 1;">
  49. <text>{{ item.username || '暂无' }}</text>
  50. <view v-if="item.operatorAccount" style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden;">({{ item.operatorAccount }})</view>
  51. </view>
  52. </view>
  53. </view>
  54. </scroll-view>
  55. <view class="L"></view>
  56. <view class="R"></view>
  57. </view>
  58. <view class="L-l"></view>
  59. <view class="R-l"></view>
  60. </view>
  61. <view v-if="infoDATA.drugsState && infoDATA.drugsState.value == 4&&infoDATA.launch.id==loginUser.dept.id"
  62. class="btn-wrap">
  63. <button class="cube-toolbar-item1" :loading="isLoading" :disabled="isLoading" @click="dispensing(4)"
  64. v-if="infoDATA.drugsState && infoDATA.drugsState.value == 4&&infoDATA.launch.id==loginUser.dept.id">
  65. 核对完成
  66. </button>
  67. <button class="cube-toolbar-item1" :loading="isOLoading" :disabled="isOLoading" @click="nursetake()">
  68. 护士自取
  69. </button>
  70. </view>
  71. <button class="cube-toolbar-item" :loading="isOLoading" :disabled="isOLoading" @click="nursetake()"
  72. v-if="infoDATA.drugsState && infoDATA.drugsState.value == 8&&infoDATA.launch.id==loginUser.dept.id">
  73. 护士自取
  74. </button>
  75. <button class="cube-toolbar-item" :loading="isLoading" :disabled="isLoading" @click="dispensing(1)"
  76. v-if="infoDATA.drugsState && infoDATA.drugsState.value == 1&&infoDATA.launch.id==loginUser.dept.id">
  77. 开始配药
  78. </button>
  79. <view v-if="infoDATA.drugsState && infoDATA.drugsState.value == 2&&infoDATA.launch.id==loginUser.dept.id"
  80. class="btn-wrap">
  81. <button class="cube-toolbar-item1" :loading="isLoading" :disabled="isLoading" @click="dispensing(2)">
  82. 进行核对
  83. </button>
  84. <button class="cube-toolbar-item1" :loading="isTLoading" :disabled="isTLoading" @click="replaceOperator()">
  85. 替换配药人
  86. </button>
  87. </view>
  88. <!-- 护士自取账号弹窗 -->
  89. <selectAccount v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  90. @cancel="hosCancel">
  91. </selectAccount>
  92. </view>
  93. </template>
  94. <script>
  95. import selectAccount from "@/components/selectAccount/selectAccount.vue";
  96. import {
  97. get,
  98. post,
  99. SM,
  100. webHandle
  101. } from "../../http/http.js";
  102. export default {
  103. data() {
  104. return {
  105. selectedLabelSlots: 1,
  106. tabs: [{
  107. id: 1,
  108. label: "基础信息",
  109. },
  110. {
  111. id: 2,
  112. label: "流程信息",
  113. }
  114. ],
  115. infoDATA: [],
  116. isLoading: false,
  117. isTLoading: false,
  118. isOLoading: false,
  119. loginUser: {}, //当前登录用户
  120. // 护士自取弹窗model
  121. hosModels: {
  122. disjunctor: false,
  123. },
  124. queryProcessList: [],
  125. };
  126. },
  127. components: {
  128. selectAccount
  129. },
  130. methods: {
  131. // tab切换
  132. clickHandler(id) {
  133. this.selectedLabelSlots = id;
  134. if (id == 1) {
  135. this.queryBase(this.queryObj);
  136. } else if (id == 2) {
  137. this.queryProcess(this.queryObj);
  138. }
  139. },
  140. // 确认
  141. hosOk(data) {
  142. console.log(data);
  143. const {
  144. accountName,
  145. account,
  146. accountId
  147. } = data;
  148. if (!accountName && !account) {
  149. //没有填写交接人
  150. uni.showModal({
  151. title: '提示',
  152. content: "请填写账号!",
  153. showCancel: false,
  154. success: function(res) {
  155. if (res.confirm) {
  156. console.log('用户点击确定');
  157. } else if (res.cancel) {
  158. console.log('用户点击取消');
  159. }
  160. }
  161. });
  162. return;
  163. } else if (!accountName && account || accountName && !account) {
  164. //没有填写
  165. uni.showModal({
  166. title: '提示',
  167. content: "请填写正确的账号!",
  168. showCancel: false,
  169. success: function(res) {
  170. if (res.confirm) {
  171. console.log('用户点击确定');
  172. } else if (res.cancel) {
  173. console.log('用户点击取消');
  174. }
  175. }
  176. });
  177. return;
  178. }
  179. this.hosModels.disjunctor = false;
  180. //请求接口
  181. uni.showLoading({
  182. title: "加载中",
  183. mask: true,
  184. });
  185. let postData = {
  186. id: this.infoDATA.id,
  187. packId: this.infoDATA.packid,
  188. recipient: accountId,
  189. recipientName: accountName
  190. };
  191. if (this.infoDATA.gdId) {
  192. postData.gdId = this.infoDATA.gdId;
  193. }
  194. post('/drugsBag/nurseByHerself', postData).then(result => {
  195. uni.hideLoading();
  196. if (result.state == 200) {
  197. uni.showModal({
  198. title: '提示',
  199. content: result.info || "护士自取成功!",
  200. showCancel: false,
  201. success: function(res) {
  202. if (res.confirm) {
  203. uni.navigateTo({
  204. url: "../pharmacy/pharmacy",
  205. });
  206. } else if (res.cancel) {
  207. console.log('用户点击取消');
  208. }
  209. }
  210. });
  211. } else {
  212. uni.showModal({
  213. title: '提示',
  214. content: result.msg || "接口获取数据失败!",
  215. showCancel: false,
  216. success: function(res) {
  217. if (res.confirm) {
  218. console.log('用户点击确定');
  219. } else if (res.cancel) {
  220. console.log('用户点击取消');
  221. }
  222. }
  223. });
  224. }
  225. })
  226. },
  227. // 取消
  228. hosCancel() {
  229. this.hosModels.disjunctor = false;
  230. },
  231. // 护士自取
  232. nursetake() {
  233. this.hosModels = {
  234. disjunctor: true,
  235. }
  236. },
  237. // 替换配药人
  238. replaceOperator() {
  239. this.isTLoading = true;
  240. uni.showLoading({
  241. title: "加载中",
  242. mask: true,
  243. });
  244. post("/drugsBag/replaceOperator", {
  245. packId: this.infoDATA.packid,
  246. drugsBagId: this.infoDATA.id,
  247. }).then((result) => {
  248. this.isTLoading = false;
  249. uni.hideLoading();
  250. if (result.state == 200) {
  251. uni.showModal({
  252. title: '提示',
  253. content: result.info,
  254. showCancel: false,
  255. success: function(res) {
  256. if (res.confirm) {
  257. console.log('用户点击确定');
  258. } else if (res.cancel) {
  259. console.log('用户点击取消');
  260. }
  261. }
  262. });
  263. } else {
  264. uni.showModal({
  265. title: '提示',
  266. content: result.msg || "接口获取数据失败!",
  267. showCancel: false,
  268. success: function(res) {
  269. if (res.confirm) {
  270. console.log('用户点击确定');
  271. } else if (res.cancel) {
  272. console.log('用户点击取消');
  273. }
  274. }
  275. });
  276. }
  277. })
  278. },
  279. // 开始配药,进行核对,1是待配药,2是配药中,4是核对中
  280. dispensing(type) {
  281. let msg = '';
  282. if (type == 1) {
  283. msg = '是否开始配药?'
  284. } else if (type == 2) {
  285. msg = '是否进行核对?'
  286. } else if (type == 4) {
  287. msg = '是否核对完成?'
  288. }
  289. uni.showModal({
  290. title: '提示',
  291. content: msg,
  292. success: res => {
  293. if (res.confirm) {
  294. console.log('用户点击确定');
  295. this.isLoading = true;
  296. uni.showLoading({
  297. title: "加载中",
  298. mask: true,
  299. });
  300. if (type == 1) {
  301. post("/drugsBag/changeToIng", {
  302. id: this.infoDATA.id,
  303. }).then((result) => {
  304. this.isLoading = false;
  305. uni.hideLoading();
  306. if (result.state == 200) {
  307. uni.showModal({
  308. title: '提示',
  309. content: result.info || "开始配药成功!",
  310. showCancel: false,
  311. success: function(res) {
  312. if (res.confirm) {
  313. uni.navigateTo({
  314. url: "../pharmacy/pharmacy",
  315. });
  316. } else if (res.cancel) {
  317. console.log('用户点击取消');
  318. }
  319. }
  320. });
  321. // let data = {
  322. // launchId: this.infoDATA.launch.id,
  323. // drugsBagId: this.infoDATA.id,
  324. // };
  325. // post("/drugsBag/autoDrugsBags", data).then((result1) => {
  326. // this.isLoading = false;
  327. // if (result1.status == 200) {
  328. // uni.showToast({
  329. // title: "操作成功!",
  330. // success() {
  331. // uni.navigateTo({
  332. // url: "../pharmacy/pharmacy",
  333. // });
  334. // },
  335. // });
  336. // }else if(result1.status == 501){
  337. // uni.showToast({
  338. // icon: "none",
  339. // title: result1.error,
  340. // });
  341. // }else {
  342. // uni.showToast({
  343. // icon: "none",
  344. // title: result1.msg || "接口获取数据失败!",
  345. // });
  346. // }
  347. // });
  348. // } else if(result.state == 503){//未建单
  349. // uni.showToast({
  350. // icon: "none",
  351. // title: result.error,
  352. // });
  353. } else {
  354. // this.isLoading = false;
  355. uni.showModal({
  356. title: '提示',
  357. content: result.msg || "接口获取数据失败!",
  358. showCancel: false,
  359. success: function(res) {
  360. if (res.confirm) {
  361. console.log('用户点击确定');
  362. } else if (res.cancel) {
  363. console.log('用户点击取消');
  364. }
  365. }
  366. });
  367. }
  368. });
  369. } else if (type == 2) {
  370. post("/drugsBag/changeToCheck", {
  371. id: this.infoDATA.id,
  372. }).then((result) => {
  373. this.isLoading = false;
  374. uni.hideLoading();
  375. if (result.state == 200) {
  376. uni.showModal({
  377. title: '提示',
  378. content: result.info || "进行核对成功!",
  379. showCancel: false,
  380. success: function(res) {
  381. if (res.confirm) {
  382. uni.navigateTo({
  383. url: "../pharmacy/pharmacy",
  384. });
  385. } else if (res.cancel) {
  386. console.log('用户点击取消');
  387. }
  388. }
  389. });
  390. } else {
  391. uni.showModal({
  392. title: '提示',
  393. content: result.msg || "接口获取数据失败!",
  394. showCancel: false,
  395. success: function(res) {
  396. if (res.confirm) {
  397. console.log('用户点击确定');
  398. } else if (res.cancel) {
  399. console.log('用户点击取消');
  400. }
  401. }
  402. });
  403. }
  404. });
  405. } else if (type == 4) {
  406. post("/drugsBag/checkComplete", {
  407. id: this.infoDATA.id,
  408. packId: this.infoDATA.packid
  409. }).then((result) => {
  410. this.isLoading = false;
  411. uni.hideLoading();
  412. if (result.state == 200) {
  413. uni.showModal({
  414. title: '提示',
  415. content: result.info || "核对完成成功!",
  416. showCancel: false,
  417. success: function(res) {
  418. if (res.confirm) {
  419. uni.navigateTo({
  420. url: "../pharmacy/pharmacy",
  421. });
  422. } else if (res.cancel) {
  423. console.log('用户点击取消');
  424. }
  425. }
  426. });
  427. } else {
  428. uni.showModal({
  429. title: '提示',
  430. content: result.msg || "接口获取数据失败!",
  431. showCancel: false,
  432. success: function(res) {
  433. if (res.confirm) {
  434. console.log('用户点击确定');
  435. } else if (res.cancel) {
  436. console.log('用户点击取消');
  437. }
  438. }
  439. });
  440. }
  441. });
  442. }
  443. } else if (res.cancel) {
  444. console.log('用户点击取消');
  445. }
  446. }
  447. });
  448. },
  449. //基础信息查询
  450. queryBase(options) {
  451. //扫码进入详情
  452. let qrcode = options.qrcode;
  453. if (qrcode) {
  454. uni.showLoading({
  455. title: "加载中",
  456. mask: true,
  457. });
  458. post("/drugsBag/getDrugsBagByQr", {
  459. qrcode,
  460. }).then((result) => {
  461. uni.hideLoading();
  462. if (result.state == 200) {
  463. this.infoDATA = result.result;
  464. if (this.loginUser.dept.id != this.infoDATA.launch.id) {
  465. uni.showModal({
  466. title: '提示',
  467. content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
  468. "】,您不能进行操作",
  469. showCancel: false,
  470. success: function(res) {
  471. if (res.confirm) {
  472. console.log('用户点击确定');
  473. } else if (res.cancel) {
  474. console.log('用户点击取消');
  475. }
  476. }
  477. });
  478. }
  479. } else {
  480. uni.showToast({
  481. icon: "none",
  482. title: result.msg || "接口获取数据失败!",
  483. });
  484. }
  485. });
  486. }
  487. // 点击列表进入详情
  488. let id = options.id;
  489. if (id) {
  490. uni.showLoading({
  491. title: "加载中",
  492. mask: true,
  493. });
  494. get("/api/fetchData/drugsBag/" + id).then((res) => {
  495. uni.hideLoading();
  496. if (res.status == 200) {
  497. this.infoDATA = res.data;
  498. if (this.loginUser.dept.id != this.infoDATA.launch.id) {
  499. uni.showModal({
  500. title: '提示',
  501. content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
  502. "】,您不能进行操作",
  503. showCancel: false,
  504. success: function(res) {
  505. if (res.confirm) {
  506. console.log('用户点击确定');
  507. } else if (res.cancel) {
  508. console.log('用户点击取消');
  509. }
  510. }
  511. });
  512. }
  513. } else {
  514. uni.showToast({
  515. icon: "none",
  516. title: res.msg || "接口获取数据失败!",
  517. });
  518. }
  519. });
  520. }
  521. },
  522. // 流程信息查询
  523. queryProcess(options) {
  524. //扫码进入详情
  525. let qrcode = options.qrcode;
  526. if (qrcode) {
  527. uni.showLoading({
  528. title: "加载中",
  529. mask: true,
  530. });
  531. let postData = {
  532. idx: 0,
  533. sum: 9999,
  534. drugsBagOperationLog: {
  535. qrcode,
  536. hosId: this.loginUser.currentHospital.id
  537. }
  538. }
  539. post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((result) => {
  540. uni.hideLoading();
  541. if (result.status == 200) {
  542. result.list.forEach(v => {
  543. if (v.operationTime) {
  544. v.operationTime = (new Date(v.operationTime)).Format("MM-dd hh:mm:ss");
  545. }
  546. });
  547. this.queryProcessList = result.list;
  548. } else {
  549. uni.showToast({
  550. icon: "none",
  551. title: result.msg || "接口获取数据失败!",
  552. });
  553. }
  554. });
  555. }
  556. // 点击列表进入详情
  557. let packid = options.packid;
  558. if (packid) {
  559. uni.showLoading({
  560. title: "加载中",
  561. mask: true,
  562. });
  563. let postData = {
  564. idx: 0,
  565. sum: 9999,
  566. drugsBagOperationLog: {
  567. drugsBagId: options.id,
  568. hosId: this.loginUser.currentHospital.id
  569. }
  570. }
  571. post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((res) => {
  572. uni.hideLoading();
  573. if (res.status == 200) {
  574. res.list.forEach(v => {
  575. if (v.operationTime) {
  576. v.operationTime = (new Date(v.operationTime)).Format("MM-dd hh:mm:ss");
  577. }
  578. });
  579. this.queryProcessList = res.list;
  580. } else {
  581. uni.showToast({
  582. icon: "none",
  583. title: res.msg || "接口获取数据失败!",
  584. });
  585. }
  586. });
  587. }
  588. }
  589. },
  590. onLoad(options) {
  591. this.loginUser = uni.getStorageSync("userData").user;
  592. console.log(this.loginUser, 'loginUserloginUser')
  593. // #ifdef APP-PLUS
  594. webHandle("no", "app");
  595. // #endif
  596. // #ifdef H5
  597. webHandle("no", "wx");
  598. // #endif
  599. this.queryObj = options;
  600. this.queryBase(this.queryObj);
  601. },
  602. };
  603. </script>
  604. <style lang="less">
  605. .pharmacyDetails {
  606. background-color: rgb(249, 250, 251);
  607. padding-top: 32rpx;
  608. .pharmacyDetails_title {
  609. height: 100rpx;
  610. display: flex;
  611. align-items: center;
  612. background-color: #fff;
  613. .pharmacyDetails_tab {
  614. flex: 1;
  615. display: flex;
  616. align-items: center;
  617. .pharmacyDetails_label {
  618. display: flex;
  619. justify-content: center;
  620. align-items: center;
  621. font-size: 40rpx;
  622. width: 100%;
  623. height: 66rpx;
  624. border-radius: 32rpx;
  625. color: #666;
  626. }
  627. &.active {
  628. .pharmacyDetails_label {
  629. color: #333;
  630. background-color: #e5e9ed;
  631. }
  632. }
  633. }
  634. }
  635. .page_item_wrap {
  636. position: relative;
  637. margin-top: 32rpx;
  638. .page_item {
  639. margin-top: 16rpx;
  640. margin-bottom: 124rpx;
  641. background: #fff;
  642. border-radius: 8rpx;
  643. margin: 0 20rpx;
  644. border: 2rpx solid #e5e9ed;
  645. position: relative;
  646. overflow: hidden;
  647. padding: 0 16rpx;
  648. .L {
  649. width: 40rpx;
  650. height: 40rpx;
  651. border-radius: 50%;
  652. background: #f9fafb;
  653. position: absolute;
  654. left: -20rpx;
  655. top: 68rpx;
  656. border: 2rpx solid #e5e9ed;
  657. }
  658. .R {
  659. width: 40rpx;
  660. height: 40rpx;
  661. border-radius: 50%;
  662. background: #f9fafb;
  663. position: absolute;
  664. float: right;
  665. right: -20rpx;
  666. top: 68rpx;
  667. border: 2rpx solid #e5e9ed;
  668. }
  669. .page_item_top {
  670. height: 88rpx;
  671. border-bottom: 2rpx dashed #e5e9ed;
  672. padding: 0 16rpx;
  673. .page_item_top-inner {
  674. display: flex;
  675. justify-content: space-between;
  676. align-items: center;
  677. height: 100%;
  678. .page_item_top_L {
  679. .L_text {
  680. font-size: 32rpx;
  681. font-weight: 700;
  682. }
  683. }
  684. .page_item_top_R {
  685. font-size: 32rpx;
  686. .L_iocn {
  687. color: rgb(7, 134, 60);
  688. font-size: 36rpx;
  689. font-weight: 700;
  690. }
  691. }
  692. }
  693. }
  694. .page_item_cont {
  695. box-sizing: border-box;
  696. min-height: 180rpx;
  697. max-height: calc(100vh - 534rpx);
  698. padding: 0 16rpx;
  699. text-align: left;
  700. position: relative;
  701. .text_big {
  702. font-size: 32rpx;
  703. font-weight: 700;
  704. text {
  705. font-weight: 700;
  706. line-height: 1.5;
  707. }
  708. }
  709. .line {
  710. height: 20rpx;
  711. width: 2rpx;
  712. border-left: 2rpx solid #e5e9ed;
  713. position: absolute;
  714. top: 82rpx;
  715. left: 40rpx;
  716. }
  717. .page_item_cont_T {
  718. padding-top: 28rpx;
  719. font-size: 28rpx;
  720. .page_item_cont_title {
  721. height: 100%;
  722. font-size: 32rpx;
  723. display: flex;
  724. justify-content: space-between;
  725. }
  726. }
  727. .page_item_cont_B {
  728. padding-top: 28rpx;
  729. margin-bottom: 28rpx;
  730. .page_item_cont_title {
  731. font-size: 32rpx;
  732. display: flex;
  733. justify-content: space-between;
  734. align-items: center;
  735. }
  736. }
  737. .page_item_cont_C {
  738. margin-top: 14rpx;
  739. margin-bottom: 14rpx;
  740. .page_item_cont_title_C {
  741. font-size: 32rpx;
  742. display: flex;
  743. justify-content: space-between;
  744. align-items: center;
  745. }
  746. }
  747. #infos {
  748. display: none;
  749. }
  750. }
  751. }
  752. .L-l {
  753. width: 2rpx;
  754. height: 40rpx;
  755. background: #f9fafb;
  756. position: absolute;
  757. left: 20rpx;
  758. top: 72rpx;
  759. }
  760. .R-l {
  761. width: 2rpx;
  762. height: 40rpx;
  763. background: #f9fafb;
  764. position: absolute;
  765. right: 20rpx;
  766. top: 72rpx;
  767. }
  768. }
  769. .cube-toolbar-item {
  770. width: 710rpx;
  771. height: 68rpx;
  772. line-height: 68rpx;
  773. position: fixed;
  774. left: 20rpx;
  775. bottom: 160rpx;
  776. border-radius: 8rpx;
  777. background: linear-gradient(to right, #72c172, #3bb197);
  778. font-size: 36rpx;
  779. color: #fff;
  780. text-align: center;
  781. }
  782. .btn-wrap {
  783. width: 100%;
  784. display: flex;
  785. justify-content: space-between;
  786. position: fixed;
  787. left: 0;
  788. bottom: 160rpx;
  789. }
  790. .cube-toolbar-item1 {
  791. flex: 1;
  792. height: 68rpx;
  793. line-height: 68rpx;
  794. border-radius: 8rpx;
  795. margin: 0 1%;
  796. background: linear-gradient(to right, #72c172, #3bb197);
  797. font-size: 36rpx;
  798. color: #fff;
  799. text-align: center;
  800. }
  801. }
  802. </style>