prescribe.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824
  1. <template>
  2. <view class="content">
  3. <view class="fixed-top-box">
  4. <view class="status_bar" :style="{height: statusBarHeight}"></view>
  5. <view class="back-box" @click="back">
  6. <image src="../../static/images/back_white.png" mode=""></image>
  7. <text class="title">填写处方信息</text>
  8. <text></text>
  9. </view>
  10. </view>
  11. <view class="inner">
  12. <view :style="{height: statusBarHeight}"></view>
  13. <!-- 步骤 -->
  14. <view class="steps-box">
  15. <view class="item active">填写信息</view>
  16. <image class="arrow" src="../../static/images/arrow4.png" mode=""></image>
  17. <view class="item">医生开方</view>
  18. <image class="arrow" src="../../static/images/arrow4.png" mode=""></image>
  19. <view class="item">支付订单</view>
  20. <image class="arrow" src="../../static/images/arrow4.png" mode=""></image>
  21. <view class="item">厂家发货</view>
  22. </view>
  23. <!-- 提示 -->
  24. <view class="tip-box">
  25. <view class="top">
  26. <image src="../../static/images/safe2.png" mode=""></image>
  27. <text class="text">依据国家规定、处方药需凭处方购买</text>
  28. </view>
  29. <view class="time-tip">填写问诊人信息、处方信息</view>
  30. </view>
  31. <view class="info-box">
  32. <!-- 选择问诊人 -->
  33. <view class="chose-people">
  34. <view class="title-box">
  35. <text class="title">选择问诊人</text>
  36. <view class="add-box" @click="addPeople()">
  37. <image src="../../static/images/add26.png" mode=""></image>
  38. <text >添加</text>
  39. </view>
  40. </view>
  41. <view class="peop-list" v-if="patient.length>0">
  42. <view v-for="(item,index) in patient" :key="index" :class="patientId == item.patientId?'item active':'item'" @click="chosePatient(item)">
  43. <view class="name">{{ item.patientName }}</view>
  44. <view class="info">
  45. <text class="sex" v-if="item.gender==1">男</text>
  46. <text class="sex" v-if="item.gender==2">女</text>
  47. <text class="ege">{{utils.getAge(item.birthday)}}岁</text>
  48. </view>
  49. <!-- 选中的对号角标 -->
  50. <image v-if="patientId == item.patientId" class="active-img" src="../../static/images/sel_right50.png" mode=""></image>
  51. </view>
  52. </view>
  53. </view>
  54. <view class="text-content">
  55. <view class="title">
  56. <text class="black">主诉</text>
  57. <text class="gray">(选填)</text>
  58. </view>
  59. <textarea class="textArea" maxlength="200" @input="chiefComplaintInput" placeholder="请填写主诉内容"></textarea>
  60. </view>
  61. <view class="text-content">
  62. <view class="title">
  63. <text class="black">既往病史</text>
  64. <text class="gray">(选填)</text>
  65. </view>
  66. <textarea class="textArea" maxlength="200" @input="historyIllnessInput" placeholder="请填写既往病史内容"></textarea>
  67. </view>
  68. <view class="img-content">
  69. <view class="title">
  70. <text class="black">复诊凭证</text>
  71. <text class="gray">(选填) {{imgList.length}}/4</text>
  72. </view>
  73. <view class="upload-img">
  74. <view class="img" v-for="(item,index) in imgList" :key="index" >
  75. <image :src="item" mode="aspectFill" @click="previewImage(index)"></image>
  76. <view class="del" @click="delImg(index)" >
  77. <image src="/static/images/del2.png"></image>
  78. </view>
  79. </view>
  80. <view class="chose-img" @tap="chooseImage(1)" v-if="imgList.length<4">
  81. <image src="/static/images/adds.png"></image>
  82. </view>
  83. </view>
  84. </view>
  85. <!-- 疾病选择 -->
  86. <!-- <view class="disease-select">
  87. <view class="title">
  88. <text class="black">本次用药的确诊疾病</text>
  89. <text class="gray">(可多选)</text>
  90. </view>
  91. <view class="dise-list">
  92. <view
  93. v-for="(item,index) in diseaseList"
  94. :key="index"
  95. :class="activeDise == index?'item active':'item'"
  96. @click="choseDise(index)"
  97. >
  98. {{ item }}
  99. </view>
  100. </view>
  101. </view> -->
  102. <!-- 是否使用过此药 -->
  103. <view class="check-box">
  104. <view class="left">
  105. <image src="../../static/images/yao.png" mode=""></image>
  106. <text class="text">是否有过敏史</text>
  107. </view>
  108. <radio-group style="display: flex;align-items: center;">
  109. <label style="margin-right: 50upx;">
  110. <radio value="1" :checked="isAllergic==true" style="margin-right: 16upx;" />
  111. <text class="my-radio-text">是</text>
  112. </label>
  113. <label>
  114. <radio value="0" :checked="isAllergic==false" style="margin-right: 16upx;" />
  115. <text class="my-radio-text">否</text>
  116. </label>
  117. </radio-group>
  118. </view>
  119. <view class="check-box">
  120. <view class="left">
  121. <image src="../../static/images/yao.png" mode=""></image>
  122. <text class="text">肝功能是否异常</text>
  123. </view>
  124. <radio-group style="display: flex;align-items: center;">
  125. <label style="margin-right: 50upx;">
  126. <radio value="1" :checked="isLiver==true" style="margin-right: 16upx;" />
  127. <text class="my-radio-text">是</text>
  128. </label>
  129. <label>
  130. <radio value="0" :checked="isLiver==false" style="margin-right: 16upx;" />
  131. <text class="my-radio-text">否</text>
  132. </label>
  133. </radio-group>
  134. </view>
  135. <view class="check-box">
  136. <view class="left">
  137. <image src="../../static/images/yao.png" mode=""></image>
  138. <text class="text">肾功能是否异常</text>
  139. </view>
  140. <radio-group style="display: flex;align-items: center;">
  141. <label style="margin-right: 50upx;">
  142. <radio value="1" :checked="isRenal==true" style="margin-right: 16upx;" />
  143. <text class="my-radio-text">是</text>
  144. </label>
  145. <label>
  146. <radio value="0" :checked="isRenal==false" style="margin-right: 16upx;" />
  147. <text class="my-radio-text">否</text>
  148. </label>
  149. </radio-group>
  150. </view>
  151. <view class="check-box">
  152. <view class="left">
  153. <image src="../../static/images/yao.png" mode=""></image>
  154. <text class="text">是否是备孕/怀孕/哺乳期</text>
  155. </view>
  156. <radio-group style="display: flex;align-items: center;">
  157. <label style="margin-right: 50upx;">
  158. <radio value="1" :checked="isLactation==true" style="margin-right: 16upx;" />
  159. <text class="my-radio-text">是</text>
  160. </label>
  161. <label>
  162. <radio value="0" :checked="isLactation==false" style="margin-right: 16upx;" />
  163. <text class="my-radio-text">否</text>
  164. </label>
  165. </radio-group>
  166. </view>
  167. </view>
  168. </view>
  169. <view class="btn-box">
  170. <view class="btn" @click="submit()">去开处方</view>
  171. </view>
  172. </view>
  173. </template>
  174. <script>
  175. import {getStoreOrderById} from '@/api/storeOrder'
  176. import {getWeixinPrescribeTemps} from '@/api/common'
  177. import {doPrescribe} from '@/api/prescribe'
  178. import {getPatientList,delPatient} from '@/api/patient'
  179. export default {
  180. data() {
  181. return {
  182. statusBarHeight: uni.getStorageSync('menuInfo').statusBarHeight,
  183. order:null,
  184. temps:[],
  185. imgList: [],
  186. orderId:null,
  187. patient:[],
  188. patientId:null,
  189. pickPatient:null,
  190. // 疾病列表
  191. // diseaseList: ['消化不良','心血管','呼吸系统','感染病','皮肤病','口腔','妇科','耳鼻喉'],
  192. // 选中的疾病
  193. // activeDise: 0,
  194. isAllergic: false,
  195. isLiver: false,
  196. isRenal: false,
  197. isLactation: false,
  198. chiefComplaint:null,
  199. historyIllness:null
  200. }
  201. },
  202. onLoad(option) {
  203. this.orderId=option.orderId
  204. this.getPatientList();
  205. uni.$on('refreshPatient', () => {
  206. this.getPatientList()
  207. })
  208. this.getWeixinPrescribeTemps();
  209. this.getStoreOrderById();
  210. },
  211. onShow() {
  212. this.getPatientList();
  213. },
  214. //发送给朋友
  215. onShareAppMessage(res) {
  216. if(this.utils.isLogin()){
  217. var user=JSON.parse(uni.getStorageSync('userInfo'))
  218. return {
  219. title: "填写处方信息",
  220. path: "/pages/shopping/prescribe?orderId="+this.orderId,
  221. imageUrl: 'https://hos-1309931967.cos.ap-chongqing.myqcloud.com/fs/20241018/b810f26926904253ae46ea4e93b71dee.png' //分享图标,路径可以是本地文件路径、代码包文件路径或者网络图片路径.支持PNG及JPG。显示图片长宽比是 5:4
  222. }
  223. }
  224. },
  225. methods: {
  226. back(){
  227. // uni.showToast({
  228. // icon:'none',
  229. // title: "请填写资料提交处方,否则将无法发货"
  230. // });
  231. uni.navigateBack();
  232. },
  233. getStoreOrderById:function(){
  234. var data={orderId:this.orderId}
  235. getStoreOrderById(data).then(
  236. res => {
  237. if(res.code==200){
  238. this.order=res.order
  239. }else{
  240. }
  241. },
  242. rej => {}
  243. );
  244. },
  245. getWeixinPrescribeTemps:function(){
  246. getWeixinPrescribeTemps().then(
  247. res => {
  248. if(res.code==200){
  249. this.temps=res.temp
  250. console.log(this.temps)
  251. }else{
  252. }
  253. },
  254. rej => {}
  255. );
  256. },
  257. chiefComplaintInput(e) {
  258. this.chiefComplaint = e.detail.value
  259. },
  260. historyIllnessInput(e) {
  261. this.historyIllness = e.detail.value
  262. },
  263. // 选择图片
  264. chooseImage(type) {
  265. var that=this;
  266. uni.chooseImage({
  267. count: 4, //默认9
  268. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  269. sourceType: ['album', 'camera'], //从相册选择
  270. success: (res) => {
  271. uni.uploadFile({
  272. url: uni.getStorageSync('requestPath')+'/app/common/uploadOSS', //仅为示例,非真实的接口地址
  273. filePath: res.tempFilePaths[0],
  274. name: 'file',
  275. success: (res) => {
  276. that.imgList.push(JSON.parse( res.data).url)
  277. }
  278. });
  279. }
  280. });
  281. },
  282. //图片预览
  283. previewImage(index){
  284. //预览图片
  285. uni.previewImage({
  286. urls: this.imgList,
  287. current: this.imgList[index]
  288. });
  289. },
  290. delImg(index) {
  291. uni.showModal({
  292. title: '提示',
  293. content: '确定要删除这张图片吗?',
  294. cancelText: '取消',
  295. confirmText: '确定',
  296. success: res => {
  297. if (res.confirm) {
  298. this.imgList.splice(index, 1);
  299. }
  300. }
  301. })
  302. },
  303. submit(){
  304. var that=this;
  305. if(this.patientId==null){
  306. uni.showToast({
  307. icon:'none',
  308. title: "请选择患者"
  309. });
  310. return;
  311. }
  312. if(this.pickPatient.isAuth==0){
  313. uni.showToast({
  314. icon:'none',
  315. title: "该问诊人未实名认证"
  316. });
  317. return;
  318. }
  319. uni.showLoading({
  320. title:"正在处理中"
  321. })
  322. var data={
  323. patientId:this.patientId,
  324. orderId:this.orderId,
  325. isAllergic:this.isAllergic,
  326. isLiver:this.isLiver,
  327. isRenal:this.isRenal,
  328. isLactation:this.isLactation,
  329. chiefComplaint:this.chiefComplaint,
  330. historyIllness:this.historyIllness,
  331. recordPic:this.imgList.toString()
  332. }
  333. doPrescribe(data).then(
  334. res => {
  335. if(res.code==200){
  336. uni.hideLoading()
  337. uni.showToast({
  338. icon:'success',
  339. title:res.msg,
  340. });
  341. var order =res.order;
  342. // #ifdef MP-WEIXIN
  343. uni.requestSubscribeMessage({
  344. tmplIds: this.temps,
  345. success(res) {
  346. this.goPage(order)
  347. },
  348. fail(res) {
  349. this.goPage(order)
  350. }
  351. })
  352. // #endif
  353. // #ifndef MP-WEIXIN
  354. this.goPage(order)
  355. // #endif
  356. }else{
  357. uni.showToast({
  358. icon:'none',
  359. title: res.msg,
  360. });
  361. }
  362. },
  363. rej => {}
  364. );
  365. },
  366. goPage(order) {
  367. setTimeout(function(){
  368. if(order.paid!=1){
  369. uni.redirectTo({
  370. url: './paymentOrder?orderId='+that.order.id
  371. })
  372. }
  373. else{
  374. uni.navigateBack({
  375. delta: 1
  376. });
  377. }
  378. },500);
  379. },
  380. getPatientList(){
  381. uni.showLoading({
  382. title:"正在加载中"
  383. })
  384. getPatientList().then(
  385. res => {
  386. uni.hideLoading()
  387. if(res.code==200){
  388. this.patient=res.data;
  389. }else{
  390. uni.showToast({
  391. icon:'none',
  392. title: "请求失败",
  393. });
  394. }
  395. },
  396. rej => {}
  397. );
  398. },
  399. // 选中问诊人
  400. chosePatient(item) {
  401. this.patientId = item.patientId;
  402. this.pickPatient=item;
  403. },
  404. // 添加问诊人
  405. addPeople() {
  406. uni.navigateTo({
  407. url:"/pages_user/user/patient"
  408. })
  409. },
  410. // 疾病选择
  411. choseDise(index) {
  412. this.activeDise = index
  413. }
  414. }
  415. }
  416. </script>
  417. <style lang="scss">
  418. .content{
  419. height: 100%;
  420. display: flex;
  421. flex-direction: column;
  422. justify-content: space-between;
  423. .fixed-top-box{
  424. width: 100%;
  425. background: linear-gradient(135deg, #38e663 0%, #018C39 100%);
  426. position: fixed;
  427. top: 0;
  428. left: 0;
  429. z-index: 1000;
  430. .back-box{
  431. height: 88upx;
  432. padding-left: 22upx;
  433. display: flex;
  434. align-items: center;
  435. justify-content: space-between;
  436. padding: 0 20upx;
  437. image{
  438. width: 40upx;
  439. height: 40upx;
  440. }
  441. .title{
  442. font-size: 36upx;
  443. font-family: PingFang SC;
  444. font-weight: 500;
  445. color: #FFFFFF;
  446. }
  447. }
  448. }
  449. .inner{
  450. margin-top: 88rpx;
  451. .steps-box{
  452. height: 88upx;
  453. background: #FFFFFF;
  454. padding: 0 48upx;
  455. display: flex;
  456. align-items: center;
  457. justify-content: space-between;
  458. .item{
  459. font-size: 28upx;
  460. font-family: PingFang SC;
  461. font-weight: 500;
  462. color: #666666;
  463. &.active{
  464. font-weight: bold;
  465. color: #018C39;
  466. }
  467. }
  468. .arrow{
  469. width: 12upx;
  470. height: 22upx;
  471. }
  472. }
  473. .tip-box{
  474. box-sizing: border-box;
  475. height: 130upx;
  476. background: #FFF4E6;
  477. padding: 26upx 0 30upx 50upx;
  478. display: flex;
  479. flex-direction: column;
  480. justify-content: space-between;
  481. .top{
  482. display: flex;
  483. align-items: center;
  484. image{
  485. width: 26upx;
  486. height: 31upx;
  487. margin-right: 10upx;
  488. }
  489. .text{
  490. font-size: 28upx;
  491. font-family: PingFang SC;
  492. font-weight: 500;
  493. color: #EF8A07;
  494. line-height: 1;
  495. }
  496. }
  497. .time-tip{
  498. padding-left: 40upx;
  499. font-size: 24upx;
  500. font-family: PingFang SC;
  501. font-weight: 500;
  502. color: #999999;
  503. line-height: 1;
  504. }
  505. }
  506. .info-box{
  507. padding: 20upx;
  508. .chose-people{
  509. box-sizing: border-box;
  510. background: #FFFFFF;
  511. border-radius: 16upx;
  512. padding: 40upx 30upx 30upx;
  513. .title-box{
  514. display: flex;
  515. align-items: center;
  516. justify-content: space-between;
  517. .title{
  518. font-size: 32upx;
  519. font-family: PingFang SC;
  520. font-weight: bold;
  521. color: #111111;
  522. }
  523. .add-box{
  524. display: flex;
  525. align-items: center;
  526. image{
  527. width: 26upx;
  528. height: 26upx;
  529. margin-right: 11upx;
  530. }
  531. text{
  532. font-size: 28upx;
  533. font-family: PingFang SC;
  534. font-weight: 500;
  535. color: #111111;
  536. }
  537. }
  538. }
  539. .peop-list{
  540. display: flex;
  541. flex-wrap: wrap;
  542. margin-top: 30upx;
  543. .item{
  544. box-sizing: border-box;
  545. padding: 18upx 30upx;
  546. width: 31.28%;
  547. height: 110upx;
  548. background: #F7F7F7;
  549. border-radius: 16upx;
  550. margin: 0 20upx 10upx 0;
  551. border: 2upx solid #F7F7F7;
  552. display: flex;
  553. flex-direction: column;
  554. justify-content: space-between;
  555. &:nth-child(3n){
  556. margin-right: 0;
  557. }
  558. &.active{
  559. background: rgba(230, 250, 247, 0);
  560. border: 2upx solid #018C39;
  561. position: relative;
  562. }
  563. .active-img{
  564. width: 50upx;
  565. height: 50upx;
  566. position: absolute;
  567. right: -2upx;
  568. bottom: -2upx;
  569. }
  570. .name{
  571. font-size: 30upx;
  572. line-height: 1;
  573. font-family: PingFang SC;
  574. font-weight: bold;
  575. color: #111111;
  576. }
  577. .info{
  578. display: flex;
  579. align-items: center;
  580. .sex,
  581. .ege{
  582. font-size: 26upx;
  583. font-family: PingFang SC;
  584. line-height: 1;
  585. font-weight: 500;
  586. color: #666666;
  587. }
  588. .ege{
  589. margin-left: 19upx;
  590. }
  591. }
  592. }
  593. }
  594. }
  595. .disease-select{
  596. box-sizing: border-box;
  597. min-height: 286upx;
  598. background: #FFFFFF;
  599. border-radius: 16upx;
  600. padding: 40upx 30upx 22upx;
  601. margin-top: 20upx;
  602. .title{
  603. display: flex;
  604. align-items: center;
  605. align-items: flex-end;
  606. .black{
  607. font-size: 32upx;
  608. font-family: PingFang SC;
  609. font-weight: bold;
  610. color: #111111;
  611. line-height: 1;
  612. margin-left: 10upx;
  613. }
  614. .gray{
  615. font-size: 28upx;
  616. font-family: PingFang SC;
  617. color: #999999;
  618. line-height: 1;
  619. margin-left: 10upx;
  620. }
  621. }
  622. .dise-list{
  623. display: flex;
  624. flex-wrap: wrap;
  625. margin-top: 26upx;
  626. .item{
  627. box-sizing: border-box;
  628. height: 64upx;
  629. line-height: 64upx;
  630. font-size: 28upx;
  631. font-family: PingFang SC;
  632. font-weight: 500;
  633. color: #018C39;
  634. background: #F5FFFE;
  635. border: 1px solid #8AD5CE;
  636. padding: 0 20upx;
  637. border-radius: 32upx;
  638. margin: 0 20upx 20upx 0;
  639. &.active{
  640. background: #018C39;
  641. border: 1px solid #018C39;
  642. color: #FFFFFF;
  643. }
  644. }
  645. }
  646. }
  647. .text-content{
  648. box-sizing: border-box;
  649. min-height: 286upx;
  650. background: #FFFFFF;
  651. border-radius: 16upx;
  652. padding: 40upx 30upx 22upx;
  653. margin-top: 20upx;
  654. .title{
  655. display: flex;
  656. align-items: center;
  657. align-items: flex-end;
  658. .black{
  659. font-size: 32upx;
  660. font-family: PingFang SC;
  661. font-weight: bold;
  662. color: #111111;
  663. line-height: 1;
  664. margin-left: 10upx;
  665. }
  666. .gray{
  667. font-size: 28upx;
  668. font-family: PingFang SC;
  669. color: #999999;
  670. line-height: 1;
  671. margin-left: 10upx;
  672. }
  673. }
  674. .textArea{
  675. margin: 30rpx 0rpx 0rpx 0rpx;
  676. width: 100%;
  677. }
  678. }
  679. .img-content{
  680. box-sizing: border-box;
  681. min-height: 286upx;
  682. background: #FFFFFF;
  683. border-radius: 16upx;
  684. padding: 40upx 30upx 22upx;
  685. margin-top: 20upx;
  686. margin-bottom: 20upx;
  687. .title{
  688. display: flex;
  689. align-items: center;
  690. align-items: flex-end;
  691. .black{
  692. font-size: 32upx;
  693. font-family: PingFang SC;
  694. font-weight: bold;
  695. color: #111111;
  696. line-height: 1;
  697. margin-left: 10upx;
  698. }
  699. .gray{
  700. font-size: 28upx;
  701. font-family: PingFang SC;
  702. color: #999999;
  703. line-height: 1;
  704. margin-left: 10upx;
  705. }
  706. }
  707. .textArea{
  708. margin: 30rpx 0rpx 0rpx 0rpx;
  709. width: 100%;
  710. }
  711. .upload-img{
  712. margin: 30rpx 0rpx 0rpx 0rpx;
  713. width: 100%;
  714. display: flex;
  715. align-items: flex-start;
  716. .img{
  717. margin-right: 10rpx;
  718. width: 100rpx;
  719. height: 100rpx;
  720. position: relative;
  721. image{
  722. width: 100%;
  723. height: 100%;
  724. }
  725. .del{
  726. right:0rpx;
  727. top:0rpx;
  728. position: absolute;
  729. image{
  730. width: 30rpx;
  731. height:30rpx;
  732. }
  733. }
  734. }
  735. .chose-img{
  736. border-radius: 5rpx;
  737. border: 1px solid #eee;
  738. padding: 5rpx;
  739. display: flex;
  740. align-items: center;
  741. justify-content: center;
  742. width: 100rpx;
  743. height: 100rpx;
  744. image{
  745. width: 50rpx;
  746. height: 50rpx;
  747. }
  748. }
  749. }
  750. }
  751. .check-box{
  752. height: 88upx;
  753. background: #FFFFFF;
  754. border-radius: 16upx;
  755. padding: 0 30upx;
  756. display: flex;
  757. align-items: center;
  758. justify-content: space-between;
  759. .left{
  760. display: flex;
  761. align-items: center;
  762. image{
  763. width: 21upx;
  764. height: 27upx;
  765. margin-right: 20upx;
  766. }
  767. .text{
  768. font-size: 32upx;
  769. font-family: PingFang SC;
  770. font-weight: 500;
  771. color: #666666;
  772. }
  773. }
  774. .my-radio-text{
  775. font-size: 30upx;
  776. font-family: PingFang SC;
  777. font-weight: 500;
  778. color: #111111;
  779. line-height: 30upx;
  780. }
  781. }
  782. }
  783. }
  784. .btn-box{
  785. height: 120upx;
  786. padding: 30upx;
  787. // background: #FFFFFF;
  788. display: flex;
  789. align-items: center;
  790. justify-content: center;
  791. .btn{
  792. width: 100%;
  793. height: 88upx;
  794. line-height: 88upx;
  795. font-size: 30upx;
  796. font-family: PingFang SC;
  797. font-weight: bold;
  798. color: #FFFFFF;
  799. text-align: center;
  800. background: #018C39;
  801. border-radius: 44upx;
  802. }
  803. }
  804. }
  805. </style>