You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

1146 lines
28 KiB

  1. <template>
  2. <view class="box">
  3. <view class="content">
  4. <view class="content-tips" @click="goedit()">
  5. <view class="content-first">
  6. <view class="left">
  7. <view v-if="customerInfo.level.length==0"></view>
  8. <view class="img" v-else-if="customerInfo.level==1">A</view>
  9. <view class="img" v-else-if="customerInfo.level==2">B</view>
  10. <view class="img" v-else-if="customerInfo.level==3">C</view>
  11. <view class="img" v-else-if="customerInfo.level==4">D</view>
  12. <view class="test">{{customerInfo.name || '--'}}</view>
  13. <view class="edit">
  14. <image class="screen-sel-img" src="../../../static/images/edit.png" mode=""></image>
  15. </view>
  16. </view>
  17. <!-- <view class="right">
  18. <view class="point"></view>
  19. <view class="test">定金</view>
  20. </view> -->
  21. </view>
  22. <view class="content-sec">
  23. <view class="content-sec-lab">
  24. 手机号码:<view class="content-sec-lab1">
  25. {{customerInfo.phone&&customerInfo.isShow==1?customerInfo.phone.length==11?customerInfo.phone.substr(0, 3) + '****' + customerInfo.phone.substr(7):customerInfo.phone:customerInfo.phone&&customerInfo.isShow!=1?customerInfo.phone: '--'}}</view>
  26. </view>
  27. <view class="content-sec-lab" @click.stop="tipupon">
  28. 客户标签:
  29. <text v-if="!customerInfo.demand.cusSemanticWordsList">暂无</text>
  30. <view v-else class="content-sec-tips" v-for="(che,ind) in customerInfo.demand.cusSemanticWordsList" :key='ind'>{{che.name}}</view>
  31. <view class="conmsg-msg-lab-img" v-if="customerInfo.demand.cusSemanticWordsList.length>0">
  32. <image class="screen-sel-img" src="../../../static/images/right.png" mode=""></image>
  33. </view>
  34. </view>
  35. <view class="content-sec-lab">
  36. 顾问姓名:<view class="content-sec-lab1">{{customerInfo.agentName}}</view>
  37. </view>
  38. <view class="content-sec-lab">
  39. 添加时间:<view class="content-sec-lab1">{{customerInfo.createTime}}</view>
  40. </view>
  41. <view class="content-sec-num">
  42. <view class="">{{customerInfo.visitRecord || '--'}}次到访</view>
  43. <view class="">{{customerInfo.fraction || '0'}}% | {{customerInfo.mm || '0'}}<text style="font-size: 24rpx;">min</text></view>
  44. </view>
  45. </view>
  46. <view class="content-last">
  47. <view class="content-last-con">
  48. 备注:{{customerInfo.remarks ? customerInfo.remarks : "暂无"}}
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="tabchange">
  54. <view class="tab">
  55. <view class="tabbox">
  56. <view :class="{ activecllasscet: activeTotal == 0 }" @click="tabtimetap(0)">接待记录</view>
  57. </view>
  58. <view class="tabbox">
  59. <view :class="{ activecllasscet: activeTotal == 1 }" @click="tabtimetap(1)">跟进记录</view>
  60. </view>
  61. <view class="tabbox">
  62. <view :class="{ activecllasscet: activeTotal == 2 }" @click="tabtimetap(2)">执行率</view>
  63. </view>
  64. </view>
  65. <!-- 接待记录 -->
  66. <view class="tabactive1" v-if="activeTotal==0" style="min-height: 800rpx;">
  67. <view v-if="Thevisitingrecords.length==0" style="width: 100%;height: 100%;display: flex;align-items: center;">
  68. <view style="width: 100%;padding-top: 60rpx;">
  69. <view style="width: 100%;text-align: center;">
  70. <image style="width: 220rpx;height: 200rpx;" src="https://static.quhouse.com/zhikong_xcx_img/nodatalist.png" mode=""></image>
  71. </view>
  72. <view style="text-align: center;width: 100%;margin-top: 20rpx;color: #999999;">暂无数据</view>
  73. </view>
  74. </view>
  75. <view v-if="Thevisitingrecords.length!=0" class="content-tips" v-for="(item,index) in Thevisitingrecords" :key="index" @click="tapThevisiting(item)">
  76. <view class="content-first">
  77. <view class="left">
  78. <view v-if="item.level.length==0"></view>
  79. <view class="img" v-else-if="item.level==1">A</view>
  80. <view class="img" v-else-if="item.level==2">B</view>
  81. <view class="img" v-else-if="item.level==3">C</view>
  82. <view class="img" v-else-if="item.level==4">D</view>
  83. <view class="name">{{item.agentName || '--'}}</view>
  84. <view class="status" v-if="item.replaceReception==1">代接待</view>
  85. </view>
  86. <!-- <view class="right">
  87. <view class="point"></view>
  88. <view class="">优秀案例</view>
  89. </view> -->
  90. </view>
  91. <view class="content-sec">
  92. <view class="left">
  93. <view class="cus" style="line-height: 46rpx;">客户:{{item.name || ''}} |</view>
  94. <view style="line-height: 46rpx;" class="arriveNum">{{item.visitRecord || '--'}}次到访</view>
  95. </view>
  96. <view class="right">{{item.fraction || '0'}}%</view>
  97. </view>
  98. <view class="content-last">{{item.createTime}} | {{item.mm || '--'}}min</view>
  99. </view>
  100. </view>
  101. <!-- 跟进记录 -->
  102. <view class="tabactive2" v-if="activeTotal==1" style="min-height: 600rpx;">
  103. <view v-if="fllowList.length==0" style="width: 100%;height:600rpx;display: flex;align-items: center;background-color: #FFFFFF;">
  104. <view style="width: 100%;padding-top: 60rpx;">
  105. <view style="width: 100%;text-align: center;">
  106. <image style="width: 220rpx;height: 200rpx;" src="https://static.quhouse.com/zhikong_xcx_img/nodatalist.png" mode=""></image>
  107. </view>
  108. <view style="text-align: center;width: 100%;margin-top: 20rpx;color: #999999;">暂无数据</view>
  109. </view>
  110. </view>
  111. <view v-if="fllowList.length!=0" class="tab2-tips" v-for="(item,index) in fllowList" :key="index">
  112. <view class="tab2-first">
  113. <view class="tab2-first-1">
  114. <view class="tab2-first-left">
  115. <view class="img">{{item.agentName.slice(0,1) || '--'}}</view>
  116. <view class="name">{{item.agentName || '||'}}</view>
  117. </view>
  118. <view class="tab2-first-right">{{item.createTime}}</view>
  119. </view>
  120. <view class="tab2-first-foot">跟进内容:{{item.remarks || '暂无'}}</view>
  121. </view>
  122. <!-- <view class="tab2-sec">
  123. <view class="tab-sec-edit">编辑记录</view>
  124. </view> -->
  125. </view>
  126. </view>
  127. <!-- 评分 -->
  128. <view class="ratecenter" v-if="activeTotal==2">
  129. <view class="ratetetle">执行总览</view>
  130. <view class="rateyuanbox">
  131. <view class="rateyuanboxzuo">
  132. <view class="boxzuoview cccccc">{{customerInfo.visitRecord || '--'}}次</view>
  133. <view style="color: #333333;font-size: 28rpx;font-weight: 400;text-align: center;">接待次数</view>
  134. </view>
  135. <view class="rateyuanboxyou">
  136. <view class="boxzuoview" style="width: 100%;display: flex;justify-content: center;">
  137. <u-circle-progress active-color="#4FC78F" width='139' :percent="customerInfo.fraction">
  138. <view style="text-align: center;color: #4FC78F;">{{customerInfo.fraction}}%</view>
  139. </u-circle-progress>
  140. </view>
  141. <view style="color: #333333;font-size: 28rpx;font-weight: 400;text-align: center;">销讲执行率</view>
  142. </view>
  143. <view class="rateyuanboxzuo">
  144. <view class="boxzuoview cccccc">{{customerInfo.mm}}min</view>
  145. <view style="color: #333333;font-size: 28rpx;font-weight: 400;text-align: center;">接待时长</view>
  146. </view>
  147. </view>
  148. <view style="width: 100%;height: 80rpx;border-bottom: 1rpx solid #E0E0E0;display: flex;align-items: center;">
  149. <view style="flex: 1;font-size: 28rpx;color: #333333;font-weight: 600;text-indent: 20rpx;">指标</view>
  150. <view style="flex: 1;font-size: 28rpx;color: #333333;font-weight: 600;text-indent: 170rpx;">执行率</view>
  151. </view>
  152. <view v-if="ratelist.length==0" style="width: 100%;height: 100%;display: flex;align-items: center;">
  153. <view style="width: 100%;padding-top: 60rpx;">
  154. <view style="width: 100%;text-align: center;">
  155. <image style="width: 220rpx;height: 200rpx;" src="https://static.quhouse.com/zhikong_xcx_img/nodatalist.png" mode=""></image>
  156. </view>
  157. <view style="text-align: center;width: 100%;margin-top: 20rpx;color: #999999;">暂无数据</view>
  158. </view>
  159. </view>
  160. <view class="Level-box" v-if="ratelist.length!=0" v-for="(item,index) in ratelist" :key="index">
  161. <view class="Level1che" @click="changeshow(item,1)">
  162. <view class="title1">{{item.name}}</view>
  163. <view class="leve1-jindu">
  164. <view class="jindutiao">
  165. <view class="huanxing" :style="{width: item.ratepercent/item.rate*100+'%'}"></view>
  166. <view class="text">{{((item.ratepercent/item.rate).toFixed(2)*100).toFixed()}}%</view>
  167. </view>
  168. </view>
  169. <view class="jiantobox">
  170. <image v-if="!item.show" class="arrow rotatearrow" src="/static/images/down.png" mode="" />
  171. <image v-else class="arrow" src="/static/images/up.png" mode="" />
  172. </view>
  173. </view>
  174. <view class="hhhbox" v-if="item.show" v-for="(subitem,i) in item.children" :key="i">
  175. <view class="Level2che" @click="changeshow2(subitem,1)">
  176. <view class="title1" >{{subitem.name}}</view>
  177. <view class="leve1-jindu" >
  178. <view class="zhixing" v-if="!subitem.selected">已执行</view>
  179. <view class="zhixing2" v-else>未执行</view>
  180. </view>
  181. <view class="jiantobox">
  182. <image v-if="!subitem.show" class="arrow rotatearrow" src="/static/images/down.png" mode="" />
  183. <image v-else class="arrow" src="/static/images/up.png" mode="" />
  184. </view>
  185. </view>
  186. <view class="hsnrtest" v-if="subitem.show">话术内容</view>
  187. <view class="Level3che" @tap="clickaudeopal(che)" v-if="subitem.show" v-for="(che,inc) in subitem.children" :key='inc'>
  188. <view class="title1" >{{inc+1}}.{{che.name}}</view>
  189. <view class="jiantobox">
  190. <image v-if="che.selected==0" class="arrow" src="/static/images/rate-checked.png" mode="" />
  191. </view>
  192. </view>
  193. <view v-if="subitem.show" style="width: 100%;height: 30rpx;"></view>
  194. </view>
  195. </view>
  196. </view>
  197. </view>
  198. <view class="pon-foot" v-if="buttonisshow">
  199. <view class="foot-tab" @click="goRemind">添加提醒</view>
  200. <!-- <view class="foot-tab">拨打电话</view> -->
  201. <view class="foot-tab" @click="followRecordAdd()">写跟进</view>
  202. </view>
  203. <!-- closeable -->
  204. <u-popup v-model="tipshow" mode="center" width="500rpx" height="500rpx" closeable>
  205. <scroll-view scroll-y="true" style="height: 440rpx;">
  206. <view style="margin-top: 60rpx; display: flex; flex-wrap: wrap; padding-left: 20rpx;">
  207. <view class="upon-sec-tips" v-for="(item,index) in customerInfo.demand.cusSemanticWords" :key="index">
  208. {{item.name}}
  209. </view>
  210. </view>
  211. </scroll-view>
  212. </u-popup>
  213. </view>
  214. </template>
  215. <script>
  216. export default{
  217. data(){
  218. return{
  219. activeTotal: 0,
  220. customerId:'',
  221. tipshow:false,
  222. customerInfo:{
  223. name:'',
  224. createTime:'',
  225. agentName:''
  226. },
  227. Thevisitingrecords:[],
  228. totalRate:[],
  229. ratelist:[],
  230. fllowList:[],
  231. userInfo:{},
  232. buttonisshow:false
  233. }
  234. },
  235. onLoad(options) {
  236. this.customerId = options.id;
  237. },
  238. onShow() {
  239. this.userInfo = uni.getStorageSync('weapp_session_userInfo_data');
  240. if(this.userInfo.dataCode == 6){
  241. this.buttonisshow=true;
  242. }else{
  243. this.buttonisshow=false
  244. }
  245. this.getCustomerInfo()
  246. this.tabtimetap(0)
  247. },
  248. methods:{
  249. // 获取到访记录
  250. getVisitList() {
  251. this.$u.get("/customer/findByPhoneAndProject?id=" + this.customerId, ).then(res => {
  252. this.Thevisitingrecords = res
  253. })
  254. },
  255. // 获取客户信息
  256. getCustomerInfo() {
  257. const that = this;
  258. this.$u.get("/customer/findById", {
  259. id: this.customerId
  260. }).then(res => {
  261. if(res.fraction==null){
  262. res.fraction='0';
  263. }
  264. if(res.demand.cusSemanticWordsList!=null){
  265. res.demand.cusSemanticWords=res.demand.cusSemanticWordsList
  266. res.demand.cusSemanticWordsList.forEach(che=>{
  267. if(che.isInterval==0){
  268. che.name=che.name+che.unit+'-'+che.endName+che.unit;
  269. }
  270. })
  271. res.demand.cusSemanticWordsList=res.demand.cusSemanticWordsList.slice(0,3)
  272. }
  273. // console.log(res.demand.cusSemanticWords,'关键字')
  274. this.customerInfo = res;
  275. })
  276. },
  277. tabtimetap(idx){
  278. this.activeTotal=idx
  279. if(idx==0){
  280. this.getVisitList()
  281. }else if(idx==1){
  282. this.getFollowList()
  283. }else{
  284. this.getRatelist()
  285. }
  286. },
  287. tapThevisiting(item) {
  288. if(item.yon!=0){
  289. uni.showToast({
  290. icon:'none',
  291. title: '暂无录音',
  292. duration: 2000
  293. });
  294. return
  295. }else{
  296. const parames = {
  297. pageNum: 1,
  298. pageSize: 100,
  299. query: {
  300. customerId: item.id,
  301. }
  302. }
  303. var item={
  304. bg:0,
  305. customerId:item.id,
  306. id:''
  307. }
  308. uni.setStorageSync("entrance", 1); //写入缓存
  309. uni.setStorageSync("searchobj", item); //写入缓存
  310. this.$u.post("/corpus/findByPage", parames).then(res => {
  311. if(res==null){
  312. uni.showToast({
  313. icon: "none",
  314. title: "暂无音频"
  315. })
  316. return
  317. }
  318. if(res[0].merge==0){
  319. let newobj = res[0];
  320. uni.navigateTo({
  321. url: `/pages/mine/details2?customerId=${newobj.customerId}&status=${newobj.status}&stateisshow=${"2"}`
  322. })
  323. }else{
  324. let newobj = res[0];
  325. uni.navigateTo({
  326. url: `/pages/mine/details?customerId=${newobj.customerId}&status=${newobj.status}&stateisshow=${"1"}`
  327. })
  328. }
  329. })
  330. }
  331. },
  332. // 获取跟进记录
  333. getFollowList() {
  334. this.fllowList=[];
  335. this.$u.post("/customer/getCusStage", {
  336. customerId: this.customerId
  337. }).then(res => {
  338. res.forEach(item=>{
  339. item.agentName=this.customerInfo.agentName
  340. })
  341. this.fllowList = res;
  342. })
  343. },
  344. // 新增跟进
  345. followRecordAdd() {
  346. uni.navigateTo({
  347. url: `/pages/center/consumer/newFollowup/newFollowup?id=${this.customerId}`
  348. })
  349. },
  350. // 去编辑
  351. goedit(){
  352. // console.log('去编辑')
  353. uni.navigateTo({
  354. url:`/pages/center/consumer/edit?id=${this.customerId}`
  355. })
  356. },
  357. // 去添加提醒
  358. goRemind(){
  359. uni.navigateTo({
  360. url:`/pages/center/consumer/remind?str=${this.customerInfo.name+'/'+this.customerInfo.phone}&customerId=${this.customerId}`
  361. })
  362. },
  363. //评分点击
  364. clickaudeopal(item){
  365. if(item.selected==0){
  366. uni.navigateTo({
  367. url: '/pages/mine/ScoringPlaylist?customerId='+this.customerId +"&id="+item.marketingId
  368. })
  369. }
  370. },
  371. tipupon(){
  372. if(!this.customerInfo.demand.cusSemanticWordsList)return
  373. this.tipshow=true
  374. },
  375. changeshow(item, type) {
  376. item.show = !item.show
  377. },
  378. changeshow2(item, type){
  379. item.show = !item.show
  380. },
  381. // 获取评分
  382. getRatelist() {
  383. this.$u.get("/customer/findzkMByCusId", {
  384. cusId: this.customerId
  385. }).then(res => {
  386. if (res.length) {
  387. let level1 = []
  388. res.forEach(item => {
  389. if (item.pid == 0) {
  390. level1.push({
  391. id: item.marketingId,
  392. rate: item.fraction,
  393. name: item.name,
  394. sort: item.sort,
  395. show: false,
  396. ratepercent: 0,
  397. children: []
  398. })
  399. }
  400. })
  401. // this.totalRate = level2rate;
  402. res.forEach(subitem => {
  403. let subitempid = subitem.pid
  404. level1.forEach(item => {
  405. if (subitempid == item.id) {
  406. if (subitem.selected == 0) {
  407. item.ratepercent += subitem.fraction
  408. }
  409. item.children.push({
  410. id: subitem.id,
  411. rate: subitem.fraction,
  412. selected: subitem.selected,
  413. name: subitem.name,
  414. show: false,
  415. marketingId:subitem.marketingId,
  416. children: []
  417. })
  418. }
  419. })
  420. })
  421. res.forEach(subitem => {
  422. let subitempid = subitem.pid
  423. level1.forEach(chen=>{
  424. chen.children.forEach(zxc=>{
  425. if(subitempid == zxc.marketingId){
  426. zxc.children.push({
  427. id: subitem.id,
  428. rate: subitem.fraction,
  429. selected: subitem.selected,
  430. name: subitem.name,
  431. marketingId:subitem.marketingId,
  432. })
  433. }
  434. })
  435. })
  436. })
  437. level1[0].show = true;
  438. level1[0].children[0].show = true;
  439. this.ratelist = level1
  440. }
  441. })
  442. },
  443. }
  444. }
  445. </script>
  446. <style lang="scss" scoped>
  447. .rotatearrow {
  448. transform: rotate(270deg);
  449. }
  450. // 评分
  451. .rate-box {
  452. padding: 10rpx 20rpx;
  453. background-color: #FFFFFF;
  454. .date {
  455. width: 300rpx;
  456. height: 33rpx;
  457. font-size: 24rpx;
  458. font-weight: 400;
  459. color: #333333;
  460. line-height: 33rpx;
  461. letter-spacing: 1rpx;
  462. margin-bottom: 8rpx;
  463. }
  464. .title {
  465. width: 100%;
  466. height: 42rpx;
  467. font-size: 30rpx;
  468. font-weight: 500;
  469. color: #333333;
  470. line-height: 42rpx;
  471. letter-spacing: 2rpx;
  472. margin-bottom: 20rpx;
  473. }
  474. .level1 {
  475. display: flex;
  476. align-items: center;
  477. .level-name {
  478. width: 104rpx;
  479. height: 33rpx;
  480. font-size: 24rpx;
  481. font-weight: 500;
  482. color: #333333;
  483. line-height: 33rpx;
  484. letter-spacing: 1rpx;
  485. margin-right: 10rpx;
  486. }
  487. .level-progress {
  488. flex: 1;
  489. border-radius: 11rpx;
  490. height: 21rpx;
  491. background-color: #BEE4FF;
  492. position: relative;
  493. .color {
  494. width: 0;
  495. position: absolute;
  496. top: 0;
  497. left: 0;
  498. height: 21rpx;
  499. border-radius: 11rpx 0 0 11rpx;
  500. background-color: #008EF2;
  501. }
  502. }
  503. .level-rate {
  504. width: 65rpx;
  505. height: 33rpx;
  506. font-size: 24rpx;
  507. font-weight: 500;
  508. color: #333333;
  509. line-height: 33rpx;
  510. letter-spacing: 1rpx;
  511. margin: 0 20rpx 0 15rpx;
  512. }
  513. .arrow {
  514. width: 37rpx;
  515. height: 21rpx;
  516. padding: 5rpx 20rpx;
  517. }
  518. .rotatearrow {
  519. transform: rotate(270deg);
  520. }
  521. }
  522. .level1-subbox {
  523. display: flex;
  524. margin-top: 20rpx;
  525. flex-wrap: wrap;
  526. .sub-name {
  527. width: 50%;
  528. display: flex;
  529. margin-bottom: 18rpx;
  530. .subitem-name {
  531. width: 104rpx;
  532. height: 33rpx;
  533. font-size: 24rpx;
  534. font-weight: 400;
  535. color: #999999;
  536. line-height: 33rpx;
  537. letter-spacing: 1rpx;
  538. margin-right: 12rpx;
  539. }
  540. .checkimg {
  541. width: 27rpx;
  542. height: 27rpx;
  543. }
  544. }
  545. }
  546. }
  547. .Level-box{
  548. padding-bottom: 2rpx;
  549. .hhhbox{
  550. width:100%;
  551. padding-left: 30rpx;
  552. padding-right: 30rpx;
  553. border-bottom: 1rpx solid #E0E0E0;
  554. background: #FFFFFF;
  555. // padding-bottom: 32rpx;
  556. .hsnrtest{
  557. height: 24rpx;
  558. font-size: 24rpx;
  559. font-weight: 400;
  560. color: #666666;
  561. line-height: 24rpx;
  562. }
  563. .Level3che{
  564. width:100%;
  565. height:28rpx;
  566. display: flex;
  567. line-height: 28rpx;
  568. align-items: center;
  569. margin-top: 30rpx;
  570. .title1{
  571. flex: 1;
  572. font-size: 28rpx;
  573. color:#2671E2;
  574. font-weight: 400;
  575. }
  576. .jiantobox{
  577. width: 30rpx;
  578. height: 30rpx;
  579. display: flex;
  580. align-items: center;
  581. .arrow{
  582. width: 28rpx;
  583. height:28rpx;
  584. }
  585. }
  586. }
  587. }
  588. .Level2che{
  589. width:100%;
  590. height: 88rpx;
  591. display: flex;
  592. line-height: 88rpx;
  593. align-items: center;
  594. .title1{
  595. flex: 2;
  596. font-size: 28rpx;
  597. color: #333333;
  598. font-weight: 400;
  599. }
  600. .leve1-jindu{
  601. flex: 3;
  602. display: flex;
  603. justify-content: center;
  604. align-items: center;
  605. .zhixing{
  606. width: 108rpx;
  607. height: 44rpx;
  608. background: #2671E2;
  609. border-radius: 4rpx;
  610. font-size: 28rpx;
  611. text-align: center;
  612. line-height: 44rpx;
  613. color: #FFFFFF;
  614. }
  615. .zhixing2{
  616. width: 108rpx;
  617. height: 44rpx;
  618. background: #F8F8F8;
  619. border-radius: 4rpx;
  620. font-size: 28rpx;
  621. text-align: center;
  622. line-height: 44rpx;
  623. color: #999999;
  624. }
  625. }
  626. .jiantobox{
  627. width: 30rpx;
  628. height: 30rpx;
  629. display: flex;
  630. align-items: center;
  631. .arrow{
  632. width: 30rpx;
  633. height:18rpx;
  634. }
  635. }
  636. }
  637. .Level1che{
  638. width:100%;
  639. height: 94rpx;
  640. background: #F5F5F5;
  641. display: flex;
  642. line-height: 94rpx;
  643. align-items: center;
  644. padding-left: 30rpx;
  645. padding-right: 30rpx;
  646. .title1{
  647. flex: 2;
  648. font-size: 30rpx;
  649. color: #333333;
  650. font-weight: 400;
  651. }
  652. .leve1-jindu{
  653. flex: 3;
  654. .jindutiao{
  655. width: 96%;
  656. height: 28rpx;
  657. background: #D5EEE2;
  658. line-height: 28rpx;
  659. border-radius: 14rpx;
  660. position: relative;
  661. .huanxing{
  662. height: 100%;
  663. background: #4FC78F;
  664. border-radius: 14rpx;
  665. }
  666. .text{
  667. position: absolute;
  668. top: 0rpx;
  669. right: 0rpx;
  670. font-size: 28rpx;
  671. font-weight: 400;
  672. color: #333333;
  673. }
  674. }
  675. }
  676. .jiantobox{
  677. width: 30rpx;
  678. height: 30rpx;
  679. display: flex;
  680. align-items: center;
  681. .arrow{
  682. width: 30rpx;
  683. height:18rpx;
  684. }
  685. }
  686. }
  687. }
  688. .cccccc{
  689. text-align: center;
  690. height: 140rpx;
  691. line-height: 140rpx;
  692. font-size: 30rpx;
  693. }
  694. .ratecenter{
  695. background-color: #FFFFFF;
  696. padding-bottom: 30rpx;
  697. width: 100%;
  698. .ratetetle{
  699. padding: 30rpx;
  700. font-size: 30rpx;
  701. font-weight: 400;
  702. color: #333333;
  703. padding-bottom:6rpx;
  704. }
  705. .rateyuanbox{
  706. width: 100%;
  707. height:210rpx;
  708. padding-bottom: 30rpx;
  709. border-bottom:1rpx solid #E0E0E0;
  710. display: flex;
  711. padding-left: 80rpx;
  712. padding-right: 80rpx;
  713. .rateyuanboxzuo{
  714. width: 30%;
  715. height: 100%;
  716. }
  717. .rateyuanboxyou{
  718. width: 40%;
  719. height: 100%;
  720. }
  721. .boxzuoview{
  722. width: 100%;
  723. height: 140rpx;
  724. }
  725. }
  726. }
  727. .box {
  728. width: 100%;
  729. height: 100%;
  730. background: #F8F8F8;
  731. }
  732. .tab{
  733. height: 88rpx;
  734. border-bottom: 1px solid #E0E0E0;
  735. background: #FFFFFF;
  736. display: flex;
  737. align-items: center;
  738. .tabbox {
  739. flex: 1;
  740. height: 100%;
  741. text-align: center;
  742. line-height: 92rpx;
  743. color: #666666;
  744. font-size: 28rpx;
  745. display: flex;
  746. justify-content: center;
  747. .activecllasscet {
  748. border-bottom: 2px solid #2671E2;
  749. color: #2671E2;
  750. font-weight: 600;
  751. }
  752. }
  753. }
  754. .content{
  755. // height: 1000rpx;/
  756. overflow: hidden;
  757. border-top: 1px solid #E0E0E0;
  758. .content-tips{
  759. background: #fff;
  760. // box-sizing: border-box;
  761. margin-bottom: 20rpx;
  762. overflow: hidden;
  763. .content-first{
  764. padding: 19rpx 30rpx;
  765. display: flex;
  766. justify-content: space-between;
  767. box-sizing: border-box;
  768. // border-top: 1px solid #E0E0E0;
  769. font-weight: 400;
  770. color: #292929;
  771. height: 90rpx;
  772. font-size: 30rpx;
  773. line-height: 30rpx;
  774. .left{
  775. display: flex;
  776. .img{
  777. // margin-top: 19rpx;
  778. width: 52rpx;
  779. height: 52rpx;
  780. border: 1px solid #E0E0E0;
  781. border-radius: 50%;
  782. text-align: center;
  783. line-height: 50rpx;
  784. margin-right: 20rpx;
  785. }
  786. .test{
  787. margin-top: 11rpx;
  788. font-weight: 500;
  789. color: #333333;
  790. }
  791. .edit{
  792. height: 30rpx;
  793. width: 30rpx;
  794. margin-left: 30rpx;
  795. margin-top: 11rpx;
  796. image{
  797. width: 100%;
  798. height: 100%;
  799. }
  800. }
  801. }
  802. .right{
  803. display: flex;
  804. .point{
  805. width: 12rpx;
  806. height: 12rpx;
  807. background: #2B6EFF;
  808. border-radius: 50%;
  809. margin-right: 9rpx;
  810. margin-top: 20rpx;
  811. }
  812. .test{
  813. margin-top: 11rpx;
  814. }
  815. }
  816. }
  817. .content-sec{
  818. border-top: 1px solid #E0E0E0;
  819. padding: 0 30rpx;
  820. height: 270rpx;
  821. position: relative;
  822. .content-sec-lab{
  823. margin-top: 30rpx;
  824. display: flex;
  825. font-size: 30rpx;
  826. font-weight: 400;
  827. color: #666666;
  828. line-height: 46rpx;
  829. .content-sec-lab1{
  830. color: #333333;
  831. }
  832. .content-sec-tips{
  833. max-width:120rpx ;
  834. height: 46rpx;
  835. background: #F2F2F2;
  836. border-radius: 6rpx;
  837. text-align: center;
  838. line-height: 26rpx;
  839. overflow: hidden;
  840. text-overflow:ellipsis;
  841. white-space: nowrap;
  842. font-size: 26rpx;
  843. font-weight: 400;
  844. color: #333333;
  845. margin-right: 20rpx;
  846. box-sizing: border-box;
  847. padding: 10rpx 24rpx;
  848. }
  849. }
  850. .content-sec-num{
  851. position: absolute;
  852. width: 200rpx;
  853. height: 90rpx;
  854. background: #F4F8FD;
  855. border-radius: 12rpx;
  856. font-weight: 400;
  857. color: #2671E2;
  858. line-height: 45rpx;
  859. bottom: 15rpx;
  860. right: 30rpx;
  861. text-align: center;
  862. }
  863. }
  864. .content-last{
  865. padding: 30rpx;
  866. height: 168rpx;
  867. .content-last-con{
  868. width: 690rpx;
  869. height: 108rpx;
  870. background: #F8F8F8;
  871. border-radius: 8rpx;
  872. padding: 14rpx 20rpx;
  873. font-size: 28rpx;
  874. font-weight: 400;
  875. color: #333333;
  876. line-height: 40rpx;
  877. }
  878. }
  879. }
  880. }
  881. .tabchange{
  882. // background: #FFFFFF;
  883. overflow: hidden;
  884. .tabactive1{
  885. .content-tips{
  886. background: #fff;
  887. padding: 0 30rpx;
  888. box-sizing: border-box;
  889. overflow: hidden;
  890. margin-bottom: 20rpx;
  891. .content-first{
  892. margin-top: 19rpx;
  893. display: flex;
  894. justify-content: space-between;
  895. .left{
  896. display: flex;
  897. .img{
  898. width: 52rpx;
  899. height: 52rpx;
  900. background: #FFFFFF;
  901. border: 1px solid #C9C9C9;
  902. border-radius: 50%;
  903. text-align: center;
  904. line-height: 52rpx;
  905. margin-right: 20rpx;
  906. }
  907. .name{
  908. font-weight: 600;
  909. color: #333333;
  910. // margin-left: 20rpx;
  911. margin-top: 11rpx;
  912. }
  913. .status{
  914. width: 110rpx;
  915. height: 42rpx;
  916. background: #FFF9F5;
  917. border-radius: 4rpx;
  918. font-size: 26rpx;
  919. font-weight: 400;
  920. color: #EC8D49;
  921. line-height: 42rpx;
  922. text-align: center;
  923. margin-left: 19rpx;
  924. margin-top: 11rpx;
  925. }
  926. }
  927. .right{
  928. display: flex;
  929. margin-top: 11rpx;
  930. .point{
  931. width: 12rpx;
  932. height: 12rpx;
  933. background: #2B6EFF;
  934. border-radius: 50%;
  935. margin-right: 9rpx;
  936. margin-top: 16rpx;
  937. }
  938. }
  939. }
  940. .content-sec{
  941. display: flex;
  942. justify-content: space-between;
  943. margin-top: 19rpx;
  944. .left{
  945. display: flex;
  946. .cus{
  947. font-size: 30rpx;
  948. font-weight: 400;
  949. color: #666666;
  950. line-height: 30rpx;
  951. }
  952. .arriveNum{
  953. font-size: 30rpx;
  954. font-weight: 400;
  955. line-height: 30rpx;
  956. margin-left: 10rpx;
  957. }
  958. }
  959. .right{
  960. width: 192rpx;
  961. height: 46rpx;
  962. background: #F4F8FD;
  963. border-radius: 6rpx;
  964. text-align: center;
  965. line-height: 46rpx;
  966. font-weight: 400;
  967. color: #2671E2;
  968. }
  969. }
  970. .content-last{
  971. margin: 30rpx 0;
  972. font-size: 30rpx;
  973. font-weight: 400;
  974. color: #666666;
  975. line-height: 30rpx;
  976. }
  977. }
  978. }
  979. .tabactive2{
  980. .tab2-tips{
  981. background: #fff;
  982. // height: 270rpx;
  983. overflow: auto;
  984. margin-bottom: 20rpx;
  985. .tab2-first{
  986. // height: 150rpx;
  987. border-bottom: 1px solid #E0E0E0;
  988. padding: 0 30rpx;
  989. margin-top: 19rpx;
  990. box-sizing: border-box;
  991. .tab2-first-1{
  992. display: flex;
  993. justify-content: space-between;
  994. // height: 75rpx;
  995. .tab2-first-left{
  996. display: flex;
  997. .img{
  998. width: 52rpx;
  999. height: 52rpx;
  1000. background: #FFFFFF;
  1001. border: 1px solid #C9C9C9;
  1002. border-radius: 50%;
  1003. text-align: center;
  1004. line-height: 52rpx;
  1005. }
  1006. .name{
  1007. font-weight: 600;
  1008. color: #333333;
  1009. margin-left: 20rpx;
  1010. margin-top: 11rpx;
  1011. }
  1012. }
  1013. .tab2-first-right{
  1014. font-size: 30rpx;
  1015. font-weight: 400;
  1016. color: #666666;
  1017. margin-top: 11rpx;
  1018. }
  1019. }
  1020. .tab2-first-foot{
  1021. margin-top: 19rpx;
  1022. margin-bottom: 30rpx;
  1023. font-size: 30rpx;
  1024. font-weight: 400;
  1025. color: #666666;
  1026. line-height: 30rpx;
  1027. }
  1028. }
  1029. .tab2-sec{
  1030. height: 120rpx;
  1031. padding: 30rpx;
  1032. float: right;
  1033. .tab-sec-edit{
  1034. width: 156rpx;
  1035. height: 60rpx;
  1036. background: #FFFFFF;
  1037. border-radius: 4px;
  1038. border: 1px solid #2671E2;
  1039. text-align: center;
  1040. line-height: 60rpx;
  1041. font-weight: 400;
  1042. color: #2671E2;
  1043. }
  1044. }
  1045. }
  1046. }
  1047. }
  1048. .pon-foot{
  1049. position: fixed;
  1050. width: 750rpx;
  1051. height: 100rpx;
  1052. background: #FFFFFF;
  1053. box-shadow: 0px -2rpx 8rpx 0rpx rgba(224, 224, 224, 0.5);
  1054. bottom: 0;
  1055. display: flex;
  1056. justify-content: space-around;
  1057. align-items: center;
  1058. // padding-top: 24rpx;
  1059. box-sizing: border-box;
  1060. // padding: ;
  1061. .foot-tab{
  1062. text-align: center;
  1063. width: 270rpx;
  1064. height: 70rpx;
  1065. line-height: 70rpx;
  1066. background: #2671E2;
  1067. box-shadow: 0px -2rpx 8rpx 0px rgba(224, 224, 224, 0.5);
  1068. border-radius: 6rpx;
  1069. font-size: 30rpx;
  1070. font-weight: 400;
  1071. color: #FFFFFF;
  1072. }
  1073. }
  1074. .upon-sec-tips{
  1075. // max-width:120rpx ;
  1076. height: 46rpx;
  1077. background: #F2F2F2;
  1078. border-radius: 6rpx;
  1079. text-align: center;
  1080. line-height: 26rpx;
  1081. overflow: hidden;
  1082. text-overflow:ellipsis;
  1083. white-space: nowrap;
  1084. font-size: 26rpx;
  1085. font-weight: 400;
  1086. color: #333333;
  1087. margin-right: 20rpx;
  1088. margin-top: 20rpx;
  1089. box-sizing: border-box;
  1090. padding: 10rpx 24rpx;
  1091. }
  1092. .conmsg-msg-lab-img{
  1093. width: 14rpx;
  1094. height: 30rpx;
  1095. margin-top: 6rpx;
  1096. margin-left: auto;
  1097. image{
  1098. width: 100%;
  1099. height: 100%;
  1100. }
  1101. }
  1102. </style>