index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864
  1. <template>
  2. <view class="container">
  3. <view class="top-box">
  4. <view class="input-item">
  5. <image class="icon" src="@/static/image/search.png" mode=""></image>
  6. <input class="" placeholder="请输入讲者姓名" placeholder-class="placeholder" />
  7. </view>
  8. <view class="filter-item" @click="showFilter = true">
  9. <image class="w32 h32 mr4" src="@/static/image/icon_select.png" mode=""></image>
  10. <text>筛选</text>
  11. </view>
  12. </view>
  13. <!-- 筛选标签栏 -->
  14. <view class="filter-bar">
  15. <view class="filter-tabs">
  16. <view class="tab-item" :class="{ active: currentTab === item.value }" v-for="(item, index) in tabs"
  17. :key="index" @click="switchTab(item.value)">
  18. {{ item.label }}
  19. </view>
  20. </view>
  21. <view class="filter-divider"></view>
  22. <view class="filter-btn">
  23. <text>全员</text>
  24. <image class="w32 h32" src="@/static/image/icon_select.png" mode=""></image>
  25. </view>
  26. </view>
  27. <!-- 任务列表 -->
  28. <scroll-view class="content" scroll-y>
  29. <view class="task-card" v-for="(item, index) in taskList" :key="index" @click="showDetail(item)">
  30. <view class="card-header">
  31. <view class="card-title">
  32. <text>{{ item.title }}</text>
  33. <text class="title-little">{{item.titleLittle}}</text>
  34. <view class="lable">一级</view>
  35. </view>
  36. <view class="status-tag" :class="item.status">
  37. {{ item.statusText }}
  38. </view>
  39. </view>
  40. <view class="row">
  41. <image class="icon" src="@/static/image/icon_select.png" mode=""></image>
  42. <text>湖南省人民医院</text>
  43. <view class="line"></view>
  44. <text>口腔科</text>
  45. </view>
  46. <view class="row">
  47. <image class="icon" src="/static/image/icon_select.png" mode=""></image>
  48. <text class="txt">小蜜蜂:张萌(302、403)、王欣欣(3...小蜜蜂:张萌(302、403)、王欣欣</text>
  49. <image class="icon" src="/static/image/icon_expand.png" mode=""></image>
  50. </view>
  51. <view class="card-warning" v-if="item.warning">
  52. <text class="warning-icon">⚠</text>
  53. <text>{{ item.warning }}</text>
  54. </view>
  55. <view class="card-rejection" v-if="item.rejectionReason">
  56. <image class="w28 h28 mr8" src="@/static/image/icon_wrong.png" mode=""></image>
  57. <text>驳回原因: {{ item.rejectionReason }}</text>
  58. </view>
  59. <view class="card-tags">
  60. <view class="tag-item points-tag" @click.stop="showCorrelation=true">
  61. 默认产品组:五级
  62. </view>
  63. </view>
  64. <view class="apply-button">定级申请</view>
  65. </view>
  66. </scroll-view>
  67. <!-- 身份筛选 -->
  68. <view class="filter-popup" v-if="showFilter" @click="closeFilter">
  69. <view class="filter-content" @click.stop>
  70. <view class="filter-header">
  71. <view class="filter-title">筛选</view>
  72. <image class="filter-close-btn" src="@/static/image/icon_close.png" @click="closeFilter" mode="">
  73. </image>
  74. </view>
  75. <!-- 身份筛选 -->
  76. <view class="filter-group">
  77. <view class="group-label">账号身份</view>
  78. <view class="tabs-container">
  79. <view v-for="(tab, index) in statusTabs" :key="index"
  80. :class="['tab-item', activeTab === tab.value ? 'active' : '']"
  81. @click="switchFilterTab(tab.value)">
  82. <text class="tab-text">{{ tab.label }}</text>
  83. <text v-if="tab.count" class="tab-count">{{ tab.count }}</text>
  84. </view>
  85. </view>
  86. </view>
  87. <!-- 操作按钮 -->
  88. <view class="filter-actions">
  89. <view class="reset-btn" @click="resetFilters">重置</view>
  90. <view class="confirm-btn" @click="confirmFilters">确定</view>
  91. </view>
  92. </view>
  93. </view>
  94. <!-- 关联产品 -->
  95. <view class="filter-popup" v-if="showCorrelation" @click="showCorrelation = false">
  96. <view class="filter-content correlation-content" @click.stop>
  97. <view class="filter-header">
  98. <view class="filter-title">关联产品</view>
  99. <image class="filter-close-btn" src="@/static/image/icon_close.png" @click="showCorrelation = false"
  100. mode="">
  101. </image>
  102. </view>
  103. <!-- 注意:这里移出了 filter-header -->
  104. <view class="popup-content">
  105. <view class="head-item item">
  106. <view class="left">小蜜蜂</view>
  107. <view class="right">关联产品</view>
  108. </view>
  109. <view class="item" v-for="(row, index) in productData" :key="index">
  110. <view class="left">{{ row.assistant }}</view>
  111. <view class="right">
  112. <text v-for="(product, idx) in row.products" :key="idx" class="product-tag">
  113. {{ product }}<span v-if="idx < row.products.length - 1">、</span>
  114. </text>
  115. </view>
  116. </view>
  117. </view>
  118. </view>
  119. </view>
  120. <Server />
  121. </view>
  122. </template>
  123. <script>
  124. import Server from '@/components/Server.vue'
  125. import {
  126. getAirClassroomList
  127. } from '@/api-js/airClassroom'
  128. export default {
  129. components: {
  130. Server
  131. },
  132. data() {
  133. return {
  134. productData: [{
  135. assistant: '王小明',
  136. products: ['302', '403', '202', '301']
  137. },
  138. {
  139. assistant: '李洋',
  140. products: ['301']
  141. }
  142. ],
  143. showCorrelation: false, //显示关联产品弹窗
  144. activeTab: '',
  145. // 状态标签
  146. statusTabs: [{
  147. label: '医生/药剂师',
  148. value: 0
  149. },
  150. {
  151. label: '护士',
  152. value: 1
  153. },
  154. {
  155. label: '店员',
  156. value: 2
  157. },
  158. {
  159. label: '经济学家',
  160. value: 3
  161. },
  162. {
  163. label: '其他',
  164. value: 4
  165. }
  166. ],
  167. statusBarHeight: uni.getSystemInfoSync().statusBarHeight + 'px',
  168. currentTab: 0,
  169. showFilter: false,
  170. dateRange: {
  171. startDate: '',
  172. endDate: ''
  173. },
  174. tempDateRange: {
  175. startDate: '',
  176. endDate: ''
  177. },
  178. tabs: [{
  179. label: '全部',
  180. value: 'all'
  181. },
  182. {
  183. label: '待审核',
  184. value: 'reviewing'
  185. },
  186. {
  187. label: '已通过',
  188. value: 'approved'
  189. },
  190. {
  191. label: '已驳回',
  192. value: 'rejected'
  193. }
  194. ],
  195. taskList: []
  196. }
  197. },
  198. watch: {
  199. showFilter(newVal) {
  200. if (newVal) {
  201. // 打开弹窗时,同步临时日期范围为当前日期范围
  202. this.tempDateRange = {
  203. startDate: this.dateRange.startDate,
  204. endDate: this.dateRange.endDate
  205. }
  206. }
  207. }
  208. },
  209. onLoad() {
  210. this.loadData()
  211. },
  212. onReachBottom() {
  213. this.loadMore()
  214. },
  215. methods: {
  216. goBack() {
  217. uni.navigateBack()
  218. },
  219. switchTab(value) {
  220. this.currentTab = value
  221. this.loadData()
  222. },
  223. // 弹窗筛选栏切换
  224. switchFilterTab(value) {
  225. this.activeTab = value
  226. },
  227. closeFilter() {
  228. // 关闭弹窗时,恢复临时日期范围为当前日期范围
  229. this.tempDateRange = {
  230. startDate: this.dateRange.startDate,
  231. endDate: this.dateRange.endDate
  232. }
  233. this.showFilter = false
  234. },
  235. onStartDateChange(e) {
  236. this.tempDateRange.startDate = e.detail.value
  237. },
  238. onEndDateChange(e) {
  239. this.tempDateRange.endDate = e.detail.value
  240. },
  241. resetFilters() {
  242. this.activeTab = '';
  243. },
  244. confirmFilters() {
  245. // 验证日期范围
  246. if (this.tempDateRange.startDate && this.tempDateRange.endDate) {
  247. if (new Date(this.tempDateRange.startDate) > new Date(this.tempDateRange.endDate)) {
  248. uni.showToast({
  249. icon: 'none',
  250. title: '开始时间不能大于结束时间'
  251. })
  252. return
  253. }
  254. }
  255. this.dateRange = {
  256. startDate: this.tempDateRange.startDate,
  257. endDate: this.tempDateRange.endDate
  258. }
  259. this.showFilter = false
  260. this.loadData()
  261. },
  262. goComplete(item) {
  263. uni.navigateTo({
  264. url: `/pages_task/completeTask?id=${item.id}`
  265. })
  266. },
  267. goEdit(item) {
  268. uni.navigateTo({
  269. url: `/pages_task/completeTask?id=${item.id}&edit=true`
  270. })
  271. },
  272. // 查看详情
  273. showDetail(item) {
  274. uni.navigateTo({
  275. url: `/pages_task/taskDetail?id=${item.id}`
  276. })
  277. },
  278. async loadData() {
  279. try {
  280. uni.showLoading({
  281. title: '加载中...'
  282. })
  283. const res = await getAirClassroomList({
  284. status: this.currentTab,
  285. startDate: this.dateRange.startDate,
  286. endDate: this.dateRange.endDate,
  287. page: 1,
  288. pageSize: 20
  289. })
  290. uni.hideLoading()
  291. if (res.code === 200 && res.data) {
  292. this.taskList = res.data.list || this.getDefaultData()
  293. } else {
  294. this.taskList = this.getDefaultData()
  295. }
  296. } catch (e) {
  297. uni.hideLoading()
  298. console.error('加载数据失败', e)
  299. this.taskList = this.getDefaultData()
  300. }
  301. },
  302. async loadMore() {
  303. // 加载更多数据
  304. },
  305. getDefaultData() {
  306. return [{
  307. id: 1,
  308. title: '王小明',
  309. titleLittle: '主治医师',
  310. videoType: '长视频',
  311. category: '学术',
  312. points: '10',
  313. count: '1',
  314. startTime: '2025-9-20 13:55',
  315. endTime: '2025-9-20 13:55',
  316. createTime: '2025-9-20 13:55',
  317. status: 'approved',
  318. statusText: '已通过'
  319. },
  320. {
  321. id: 2,
  322. title: '王小明',
  323. titleLittle: '主治医师',
  324. videoType: '长视频',
  325. category: '学术',
  326. points: '10',
  327. count: '1',
  328. startTime: '2025-9-20 13:55',
  329. endTime: '2025-9-20 13:55',
  330. createTime: '2025-9-20 13:55',
  331. status: 'approved',
  332. statusText: '已通过',
  333. warning: '有效观看不足5人'
  334. },
  335. {
  336. id: 3,
  337. title: '王小明',
  338. titleLittle: '主治医师',
  339. videoType: '短视频',
  340. category: '学术',
  341. points: '10',
  342. count: '1',
  343. startTime: '2025-9-20 13:55',
  344. endTime: '2025-9-20 13:55',
  345. createTime: '2025-9-20 13:55',
  346. status: 'approved',
  347. statusText: '待审核'
  348. },
  349. {
  350. id: 4,
  351. title: '王小明',
  352. titleLittle: '主治医师',
  353. videoType: '文章',
  354. category: '学术',
  355. points: '10',
  356. count: '1',
  357. startTime: '2025-9-20 13:55',
  358. endTime: '2025-9-20 13:55',
  359. createTime: '2025-9-20 13:55',
  360. status: 'rejected',
  361. statusText: '已驳回',
  362. rejectionReason: '医师资质不够'
  363. },
  364. {
  365. id: 5,
  366. title: '王小明',
  367. titleLittle: '主治医师',
  368. videoType: '长视频',
  369. category: '学术',
  370. points: '10',
  371. count: '1',
  372. startTime: '2025-9-20 13:55',
  373. endTime: '2025-9-20 13:55',
  374. createTime: '2025-9-20 13:55',
  375. status: 'approved',
  376. statusText: '已通过'
  377. }
  378. ]
  379. }
  380. }
  381. }
  382. </script>
  383. <style lang="stylus">
  384. .placeholder {
  385. color: #C8C9CC !important;
  386. font-size: 28rpx;
  387. color: #C8C9CC;
  388. }
  389. </style>
  390. <style lang="scss" scoped>
  391. .container {
  392. min-height: 100vh;
  393. background: #f5f5f5;
  394. display: flex;
  395. flex-direction: column;
  396. .top-box {
  397. padding: 16rpx 32rpx;
  398. display: flex;
  399. align-items: center;
  400. background: #ffffff;
  401. .input-item {
  402. display: flex;
  403. align-items: center;
  404. flex: 1;
  405. height: 72rpx;
  406. background: #F7F8FA;
  407. border-radius: 38rpx 38rpx 38rpx 38rpx;
  408. .icon {
  409. width: 26rpx;
  410. height: 26rpx;
  411. margin: 0 10rpx 0 28rpx;
  412. }
  413. }
  414. .filter-item {
  415. margin-left: 24rpx;
  416. display: flex;
  417. align-items: center;
  418. font-size: 28rpx;
  419. color: #999999;
  420. }
  421. }
  422. }
  423. .status-bar {
  424. width: 100%;
  425. background: #fff;
  426. }
  427. .header {
  428. position: relative;
  429. height: 88rpx;
  430. display: flex;
  431. align-items: center;
  432. justify-content: center;
  433. background: #fff;
  434. border-bottom: 1rpx solid #f0f0f0;
  435. .back-btn {
  436. position: absolute;
  437. left: 24rpx;
  438. width: 40rpx;
  439. height: 40rpx;
  440. image {
  441. width: 100%;
  442. height: 100%;
  443. }
  444. }
  445. .title {
  446. font-size: 36rpx;
  447. font-weight: bold;
  448. color: #333;
  449. }
  450. .header-right {
  451. position: absolute;
  452. right: 24rpx;
  453. display: flex;
  454. align-items: center;
  455. gap: 16rpx;
  456. .more-icon {
  457. font-size: 32rpx;
  458. color: #333;
  459. }
  460. }
  461. }
  462. .filter-bar {
  463. display: flex;
  464. align-items: center;
  465. background: #fff;
  466. padding: 0 40rpx;
  467. .filter-tabs {
  468. flex: 1;
  469. display: flex;
  470. align-items: center;
  471. gap: 64rpx;
  472. overflow-x: auto;
  473. .tab-item {
  474. padding: 24rpx 0;
  475. font-size: 28rpx;
  476. color: #999999;
  477. white-space: nowrap;
  478. position: relative;
  479. &.active {
  480. color: #333333;
  481. font-weight: 500;
  482. &::after {
  483. content: '';
  484. position: absolute;
  485. bottom: 0;
  486. left: 0;
  487. right: 0;
  488. height: 6rpx;
  489. background: #388BFF;
  490. border-radius: 3rpx 3rpx 3rpx 3rpx;
  491. }
  492. }
  493. }
  494. }
  495. .filter-divider {
  496. width: 1rpx;
  497. height: 40rpx;
  498. background: #e0e0e0;
  499. margin: 0 16rpx;
  500. }
  501. .filter-btn {
  502. display: flex;
  503. align-items: center;
  504. padding: 24rpx 0;
  505. font-size: 28rpx;
  506. color: #666666;
  507. .filter-icon {
  508. font-size: 32rpx;
  509. color: #333;
  510. }
  511. }
  512. }
  513. .content {
  514. flex: 1;
  515. padding: 24rpx;
  516. box-sizing: border-box;
  517. }
  518. .task-card {
  519. background: #fff;
  520. border-radius: 16rpx;
  521. padding: 24rpx;
  522. margin-bottom: 24rpx;
  523. .card-header {
  524. display: flex;
  525. align-items: flex-start;
  526. justify-content: space-between;
  527. margin-bottom: 16rpx;
  528. .card-title {
  529. flex: 1;
  530. font-size: 32rpx;
  531. font-weight: 600;
  532. color: #333;
  533. display: flex;
  534. align-items: center;
  535. .title-little {
  536. font-size: 24rpx;
  537. color: #666666;
  538. margin-left: 36rpx;
  539. }
  540. .lable {
  541. margin-left: 16rpx;
  542. padding: 2rpx 12rpx;
  543. font-weight: 500;
  544. font-size: 22rpx;
  545. color: #C89743;
  546. background: #FFF6E5;
  547. border-radius: 8rpx 8rpx 8rpx 8rpx;
  548. }
  549. }
  550. .status-tag {
  551. padding: 8rpx 16rpx;
  552. border-radius: 20rpx;
  553. font-size: 24rpx;
  554. // &.pending {
  555. // background: #E3F2FD;
  556. // color: #2196F3;
  557. // }
  558. &.reviewing {
  559. background: #FFFBEA;
  560. color: #FAAB0C;
  561. }
  562. &.approved {
  563. background: #E6FAEF;
  564. color: #07C160;
  565. }
  566. &.rejected {
  567. background: #FFF4F5;
  568. color: #CF3546;
  569. }
  570. }
  571. }
  572. .card-tags {
  573. display: flex;
  574. align-items: center;
  575. flex-wrap: wrap;
  576. gap: 12rpx;
  577. margin-top: 20rpx;
  578. .tag-item {
  579. padding: 8rpx 16rpx;
  580. background: #FFFAF4;
  581. border-radius: 8rpx;
  582. font-size: 24rpx;
  583. color: #5D410F;
  584. display: flex;
  585. align-items: center;
  586. &.points-tag {
  587. color: #388BFF;
  588. background: transparent;
  589. border-radius: 8rpx 8rpx 8rpx 8rpx;
  590. border: 2rpx solid rgba(56, 139, 255, 0.4);
  591. }
  592. }
  593. }
  594. .row {
  595. display: flex;
  596. align-items: center;
  597. margin-bottom: 20rpx;
  598. font-size: 28rpx;
  599. color: #666666;
  600. .icon {
  601. width: 32rpx;
  602. height: 32rpx;
  603. margin-right: 16rpx;
  604. }
  605. .line {
  606. width: 2rpx;
  607. height: 28rpx;
  608. background: #EAEBEE;
  609. border-radius: 0rpx 0rpx 0rpx 0rpx;
  610. margin: 0 24rpx;
  611. }
  612. .txt {
  613. flex: 1;
  614. overflow: hidden;
  615. white-space: nowrap;
  616. text-overflow: ellipsis;
  617. }
  618. }
  619. .apply-button {
  620. padding: 12rpx 40rpx;
  621. font-weight: 500;
  622. font-size: 28rpx;
  623. color: #FFFFFF;
  624. background: #388BFF;
  625. border-radius: 34rpx 34rpx 34rpx 34rpx;
  626. width: fit-content;
  627. margin-left: auto;
  628. }
  629. .card-warning {
  630. display: flex;
  631. align-items: center;
  632. gap: 8rpx;
  633. padding: 12rpx;
  634. background: #FFF3E0;
  635. border-radius: 8rpx;
  636. margin-bottom: 16rpx;
  637. font-size: 26rpx;
  638. color: #FF9800;
  639. .warning-icon {
  640. font-size: 28rpx;
  641. }
  642. }
  643. .card-rejection {
  644. display: flex;
  645. align-items: center;
  646. gap: 8rpx;
  647. padding: 10rpx 20rpx;
  648. background: #FFF4F5;
  649. border-radius: 8rpx;
  650. margin-bottom: 16rpx;
  651. font-size: 26rpx;
  652. color: #F44336;
  653. .rejection-icon {
  654. font-size: 28rpx;
  655. }
  656. }
  657. }
  658. .filter-popup {
  659. position: fixed;
  660. top: 0;
  661. left: 0;
  662. right: 0;
  663. bottom: 0;
  664. background: rgba(0, 0, 0, 0.5);
  665. z-index: 999;
  666. display: flex;
  667. align-items: flex-end;
  668. }
  669. .filter-content {
  670. width: 100%;
  671. background: #fff;
  672. border-radius: 24rpx 24rpx 0 0;
  673. padding: 32rpx;
  674. display: flex;
  675. flex-direction: column;
  676. max-height: 80vh;
  677. .popup-content {
  678. .item {
  679. height: 88rpx;
  680. display: flex;
  681. align-items: center;
  682. font-weight: 400;
  683. font-size: 28rpx;
  684. color: #333333;
  685. padding-left: 32rpx;
  686. }
  687. .head-item {
  688. font-weight: 600;
  689. color: #666666;
  690. }
  691. .left {
  692. width: 20%;
  693. }
  694. .right {
  695. flex: 1;
  696. }
  697. }
  698. /* 限制最大高度 */
  699. .filter-header {
  700. display: flex;
  701. align-items: center;
  702. justify-content: center;
  703. margin-bottom: 32rpx;
  704. position: relative;
  705. flex-shrink: 0;
  706. /* 防止标题区域被压缩 */
  707. .filter-title {
  708. font-size: 32rpx;
  709. font-weight: bold;
  710. color: #333;
  711. text-align: center;
  712. }
  713. .filter-close-btn {
  714. position: absolute;
  715. right: 0;
  716. width: 44rpx;
  717. height: 44rpx;
  718. }
  719. }
  720. .filter-group {
  721. margin-bottom: 32rpx;
  722. .group-label {
  723. font-size: 28rpx;
  724. font-weight: bold;
  725. color: #333;
  726. margin-bottom: 20rpx;
  727. }
  728. .tabs-container {
  729. display: inline-flex;
  730. align-items: center;
  731. gap: 32rpx;
  732. flex-wrap: wrap;
  733. .tab-item {
  734. display: flex;
  735. align-items: center;
  736. gap: 8rpx;
  737. padding: 12rpx 0;
  738. position: relative;
  739. .tab-text {
  740. font-size: 28rpx;
  741. color: #666666;
  742. }
  743. .tab-count {
  744. font-size: 24rpx;
  745. color: #999999;
  746. background: #f5f6fa;
  747. padding: 2rpx 8rpx;
  748. border-radius: 12rpx;
  749. min-width: 32rpx;
  750. text-align: center;
  751. border: 2rpx solid transparent;
  752. }
  753. &.active {
  754. color: #333333;
  755. background: rgba(56, 139, 255, 0.15);
  756. border-radius: 70rpx 70rpx 70rpx 70rpx;
  757. border: 2rpx solid #388BFF;
  758. padding: 14rpx 32rpx;
  759. }
  760. }
  761. }
  762. }
  763. .filter-actions {
  764. display: flex;
  765. gap: 24rpx;
  766. margin-top: 40rpx;
  767. padding-top: 24rpx;
  768. flex-shrink: 0;
  769. .reset-btn,
  770. .confirm-btn {
  771. flex: 1;
  772. height: 80rpx;
  773. line-height: 80rpx;
  774. text-align: center;
  775. border-radius: 200rpx 200rpx 200rpx 200rpx;
  776. font-size: 28rpx;
  777. }
  778. .reset-btn {
  779. background: #fff;
  780. color: #388BFF;
  781. border: 2rpx solid #388BFF;
  782. }
  783. .confirm-btn {
  784. background: #388BFF;
  785. color: #fff;
  786. }
  787. }
  788. }
  789. </style>