edit.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791
  1. <template>
  2. <view class="main">
  3. <uni-nav-bar dark :fixed="true" shadow background-color="#007AFF" status-bar left-icon="left" left-text="返回" :leftWidth=120 :rightWidth=120 :height=100 :width="1200"
  4. title="调配详情" @clickLeft="handleBack"
  5. />
  6. <view class="content">
  7. <view class="header">
  8. <view class="ti">
  9. <view class="left">
  10. <view class="baracode">
  11. <w-barcode :options="preseObj"></w-barcode>
  12. <view class="barnum">{{v.preNo}}</view>
  13. </view>
  14. </view>
  15. <view class="mid">
  16. <text class="title">中药处方笺</text>
  17. </view>
  18. <view class="rig"><text class="title">{{v.presType}}</text></view>
  19. </view>
  20. <view class="patiinfo">
  21. <view class="r1">
  22. <view class="row">姓名:{{v.name}}</view>
  23. <view class="row">性别:{{v.sex}}</view>
  24. <view class="row">年龄:{{v.age}}岁</view>
  25. <view class="row">电话:{{v.tel}}</view>
  26. <view class="row status">当前处方状态:{{v.status}}</view>
  27. </view>
  28. <view class="r2">
  29. <view class="row">就诊科室:{{v.department}}</view>
  30. <view class="row">临床诊断:{{v.disName}}—{{v.symName}}</view>
  31. <view class="row">开方时间:{{v.prescriptionTime}}</view>
  32. </view>
  33. <view class="r3">联系地址:{{v.addr}}</view>
  34. </view>
  35. </view>
  36. <view class="rp">
  37. <view class="title">
  38. <text class="text">Rp:</text>
  39. </view>
  40. <view class="lists">
  41. <view class="item" v-for="(x, i) in v.rp" :key="i">
  42. <view class="le tag-view">
  43. <uni-tag :inverted="!selectRps.includes(x)" :text=x.name+x.num @click="handleGetRps(x)" />
  44. </view>
  45. <view class="rig">
  46. <view class="up"> {{x.tips}}</view>
  47. <view class="do"> {{x.sign}}</view>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="footer">
  52. <view class="js">
  53. 剂数:{{v.pies}}
  54. <view v-if="v.pies_tips!==''" class="pies_tips">
  55. ({{v.pies_tips}})
  56. </view>
  57. </view>
  58. <view class="js">{{v.med_type}}</view>
  59. <view class="js">{{v.eat_type}}</view>
  60. <view class="js">每次{{v.capa}}</view>
  61. <view class="js">{{v.freque}}</view>
  62. <view class="freque">{{v.eat_tips}}</view>
  63. </view>
  64. <view class="rp-tips">{{v.rp_tips}}</view>
  65. </view>
  66. <view class="amountarea">
  67. <view class="amount">
  68. <view class="r1">
  69. <view class="pijw">药品金额:{{v.prescriptionSum}}</view>
  70. </view>
  71. <view class="r2">
  72. <view class="jyf">煎药费:{{v.daijianCost}}</view>
  73. <view class="psf">配送费:{{v.distributionCost}}</view>
  74. </view>
  75. <view class="r3">
  76. 总金额:{{v.prescriptionTotleSum}}
  77. <!-- <view class="zjw"></view> -->
  78. </view>
  79. </view>
  80. <view class="service">
  81. <view class="kf">开方:{{v.service.extra_doc}}</view>
  82. <view class="kf">审核:{{v.service.check_doc}}</view>
  83. <view class="kf">调配:{{v.service.depoly}}</view>
  84. <view class="kf">复核:{{v.service.review}}</view>
  85. <view class="kf">浸泡:{{v.service.steep}}</view>
  86. <view class="kf">煎煮:{{v.service.cook}}</view>
  87. <view class="kf">打包:{{v.service.pack}}</view>
  88. <view class="kf">发药:{{v.service.dispen}}</view>
  89. </view>
  90. </view>
  91. <view class="comment">
  92. <view class="z">注:</view>
  93. <text>{{v.comment}}</text>
  94. </view>
  95. </view>
  96. <view class="upload">
  97. <view class="title">上传照片</view>
  98. <uni-file-picker
  99. class="plugin"
  100. v-model="depolyImage"
  101. file-mediatype="image"
  102. mode="grid"
  103. file-extname="png,jpg"
  104. :image-styles="depolyImageStyles"
  105. :limit="3"
  106. @success="success"
  107. />
  108. </view>
  109. <view class="cooment">
  110. <view class="title">备注内容</view>
  111. <view class="tex">
  112. <input placeholder="请输入" placeholder-style="font-size: 30px;" height="40px" @input="bindTextInput" class="input"/>
  113. </view>
  114. </view>
  115. <view class="radio">
  116. <label for="">
  117. <switch :checked="isPrint" @change="handleChange" /> 上传时直接打印标签
  118. </label>
  119. </view>
  120. <view class="submit">
  121. <button type="primary" class="bu" @click="handleSubmit">上传</button>
  122. </view>
  123. <view class="popup">
  124. <uni-popup ref="alertDialog" type="dialog">
  125. <uni-popup-dialog type="center" cancelText="不打印" confirmText="打印" title="打印标签" @confirm="dialogConfirm" @close="dialogClose">
  126. <view class="cotent" id="printMe">
  127. <view class="title">默默事中医院取药标签打印(门诊)</view>
  128. <view class="body">
  129. <view class="lef">
  130. <view class="baracode">
  131. <w-barcode class="cav" :options="preseObj"></w-barcode>
  132. <view class="barnum">NO.{{v.pres_id}}</view>
  133. </view>
  134. </view>
  135. <view class="rig">
  136. <view class="hz">患者:<view class="bold">{{v.name}},{{v.sex}},{{v.age}}岁</view></view>
  137. <view class="hz">出生日期:<view class="bold">{{v.birth}}</view></view>
  138. </view>
  139. </view>
  140. </view>
  141. </uni-popup-dialog>
  142. </uni-popup>
  143. </view>
  144. </view>
  145. </template>
  146. <script>
  147. export default {
  148. name: ''
  149. }
  150. </script>
  151. <script setup>
  152. import { onMounted, ref, getCurrentInstance } from 'vue'
  153. import { selectOrderDetail } from "@/static/api.js"
  154. import { onLoad } from '@dcloudio/uni-app'
  155. const preseId = ref(11220822134401)
  156. const preseObj = ref({
  157. code: '11220822134401',
  158. color:['#000'], // 条形码的颜色
  159. bgColor: '#FFFFFF', // 背景色
  160. width: 200, // 宽度
  161. height: 50 // 高度
  162. })
  163. const {proxy} = getCurrentInstance()
  164. const depolyImageStyles = ref({
  165. width:200,
  166. height:200,
  167. border:{
  168. color:"#cfcfcf",
  169. width:1,
  170. style:'dashed',
  171. radius:'2px'
  172. }
  173. })
  174. const depolyImage = ref([])
  175. const barOpations = ref({
  176. height: 80,
  177. displayValue: false
  178. })
  179. const selectRps = ref([])
  180. const isPrint = ref(true)
  181. const success = ()=>{
  182. console.log('uni-file-picker',depolyImage.value)
  183. }
  184. const bindTextInput = (e)=>{
  185. console.log(e.detail.value)
  186. }
  187. const v=ref({
  188. preNo:11220822134401,
  189. presType:'普通处方',
  190. name:'李某',
  191. sex:'男',
  192. age:35,
  193. tel:'13888888888',
  194. pres_status: '发药',
  195. office:'中医内科',
  196. disName:'胃脘痛病',
  197. symName:'脾胃虚寒证',
  198. prescriptionTime:'2023-06-01 15:58',
  199. addr:'浙江省某某事某某去某某事中医院门诊楼三楼302是',
  200. rp:[
  201. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  202. {name:'车前子',num:'6g',tips:'先煎',sign:'医生签名'},
  203. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  204. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  205. {name:'车前子',num:'6g',tips:'先煎',sign:'医生签名'},
  206. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  207. {name:'车前子',num:'6g',tips:'',sign:''},
  208. {name:'车前子',num:'6g',tips:'',sign:''},
  209. {name:'车前子',num:'6g',tips:'',sign:''},
  210. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  211. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  212. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  213. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  214. {name:'车前子',num:'6g',tips:'包煎',sign:''},
  215. {name:'车前子',num:'6g',tips:'包煎',sign:''},
  216. {name:'车前子',num:'6g',tips:'包煎',sign:''},
  217. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  218. {name:'车前子',num:'6g',tips:'先煎',sign:'医生签名'},
  219. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  220. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  221. {name:'车前子',num:'6g',tips:'先煎',sign:'医生签名'},
  222. {name:'车前子',num:'6g',tips:'包煎',sign:'医生签名'},
  223. {name:'车前子',num:'6g',tips:'',sign:''},
  224. {name:'车前子',num:'6g',tips:'',sign:''},
  225. {name:'车前子',num:'6g',tips:'',sign:''},
  226. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  227. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  228. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  229. {name:'车前子',num:'6g',tips:'先煎',sign:''},
  230. {name:'车前子',num:'6g',tips:'包煎',sign:''},
  231. {name:'车前子',num:'6g',tips:'包煎',sign:''},
  232. {name:'车前子',num:'6g',tips:'包煎',sign:''},
  233. {name:'车前子',num:'6g',tips:'',sign:''},
  234. {name:'车前子',num:'6g',tips:'',sign:''},
  235. {name:'车前子',num:'6g',tips:'',sign:''},
  236. {name:'车前子',num:'6g',tips:'',sign:''},
  237. {name:'车前子',num:'6g',tips:'',sign:''},
  238. {name:'车前子',num:'6g',tips:'',sign:''},
  239. {name:'车前子',num:'6g',tips:'',sign:''},
  240. {name:'车前子',num:'6g',tips:'',sign:''},
  241. {name:'车前子',num:'6g',tips:'',sign:''},
  242. {name:'车前子',num:'6g',tips:'',sign:''},
  243. {name:'车前子',num:'6g',tips:'',sign:''},
  244. {name:'车前子',num:'6g',tips:'',sign:''}
  245. ],
  246. pies:3,
  247. pies_tips:'待见',
  248. med_type:'汤剂',
  249. eat_type:'煎服',
  250. capa:'200ml',
  251. freque:'一日三次',
  252. eat_tips:'饭后服',
  253. rp_tips:'注意多休息,饮食清单。',
  254. money:{
  255. drugs_amount: 187.00,
  256. cook_fee:30.00,
  257. delie_fee:10.00,
  258. summary: 227.00,
  259. },
  260. service:{
  261. extra_doc:'A医生',
  262. check_doc:'B医生',
  263. depoly:'调陪人',
  264. review:'复核人',
  265. steep:'浸泡',
  266. cook:'煎煮人',
  267. pack:'大宝人',
  268. dispen:'发药人',
  269. },
  270. comment:'1、本处方当日有效\n 2、取药时请您当面核对。。。。 \n 3、延长处方用量时间原油:慢性病 其他老年病 外地 其他'
  271. })
  272. onMounted(() => {
  273. })
  274. onLoad(async(options) => {
  275. console.log('options', options)
  276. const token = uni.getStorageSync('token')
  277. const userId = uni.getStorageSync('userId')
  278. const params = {
  279. token: token,
  280. data: {
  281. preId: options.preId,
  282. userId: userId,
  283. }
  284. }
  285. const {data:res } = selectOrderDetail(params)
  286. if (res.code === 200) {
  287. v.prescriptionTime = res.data.prescriptionTime,
  288. v.value.name = res.data.name,
  289. v.value.sex = res.data.sex,
  290. v.value.age = res.data.age,
  291. v.value.disName = res.data.disName,
  292. v.value.symName = res.data.symName,
  293. v.value.preNo = res.data.preNo,
  294. v.value.department = res.data.department,
  295. v.value.dosageForm = res.data.dosageForm,
  296. v.value.number = res.data.number,
  297. v.value.prescriptionSum = res.data.prescriptionSum,
  298. v.value.prescriptionTotalSum = res.data.prescriptionTotalSum,
  299. v.value.daijianCost = res.data.daijianCost,
  300. v.value.distributionCost = res.data.distributionCost,
  301. v.value.entrust = res.data.entrust,
  302. v.value.rp = res.data.detailList
  303. // v.value.status = res.data.status,
  304. switch (res.data.status) {
  305. case '1':
  306. v.value.status = '配药'
  307. break
  308. case '2':
  309. v.value.status = '煎药'
  310. break
  311. case '3':
  312. v.value.status = '发药'
  313. break
  314. case '4':
  315. v.value.status = '配送'
  316. break
  317. case '5':
  318. v.value.status = '已分配'
  319. break
  320. case '6':
  321. v.value.status = '已传送'
  322. break
  323. default:
  324. v.value.status = '配药'
  325. }
  326. }
  327. })
  328. const handleGetRps = (v)=>{
  329. console.log('handleGetRps', v)
  330. if(!selectRps.value.includes(v)) {
  331. selectRps.value.push(v)
  332. } else {
  333. selectRps.value.splice(selectRps.value.indexOf(v), 1)
  334. }
  335. }
  336. const handleChange = ()=>{
  337. isPrint.value = !isPrint.value
  338. console.log('handleChange', isPrint.value)
  339. }
  340. const handleBack =()=>{
  341. uni.navigateBack({
  342. delta: 1
  343. })
  344. }
  345. const handleSubmit = ()=>{
  346. if(!isPrint){
  347. // 直接调用接口,然后打印
  348. print("#printMe")
  349. console.log('直接调用接口,然后打印')
  350. } else {
  351. // 弹窗提醒
  352. // console.log("handleSubmit proxy.$refs.alertDialog",proxy.$refs.alertDialog)
  353. proxy.$refs.alertDialog.open('center')
  354. }
  355. }
  356. const dialogConfirm = ()=>{
  357. console.log('dialogConfirm直接调用接口,然后打印')
  358. print("#printMe")
  359. }
  360. const dialogClose = ()=>{
  361. console.log('dialogClose直接调用接口,不打印')
  362. }
  363. </script>
  364. <style lang="scss">
  365. .main {
  366. display: flex;
  367. flex-direction:column;
  368. justify-content:flex-start;
  369. // height: 2000px;
  370. width: 1200px;
  371. .content{
  372. margin: 10px;
  373. background-color: #fff;
  374. flex-direction:column;
  375. align-items: center;
  376. .header{
  377. display: flex;
  378. flex-direction:column;
  379. margin:16px 16px 0;
  380. .ti{
  381. display: flex;
  382. flex-direction:row;
  383. justify-content: space-between;
  384. .left{
  385. align-items: flex-start;
  386. .baracode{
  387. display: flex;
  388. flex-direction:column;
  389. width: 320px;
  390. // align-items: center;
  391. .barnum{
  392. width:320px;
  393. font-size: 40px;
  394. display: flex;
  395. justify-content:center;
  396. align-items: center;
  397. letter-spacing: 0.1em;
  398. }
  399. }
  400. }
  401. .mid{
  402. align-items: flex-start;
  403. justify-content:center;
  404. width:320px;
  405. display: flex;
  406. .title{
  407. font-size: 40px;
  408. margin-top: 20px;
  409. font-weight: 800;
  410. }
  411. }
  412. .rig{
  413. align-items: flex-start;
  414. justify-content:flex-end;
  415. width:320px;
  416. display: flex;
  417. .title{
  418. font-size: 26px;
  419. width: 60px;
  420. font-weight: 300;
  421. }
  422. }
  423. }
  424. .patiinfo{
  425. display: flex;
  426. flex-direction:column;
  427. margin-top: 5px;
  428. padding-bottom: 10px;
  429. border-bottom: 1px solid #000;
  430. .r1{
  431. display: flex;
  432. flex-direction:row;
  433. height: 50px;
  434. .row{
  435. font-size: 28px;
  436. font-weight: 400;
  437. margin-right: 30px;
  438. }
  439. .status{
  440. background-color: #cfcfcf;
  441. }
  442. }
  443. .r2{
  444. display: flex;
  445. flex-direction:row;
  446. margin-top: 5px;
  447. height: 50px;
  448. .row{
  449. font-size: 28px;
  450. font-weight: 400;
  451. margin-right: 20px;
  452. }
  453. }
  454. .r3{
  455. display: flex;
  456. flex-direction:row;
  457. height: 50px;
  458. margin-top: 5px;
  459. font-size: 28px;
  460. font-weight: 400;
  461. }
  462. }
  463. }
  464. .rp{
  465. display: flex;
  466. flex-direction:column;
  467. margin:0 16px 0;
  468. border-bottom: 1px solid #000;
  469. .title{
  470. font-size: 40px;
  471. }
  472. .lists{
  473. display: flex;
  474. flex-wrap: wrap;
  475. flex-direction: row;
  476. justify-content:flex-start;
  477. align-content:flex-start;
  478. margin-left:80px;
  479. // width: 1000px;
  480. // height: 1800px;
  481. .item{
  482. display: flex;
  483. justify-content:center;
  484. align-items: center;
  485. height:80px;
  486. width: 220px;
  487. margin-right: 40px;
  488. // flex-basis: 25%;
  489. .le{
  490. display: flex;
  491. // width: 160px;
  492. font-size: 28px;
  493. }
  494. .tag-view:deep(.uni-tag){
  495. display: flex;
  496. justify-content:center;
  497. align-items: center;
  498. font-size: 20px;
  499. height: 40px;
  500. width: 100px;
  501. padding: 6px 20px;
  502. }
  503. .rig{
  504. display: flex;
  505. flex-direction:column;
  506. margin-left: 10px;
  507. .up{
  508. width: 80px;
  509. height: 22px;
  510. }
  511. .do{
  512. width: 80px;
  513. height: 22px;
  514. }
  515. }
  516. }
  517. }
  518. .footer{
  519. margin: 20px 0 0 80px;
  520. display: flex;
  521. font-size: 25px;
  522. .js{
  523. display: flex;
  524. margin-right: 100px;
  525. .pies_tips{}
  526. }
  527. .freque{}
  528. }
  529. .rp-tips{
  530. display: flex;
  531. justify-content:flex-end;
  532. font-size: 25px;
  533. }
  534. }
  535. .amountarea{
  536. display: flex;
  537. margin: 10px 16px 0;
  538. padding-bottom: 10px;
  539. border-bottom: 1px solid #000;
  540. .amount{
  541. display: flex;
  542. flex-direction:column;
  543. .r1{
  544. border: 1px solid #000;
  545. font-size: 30px;
  546. width: 400px;
  547. display: flex;
  548. justify-content:center;
  549. align-items: center;
  550. height: 50px;
  551. }
  552. .r2{
  553. display: flex;
  554. justify-content:center;
  555. align-items: center;
  556. font-size: 30px;
  557. height: 50px;
  558. width: 400px;
  559. border-left: 1px solid #000;
  560. border-right: 1px solid #000;
  561. .jyf{
  562. width: 200px;
  563. display: flex;
  564. justify-content:center;
  565. align-items: center;
  566. }
  567. .psf{
  568. border-left: 1px solid #000;
  569. width: 201px;
  570. display: flex;
  571. justify-content:center;
  572. align-items: center;
  573. }
  574. }
  575. .r3{
  576. display: flex;
  577. justify-content:center;
  578. align-items: center;
  579. height: 50px;
  580. font-size: 30px;
  581. border: 1px solid #000;
  582. }
  583. }
  584. .service{
  585. display: flex;
  586. flex-wrap: wrap;
  587. margin-left: 50px;
  588. .kf{
  589. font-size: 30px;
  590. margin-right: 55px;
  591. }
  592. }
  593. }
  594. .comment{
  595. margin: 10px 16px 10px;
  596. font-size: 30px;
  597. line-height: 50px;
  598. display: flex;
  599. }
  600. }
  601. .upload{
  602. margin: 0 10px 10px;
  603. background-color: #fff;
  604. flex-direction:column;
  605. align-items: center;
  606. padding: 20px;
  607. .title{
  608. font-size: 40px;
  609. margin-bottom:20px;
  610. }
  611. .plugin{
  612. // margin-left: 20px;
  613. }
  614. }
  615. .cooment{
  616. margin: 0 10px 10px 10px;
  617. background-color: #fff;
  618. flex-direction:column;
  619. align-items: center;
  620. padding: 20px;
  621. .title{
  622. font-size: 40px;
  623. margin-bottom:20px;
  624. }
  625. .tex{
  626. display: flex;
  627. justify-content:flex-start;
  628. align-items: center;
  629. margin-bottom:20px;
  630. border: 1px solid #cfcfcf;
  631. height: 60px;
  632. .input{
  633. height: 30px;
  634. font-size: 30px;
  635. padding-left: 10px;
  636. }
  637. }
  638. }
  639. .radio{
  640. display: flex;
  641. margin: 0 10px 10px 10px;
  642. // background-color: #fff;
  643. flex-direction:column;
  644. // align-items: center;
  645. font-size: 20px!important;
  646. }
  647. .submit{
  648. display: flex;
  649. margin: 40px 10px;
  650. // background-color: #fff;
  651. align-items: center;
  652. .bu{
  653. display: flex;
  654. justify-content:center;
  655. align-items: center;
  656. height: 60px;
  657. width: 600px;
  658. font-size: 30px;
  659. }
  660. }
  661. :deep(.uni-popup-dialog){
  662. width: 800px;
  663. height: 500px;
  664. display: flex;
  665. flex-direction: column;
  666. background-color: #e1e3e9;
  667. // justify-content:center;
  668. // align-items: center;
  669. .uni-dialog-title-text{
  670. display: flex;
  671. font-size: 30px;
  672. padding-top: 20px;
  673. }
  674. .uni-dialog-content{
  675. display: flex;
  676. margin: 20px 40px;
  677. background-color: #fff;
  678. .cotent{
  679. display: flex;
  680. flex-direction: column;
  681. .title{
  682. font-size: 30px;
  683. font-weight: 500;
  684. margin-bottom: 10px;
  685. display: flex;
  686. align-items: center;
  687. justify-content:center;
  688. }
  689. .body{
  690. display: flex;
  691. // flex-direction: column;
  692. justify-content:center;
  693. .lef{
  694. display: flex;
  695. flex-direction: column;
  696. width: 320px;
  697. justify-content:center;
  698. .baracode{
  699. display: flex;
  700. flex-direction:column;
  701. width: 320px;
  702. .cav{
  703. width:320px;
  704. }
  705. .barnum{
  706. width:320px;
  707. font-size: 28px;
  708. display: flex;
  709. justify-content:center;
  710. align-items: center;
  711. letter-spacing: 0.1em;
  712. }
  713. }
  714. }
  715. .rig{
  716. display: flex;
  717. flex-direction: column;
  718. width: 340px;
  719. margin-left: 30px;
  720. .hz{
  721. display: flex;
  722. margin-bottom: 10px;
  723. font-size: 28px;
  724. }
  725. .bold{
  726. font-weight: 500;
  727. }
  728. }
  729. }
  730. }
  731. }
  732. .uni-dialog-button-group{
  733. display: flex;
  734. margin-top: 20px;
  735. border: 0;
  736. .uni-dialog-button{
  737. display: flex;
  738. height: 78px;
  739. width: 100px!important;
  740. border: 1px solid #000;
  741. margin:0 40px;
  742. border-radius: 4px;
  743. .uni-dialog-button-text{
  744. font-size: 32px;
  745. }
  746. }
  747. .uni-border-left{
  748. height: 80px;
  749. width: 100px;
  750. border: 1px solid #007aff;
  751. background-color: #007aff;
  752. border: 1px solid #007aff;
  753. .uni-dialog-button-text{
  754. font-size: 32px;
  755. color: #fff;
  756. }
  757. }
  758. }
  759. }
  760. }
  761. </style>