Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

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