relation-consult-list.vue 18 KB

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