report-list.vue 18 KB

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