AI营销辅助 普强使用
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

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