relation-visitor-list.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. <template>
  2. <view class="container product clearfix">
  3. <view class="container-fiexd-top">
  4. <view class="club-search clearfix">
  5. <view class="search-from name">
  6. <text class="iconfont icon-iconfonticonfontsousuo1"></text>
  7. <input
  8. class="input"
  9. type="text"
  10. confirm-type="search"
  11. v-model="listQuery.keyWord"
  12. @input="onShowClose"
  13. @confirm="userReportVisitorAssociatedList"
  14. placeholder="搜索关键词 / 咨询人 / 机构名称"
  15. maxlength="16"
  16. />
  17. <text class="iconfont icon-shanchu1" v-if="isShowClose" @click="delInputText()"></text>
  18. </view>
  19. <view class="search-screen" @click="showScreenDrawer">
  20. <text class="iconfont icon-gengduo1"></text> 筛选
  21. </view>
  22. </view>
  23. </view>
  24. <view class="remarks-content" :style="{ paddingBottom: isIphoneX ? '216rpx' : '168rpx' }">
  25. <view :class="{ 'tui-order-list': scrollTop >= 0 }" class="clearfix">
  26. <!-- 空白页 -->
  27. <view class="empty-container" v-if="isEmpty">
  28. <image class="empty-container-image" :src="StaticUrl + '/icon/icon-remarks-empty@2x.png'"></image>
  29. <text class="error-text">暂无任何数据~</text>
  30. </view>
  31. <!-- 列表 -->
  32. <view
  33. class="tui-remarks-cell tui-mtop clearfix"
  34. v-for="(remark, index) in remarksList"
  35. :key="index"
  36. :class="{ orange: remark.followup == 1, blue: remark.followup == 2, grey: remark.followup == 3 }"
  37. @click.stop="details(remark.remarksId)"
  38. >
  39. <view class="tui-remarks-title">
  40. <view class="tui-remarks-title-bot">
  41. <view class="tui-remarks-text-view">
  42. <view class="tui-remarks-text h"
  43. ><text class="iconfont icon-bianji"></text>记录人:{{ remark.recordName }}</view
  44. >
  45. <view class="tui-remarks-text y" v-if="remark.followup">
  46. <text
  47. :class="{
  48. orange: remark.followup == 1,
  49. blue: remark.followup == 2,
  50. grey: remark.followup == 3
  51. }"
  52. >
  53. {{ remark.followup | followupFilters }}
  54. </text>
  55. </view>
  56. </view>
  57. <view class="tui-remarks-text-view">
  58. <view class="tui-remarks-text h">
  59. <text class="iconfont icon-guanliyuan"></text>管理员:{{
  60. remark.leaderName ? remark.leaderName : ''
  61. }}
  62. </view>
  63. <view class="tui-remarks-text y"> {{ remark.addTime }} </view>
  64. </view>
  65. </view>
  66. </view>
  67. <view class="tui-remarks-name">
  68. <view class="tui-remarks-name-text h">
  69. 咨询人:{{ remark.questionMan ? remark.questionMan : '' }}
  70. </view>
  71. <view class="tui-remarks-name-text y">
  72. 咨询类别:{{ remark.consultBack ? remark.consultBack : '无' }}
  73. </view>
  74. </view>
  75. <view class="tui-remarks-name none" v-if="remark.satisfied">
  76. <view class="tui-remarks-name-text h">
  77. 意向程度:<text class="red">{{ remark.satisfied | intenActionsFilters }}</text>
  78. </view>
  79. <view class="tui-remarks-name-text y">
  80. 报备状态:<text
  81. :class="{
  82. reviewed: remark.status == 1,
  83. approved: remark.status == 2,
  84. failed: remark.status == 3
  85. }"
  86. >{{ remark.status | statusFilters }}</text
  87. >
  88. </view>
  89. </view>
  90. <view class="tui-remarks-content">
  91. <text class="tui-remarks-span" v-for="(label, labelIndex) in remark.remarks" :key="labelIndex">
  92. {{ label.label }}
  93. </text>
  94. </view>
  95. <view class="tui-remarks-button" v-if="remark.serviceProviderId === listQuery.serviceProviderId">
  96. <view class="btn edit" @click.stop="cancelReport(remark.remarksId)">取消关联</view>
  97. </view>
  98. </view>
  99. <!--加载loadding-->
  100. <tui-loadmore :visible="loadding" :index="3" type="black"></tui-loadmore>
  101. <tui-nomore :visible="!pullUpOn" :backgroundColor="'#F7F7F7'" :text="nomoreText"></tui-nomore>
  102. <!--加载loadding-->
  103. </view>
  104. </view>
  105. <!-- 筛选抽屉 -->
  106. <cm-screenDrawer
  107. ref="screendrawer"
  108. :popupType="2"
  109. :rightDrawer="isScreenDrawer"
  110. @handSearchConfirm="handSearchConfirmData"
  111. >
  112. </cm-screenDrawer>
  113. </cm-clubpopup>
  114. <!-- 弹窗提示 -->
  115. <tui-modal
  116. :show="modal"
  117. @click="handleClick"
  118. @cancel="hideMobel"
  119. :content="contentModalText"
  120. :button="modalButton"
  121. color="#333"
  122. :size="32"
  123. shape="circle"
  124. :maskClosable="false"
  125. >
  126. </tui-modal>
  127. </view>
  128. </template>
  129. <script>
  130. import cmClubpopup from '@/components/cm-module/cm-seller/cm-clubpopup'
  131. import cmScreenDrawer from '@/components/cm-module/cm-seller/cm-screen-drawer'
  132. import { mapState, mapMutations } from 'vuex'
  133. const defaultListQuery = {
  134. reportId: 0,
  135. keyWord: '',
  136. pageNum: 1,
  137. pageSize: 10
  138. }
  139. export default {
  140. components: {
  141. cmClubpopup,
  142. cmScreenDrawer
  143. },
  144. data() {
  145. return {
  146. StaticUrl: this.$Static,
  147. isIphoneX: this.$store.state.isIphoneX,
  148. modalButton: [
  149. {
  150. text: '取消',
  151. type: 'gray',
  152. plain: true //是否空心
  153. },
  154. {
  155. text: '确认',
  156. customStyle: {
  157. color: '#fff',
  158. bgColor: 'linear-gradient(90deg, #F28F31 0%, #E15616 100%)'
  159. },
  160. plain: false
  161. }
  162. ],
  163. totalRecord: 0,
  164. listQuery: Object.assign({}, defaultListQuery),
  165. remarksList: [],
  166. scrollTop: 0,
  167. isEmpty: false,
  168. loadding: false,
  169. pullUpOn: true,
  170. pullFlag: true,
  171. hasNextPage: false,
  172. navbarHeight: '',
  173. nomoreText: '上拉显示更多',
  174. contentModalText: '', //操作文字提示语句
  175. modal: false,
  176. handleRemarksId: 0,
  177. isScreenDrawer: false
  178. }
  179. },
  180. onLoad(option) {
  181. this.listQuery.reportId = option.reportId
  182. this.initGetStotage()
  183. },
  184. filters: {
  185. NumFormat: function(value) {
  186. //处理金额
  187. if (!value) return '0.00'
  188. let number = Number(value).toFixed(2)
  189. return number
  190. },
  191. followupFilters(value) {
  192. // 订单来源
  193. const map = {
  194. 1: '跟进中',
  195. 2: '跟进完成',
  196. 3: '已放弃'
  197. }
  198. return map[value]
  199. },
  200. intenActionsFilters(value) {
  201. // 意向
  202. if (value) {
  203. const map = {
  204. 1: '意向强烈',
  205. 2: '意向一般',
  206. 3: '意向平淡',
  207. 4: '随便看看'
  208. }
  209. return map[value]
  210. } else {
  211. return ''
  212. }
  213. }
  214. },
  215. computed: {
  216. ...mapState(['hasLogin', 'userInfo'])
  217. },
  218. methods: {
  219. ...mapMutations(['login', 'logout']),
  220. async initGetStotage() {
  221. const userInfo = await this.$api.getStorage()
  222. this.userReportVisitorAssociatedList()
  223. },
  224. userReportVisitorAssociatedList() {
  225. this.remarksList = []
  226. this.listQuery.pageNum = 1
  227. this.UserService.userReportVisitorAssociatedList(this.listQuery)
  228. .then(response => {
  229. let data = response.data
  230. if (data.results && data.results.length > 0) {
  231. this.isEmpty = false
  232. this.hasNextPage = data.hasNextPage
  233. this.totalRecord = data.totalRecord
  234. this.remarksList = data.results
  235. this.pullFlag = false
  236. setTimeout(() => {
  237. this.pullFlag = true
  238. }, 500)
  239. if (this.hasNextPage) {
  240. this.pullUpOn = false
  241. this.nomoreText = '上拉显示更多'
  242. } else {
  243. if (this.remarksList.length < 8) {
  244. this.pullUpOn = true
  245. } else {
  246. this.pullUpOn = false
  247. this.loadding = false
  248. this.nomoreText = '已至底部'
  249. }
  250. }
  251. } else {
  252. this.isEmpty = true
  253. }
  254. this.isRequest = true
  255. })
  256. .catch(error => {
  257. this.$util.msg(error.msg, 2000)
  258. })
  259. },
  260. GetOnReachBottomData(index) {
  261. //上拉加载
  262. this.listQuery.pageNum += 1
  263. this.UserService.userReportVisitorAssociatedList(this.listQuery)
  264. .then(response => {
  265. let data = response.data
  266. if (data.results && data.results.length > 0) {
  267. this.hasNextPage = data.hasNextPage
  268. this.remarksList = this.remarksList.concat(data.results)
  269. this.pullFlag = false // 防上拉暴滑
  270. setTimeout(() => {
  271. this.pullFlag = true
  272. }, 500)
  273. if (this.hasNextPage) {
  274. this.pullUpOn = false
  275. this.nomoreText = '上拉显示更多'
  276. } else {
  277. this.pullUpOn = false
  278. this.loadding = false
  279. this.nomoreText = '已至底部'
  280. }
  281. }
  282. })
  283. .catch(error => {
  284. this.$util.msg(error.msg, 2000)
  285. })
  286. },
  287. cancelReport(remarksId) {
  288. this.handleRemarksId = remarksId
  289. this.modal = true
  290. this.contentModalText = '确定取消该咨询记录和报备的关联吗?'
  291. },
  292. handSearchConfirmData(data) {
  293. console.log('确定筛选', data)
  294. //确定筛选
  295. this.listQuery.startAddTime = data.startAddTime
  296. this.listQuery.endAddTime = data.endAddTime
  297. this.listQuery.consult = data.consult
  298. this.listQuery.leaderId = data.leaderId
  299. this.listQuery.groupId = data.groupId
  300. this.listQuery.pinceSensitve = data.pinceSensitve
  301. this.listQuery.satisfied = data.satisfied
  302. this.listQuery.followup = data.followup
  303. this.listQuery.newDeal = data.newDeal
  304. this.listQuery.status = data.status
  305. this.userReportVisitorAssociatedList()
  306. },
  307. showScreenDrawer() {
  308. //显示筛选抽屉
  309. this.isScreenDrawer = true
  310. },
  311. handleClick(e) {
  312. //确认删除
  313. if (e.index == 1) {
  314. this.handleDeleteUserLike()
  315. }
  316. this.modal = false
  317. },
  318. handleDeleteUserLike() {
  319. //操作删除资料备注
  320. this.UserService.getUserClubRemarksDelete({
  321. remarksId: this.handleRemarksId
  322. })
  323. .then(response => {
  324. this.$util.msg('已删除', 2000, true, 'success')
  325. setTimeout(() => {
  326. this.userReportVisitorAssociatedList()
  327. }, 2000)
  328. })
  329. .catch(error => {
  330. this.$util.msg(error.msg, 2000)
  331. })
  332. },
  333. onShowClose() {
  334. //输入框失去焦点时触发
  335. if (this.listQuery.keyWord != '') {
  336. this.isShowClose = true
  337. } else {
  338. this.isShowClose = false
  339. this.listQuery.pageNum = 1
  340. this.userReportVisitorAssociatedList()
  341. }
  342. },
  343. delInputText() {
  344. //清除输入框内容
  345. this.listQuery.keyWord = ''
  346. this.isShowClose = false
  347. this.listQuery.pageNum = 1
  348. this.userReportVisitorAssociatedList()
  349. },
  350. hideMobel() {
  351. this.modal = false
  352. },
  353. details(remarksId) {
  354. this.$api.navigateTo(`/pages/seller/remarks/record-details?remarksId=${remarksId}`)
  355. }
  356. },
  357. onPageScroll(e) {
  358. //实时获取到滚动的值
  359. },
  360. onReachBottom() {
  361. if (this.hasNextPage) {
  362. this.loadding = true
  363. this.pullUpOn = true
  364. this.GetOnReachBottomData()
  365. }
  366. },
  367. onPullDownRefresh() {
  368. setTimeout(() => {
  369. this.listQuery.pageNum = 1
  370. uni.stopPullDownRefresh()
  371. }, 200)
  372. },
  373. onShow() {
  374. this.initGetStotage()
  375. }
  376. }
  377. </script>
  378. <style lang="scss">
  379. @import '@/uni.scss';
  380. page {
  381. background: #f7f7f7;
  382. }
  383. .empty-container {
  384. z-index: 99;
  385. }
  386. .container-fiexd-top {
  387. width: 100%;
  388. height: 112rpx;
  389. background: #f5f5f5;
  390. box-sizing: border-box;
  391. position: fixed;
  392. top: 0;
  393. left: 0;
  394. z-index: 982;
  395. .club-search {
  396. width: 100%;
  397. height: 112rpx;
  398. padding: 24rpx;
  399. background: #ffffff;
  400. box-sizing: border-box;
  401. .search-screen {
  402. width: 152rpx;
  403. height: 64rpx;
  404. float: right;
  405. box-sizing: border-box;
  406. padding: 0 20rpx;
  407. border: 1px solid #999999;
  408. line-height: 64rpx;
  409. border-radius: 32rpx;
  410. color: #333333;
  411. text-align: center;
  412. font-size: 28rpx;
  413. .icon-gengduo1 {
  414. font-size: 30rpx;
  415. margin-right: 10rpx;
  416. }
  417. }
  418. .search-from {
  419. width: 526rpx;
  420. height: 100%;
  421. background: #f7f7f7;
  422. border-radius: 32rpx;
  423. float: left;
  424. position: relative;
  425. .input {
  426. width: 420rpx;
  427. height: 64rpx;
  428. float: left;
  429. line-height: 64rpx;
  430. color: $text-color;
  431. font-size: $font-size-24;
  432. }
  433. .icon-iconfonticonfontsousuo1 {
  434. width: 64rpx;
  435. height: 64rpx;
  436. line-height: 64rpx;
  437. text-align: center;
  438. display: block;
  439. font-size: $font-size-38;
  440. float: left;
  441. color: #999999;
  442. }
  443. .icon-shanchu1 {
  444. font-size: $font-size-32;
  445. color: #999999;
  446. position: absolute;
  447. width: 64rpx;
  448. height: 64rpx;
  449. line-height: 64rpx;
  450. text-align: center;
  451. top: 0;
  452. right: 0;
  453. z-index: 10;
  454. }
  455. }
  456. }
  457. }
  458. .remarks-content {
  459. width: 100%;
  460. height: auto;
  461. position: relative;
  462. padding: 0;
  463. box-sizing: border-box;
  464. padding: 24rpx;
  465. padding-top: 136rpx;
  466. .empty-container-image {
  467. width: 260rpx;
  468. height: 260rpx;
  469. margin-top: -300rpx;
  470. }
  471. .tui-remarks-cell {
  472. width: 100%;
  473. border-radius: 16rpx;
  474. margin-bottom: 24rpx;
  475. background: #ffffff;
  476. box-sizing: border-box;
  477. padding: 0 24rpx 24rpx 24rpx;
  478. &.orange {
  479. background: #ffffff linear-gradient(180deg, #ffede5 0%, rgba(255, 255, 255, 0) 50%);
  480. }
  481. &.blue {
  482. background: #ffffff linear-gradient(180deg, #deefff 0%, rgba(255, 255, 255, 0) 50%);
  483. }
  484. &.grey {
  485. background: #ffffff linear-gradient(180deg, #ececec 0%, rgba(255, 255, 255, 0) 50%);
  486. }
  487. .tui-remarks-title {
  488. width: 100%;
  489. height: auto;
  490. box-sizing: border-box;
  491. padding: 20rpx 0;
  492. border-bottom: 1px solid #e1e1e1;
  493. float: left;
  494. .tui-remarks-title-top {
  495. width: 100%;
  496. height: 56rpx;
  497. line-height: 56rpx;
  498. .tui-remarks-time {
  499. float: left;
  500. &.tt {
  501. width: 60%;
  502. font-size: $font-size-32;
  503. color: #333333;
  504. text-align: left;
  505. text-overflow: ellipsis;
  506. overflow: hidden;
  507. display: -webkit-box;
  508. -webkit-line-clamp: 1;
  509. line-clamp: 1;
  510. -webkit-box-orient: vertical;
  511. font-weight: bold;
  512. .tags {
  513. display: inline-block;
  514. padding: 0 10rpx;
  515. border-radius: 8rpx;
  516. line-height: 36rpx;
  517. font-size: 22rpx;
  518. background-color: #f94b4b;
  519. color: #ffffff;
  520. text-align: center;
  521. float: left;
  522. margin-right: 10rpx;
  523. margin-top: 10rpx;
  524. font-weight: normal;
  525. }
  526. }
  527. &.sm {
  528. width: 40%;
  529. font-size: $font-size-26;
  530. color: #999999;
  531. text-align: right;
  532. .orange {
  533. display: inline-block;
  534. padding: 0 15rpx;
  535. border-radius: 24rpx;
  536. line-height: 48rpx;
  537. font-size: 24rpx;
  538. background-color: #e15616;
  539. color: #ffffff;
  540. text-align: center;
  541. }
  542. .blue {
  543. display: inline-block;
  544. padding: 0 15rpx;
  545. border-radius: 24rpx;
  546. line-height: 48rpx;
  547. font-size: 24rpx;
  548. background-color: #1890f9;
  549. color: #ffffff;
  550. text-align: center;
  551. }
  552. .grey {
  553. display: inline-block;
  554. padding: 0 15rpx;
  555. border-radius: 24rpx;
  556. line-height: 48rpx;
  557. font-size: 24rpx;
  558. background-color: #e1e1e1;
  559. color: #999999;
  560. text-align: center;
  561. }
  562. }
  563. }
  564. }
  565. .tui-remarks-title-bot {
  566. width: 100%;
  567. height: auto;
  568. .tui-remarks-text-view {
  569. width: 100%;
  570. height: 48rpx;
  571. .tui-remarks-text {
  572. width: 50%;
  573. height: 48rpx;
  574. line-height: 48rpx;
  575. box-sizing: border-box;
  576. text-align: left;
  577. font-size: $font-size-26;
  578. color: #999999;
  579. float: left;
  580. text-overflow: ellipsis;
  581. overflow: hidden;
  582. display: -webkit-box;
  583. -webkit-line-clamp: 1;
  584. line-clamp: 1;
  585. -webkit-box-orient: vertical;
  586. &.a {
  587. width: 100%;
  588. }
  589. &.y {
  590. text-align: right;
  591. .orange {
  592. display: inline-block;
  593. padding: 0 15rpx;
  594. border-radius: 24rpx;
  595. line-height: 48rpx;
  596. font-size: 24rpx;
  597. background-color: #e15616;
  598. color: #ffffff;
  599. text-align: center;
  600. }
  601. .blue {
  602. display: inline-block;
  603. padding: 0 15rpx;
  604. border-radius: 24rpx;
  605. line-height: 48rpx;
  606. font-size: 24rpx;
  607. background-color: #1890f9;
  608. color: #ffffff;
  609. text-align: center;
  610. }
  611. .grey {
  612. display: inline-block;
  613. padding: 0 15rpx;
  614. border-radius: 24rpx;
  615. line-height: 48rpx;
  616. font-size: 24rpx;
  617. background-color: #e1e1e1;
  618. color: #ffffff;
  619. text-align: center;
  620. }
  621. }
  622. }
  623. }
  624. }
  625. }
  626. .tui-remarks-name {
  627. width: 100%;
  628. height: 48rpx;
  629. line-height: 48rpx;
  630. font-size: $font-size-26;
  631. color: #666666;
  632. text-align: left;
  633. margin-bottom: 10rpx;
  634. margin-top: 20rpx;
  635. float: left;
  636. &.none {
  637. margin-top: 0;
  638. margin-bottom: 20rpx;
  639. }
  640. .tui-remarks-name-text {
  641. height: 48rpx;
  642. box-sizing: border-box;
  643. text-align: left;
  644. font-size: $font-size-26;
  645. color: #333333;
  646. float: left;
  647. text-overflow: ellipsis;
  648. overflow: hidden;
  649. display: -webkit-box;
  650. -webkit-line-clamp: 1;
  651. line-clamp: 1;
  652. -webkit-box-orient: vertical;
  653. .red {
  654. color: #f94b4b;
  655. }
  656. &.a {
  657. width: 100%;
  658. }
  659. &.h {
  660. width: 40%;
  661. padding-right: 24rpx;
  662. }
  663. &.y {
  664. width: 60%;
  665. padding-left: 24rpx;
  666. .reviewed{
  667. color: #E15616;
  668. }
  669. .approved{
  670. color: #0DB26D;
  671. }
  672. .failed{
  673. color: #F94B4B;
  674. }
  675. }
  676. }
  677. }
  678. .tui-remarks-content {
  679. width: 100%;
  680. height: auto;
  681. .tui-remarks-span {
  682. height: 48rpx;
  683. line-height: 48rpx;
  684. text-align: center;
  685. padding: 0 20rpx;
  686. background-color: #f7f7f7;
  687. font-size: $font-size-26;
  688. color: #666666;
  689. border-radius: 25rpx;
  690. display: inline-block;
  691. margin-right: 24rpx;
  692. margin-bottom: 24rpx;
  693. &:nth-child(4n) {
  694. margin-right: none;
  695. }
  696. }
  697. }
  698. .tui-remarks-button {
  699. width: 100%;
  700. height: 68rpx;
  701. border-top: 1px solid #e1e1e1;
  702. padding-top: 20rpx;
  703. .btn {
  704. width: 100%;
  705. line-height: 48rpx;
  706. box-sizing: border-box;
  707. text-align: center;
  708. font-size: $font-size-34;
  709. float: left;
  710. font-weight: bold;
  711. &.edit {
  712. color: #1890f9;
  713. }
  714. }
  715. }
  716. }
  717. }
  718. .tui-popup-box {
  719. position: relative;
  720. box-sizing: border-box;
  721. min-height: 100rpx;
  722. padding: 6rpx 24rpx;
  723. .tui-popup-content {
  724. padding-top: 30rpx;
  725. }
  726. }
  727. .tui-popup-btn {
  728. width: 100%;
  729. height: auto;
  730. float: left;
  731. box-sizing: border-box;
  732. margin-top: 30rpx;
  733. .tui-button {
  734. width: 600rpx;
  735. height: 88rpx;
  736. background: $btn-confirm;
  737. line-height: 88rpx;
  738. text-align: center;
  739. color: #ffffff;
  740. font-size: $font-size-28;
  741. border-radius: 44rpx;
  742. margin: 0 auto;
  743. }
  744. .tui-button-text {
  745. width: 600rpx;
  746. height: 48rpx;
  747. line-height: 48rpx;
  748. text-align: center;
  749. color: #e15616;
  750. font-size: $font-size-26;
  751. margin: 0 auto;
  752. margin-top: 15rpx;
  753. }
  754. }
  755. </style>