xyf.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  1. <template>
  2. <view>
  3. <view class="list flex justify-center">
  4. <view class="list-box">
  5. <view class="list-box-item">
  6. <view class="list flex justify-between">
  7. <view class="title">
  8. 我的信用分
  9. </view>
  10. <view style="color: #999; font-size: 23rpx;line-height: 40rpx;">
  11. 更新时间:{{jinduvlue.symbol}}{{ jinduvlue.time }}
  12. </view>
  13. </view>
  14. <view style="width: 100%; height: 400rpx;">
  15. <uni-ec-canvas class="uni-ec-canvas" id="line-chart" canvas-id="multi-charts-line" :ec="ec" ref="canvas"></uni-ec-canvas>
  16. </view>
  17. <view class="list flex justify-between">
  18. <view class="title" style="color: #00c18a;font-size: 23rpx;">
  19. ↑ 比较上个月 {{ jinduvlue.diff }}分
  20. </view>
  21. <view style="color: #999; font-size: 23rpx;line-height: 40rpx;">
  22. 满分100分
  23. </view>
  24. </view>
  25. </view>
  26. <view class="list-box-item">
  27. <view class="list flex justify-between">
  28. <view class="title">
  29. 信用分趋势
  30. </view>
  31. <view class="flex" style="color: #999; font-size: 23rpx;line-height: 40rpx;">
  32. <view @tap="dianji(6)" :class="yvefen === 6 ? 'time-boxs' : 'time-box'"
  33. style="padding: 5rpx 18rpx; border-radius: 8rpx;">
  34. 6个月</view>
  35. <view @tap="dianji(12)"
  36. :class="yvefen === 6 ? 'time-box' : 'time-boxs'"
  37. style="padding: 5rpx 18rpx; border-radius: 8rpx; margin-left: 20rpx;">
  38. 12个月</view>
  39. </view>
  40. </view>
  41. <view style="width: 100%; height: 400rpx;">
  42. <uni-ec-canvas class="uni-ec-canvas" id="line-chart2" canvas-id="multi-charts-line2" :ec="ec2" ref="canvas2"></uni-ec-canvas>
  43. </view>
  44. </view>
  45. <view class="list-box-item">
  46. <view class="list flex justify-between">
  47. <view class="title">
  48. 信用记录
  49. </view>
  50. <view style="color: #999; font-size: 23rpx;line-height: 40rpx;">
  51. 查看全部
  52. </view>
  53. </view>
  54. <view v-for="(item,index) in list.slice(0, 3)" :key="index">
  55. <view class="flex" style="padding: 30rpx 0; margin: 20rpx 0;">
  56. <view>
  57. <image v-if="globalImages" :src="globalImages + 'images/credit/chidao2.png'"
  58. style="width: 80rpx;height: 80rpx;margin-left: 30rpx;" mode=""></image>
  59. </view>
  60. <view style="margin-left: 30rpx; line-height: 40rpx;">
  61. <view v-if="item.type==2">{{item.reason}}扣分</view>
  62. <view v-else>{{item.reason}}加分</view>
  63. <view>
  64. 订单号:{{ item.ordersNo }}
  65. </view>
  66. <view style="font-size: 23rpx; color: #999;">
  67. {{item.createTime}}
  68. </view>
  69. </view>
  70. <view style="color: #00c18a;position: absolute; right: 130rpx;">
  71. <view class="list-box-item-h" v-if="item.type==2">
  72. - {{item.lastCreditScore - item.nextCreditScore}} 分
  73. </view>
  74. <view class="list-box-item-hs" v-else>
  75. + {{item.nextCreditScore - item.lastCreditScore}} 分
  76. </view>
  77. </view>
  78. </view>
  79. <!-- <view class="list-box-item-h" v-if="item.type==2">
  80. 扣分:{{item.lastCreditScore - item.nextCreditScore}}
  81. </view>
  82. <view class="list-box-item-hs" v-else>
  83. 加分:{{item.nextCreditScore - item.lastCreditScore}}
  84. </view>
  85. <view class="list-box-item-title" v-if="item.type==2">
  86. 信用分变化:当前{{item.lastCreditScore}}分,扣除{{item.lastCreditScore - item.nextCreditScore}}分,最新信用分{{item.nextCreditScore}}分
  87. </view>
  88. <view class="list-box-item-title" v-else>
  89. 信用分变化:当前{{item.lastCreditScore}}分,增加{{item.nextCreditScore - item.lastCreditScore}}分,最新信用分{{item.nextCreditScore}}分
  90. </view>
  91. <view class="list-box-item-title">
  92. 原因:{{item.reason}}
  93. </view>
  94. <view class="list-box-item-title">
  95. 修改时间:{{item.createTime}}
  96. </view> -->
  97. </view>
  98. </view>
  99. <view class="list-box-item">
  100. <view class="title">
  101. 评分规则
  102. </view>
  103. <view style="margin-top: 20rpx;">
  104. 扣分项
  105. </view>
  106. <view class="boxs">
  107. <view class="flex align-center"
  108. style="background: #ffe9e9; border-radius: 14rpx; padding: 30rpx 0; margin: 20rpx 0;">
  109. <view>
  110. <image v-if="globalImages" :src="globalImages + 'images/credit/shuangyve.png'"
  111. style="width: 25rpx;height: 25rpx;margin-left: 30rpx;" mode=""></image>
  112. </view>
  113. <view style="margin-left: 30rpx; line-height: 40rpx;">
  114. <view> 爽约</view>
  115. </view>
  116. <view style="color: #f56c6c;position: absolute; right: 130rpx;">
  117. -10分
  118. </view>
  119. </view>
  120. <view class="flex align-center "
  121. style="background: #ffe9e9; border-radius: 14rpx; padding: 30rpx 0; margin: 20rpx 0;">
  122. <view>
  123. <image v-if="globalImages" :src="globalImages + 'images/credit/chidao.png'"
  124. style="width: 25rpx;height: 25rpx;margin-left: 30rpx;" mode=""></image>
  125. </view>
  126. <view style="margin-left: 30rpx; line-height: 40rpx;">
  127. <view>迟到</view>
  128. </view>
  129. <view style="color: #f56c6c;position: absolute; right: 130rpx;">
  130. -5分
  131. </view>
  132. </view>
  133. <view class="flex align-center"
  134. style="background: #ffe9e9; border-radius: 14rpx; padding: 30rpx 0; margin: 20rpx 0;">
  135. <view>
  136. <image v-if="globalImages" :src="globalImages + 'images/credit/cehliang.png'"
  137. style="width: 25rpx;height: 25rpx;margin-left: 30rpx;" mode=""></image>
  138. </view>
  139. <view style="margin-left: 30rpx; line-height: 40rpx;">
  140. <view>损坏车辆</view>
  141. </view>
  142. <view style="color: #f56c6c;position: absolute; right: 130rpx;">
  143. -3分
  144. </view>
  145. </view>
  146. <view class="flex align-center"
  147. style="background: #ffe9e9; border-radius: 14rpx; padding: 30rpx 0; margin: 20rpx 0;">
  148. <view>
  149. <image v-if="globalImages" :src="globalImages + 'images/credit/xiyan.png'"
  150. style="width: 25rpx;height: 25rpx;margin-left: 30rpx;" mode=""></image>
  151. </view>
  152. <view style="margin-left: 30rpx; line-height: 40rpx;">
  153. <view>车内吸烟</view>
  154. </view>
  155. <view style="color: #f56c6c;position: absolute; right: 130rpx;">
  156. -2分
  157. </view>
  158. </view>
  159. </view>
  160. <view style="margin-top: 20rpx;">
  161. 加分项
  162. </view>
  163. <view class="boxs">
  164. <view class="flex align-center"
  165. style="background: #e8fbf6; border-radius: 14rpx; padding: 30rpx 0; margin: 20rpx 0;">
  166. <view>
  167. <image v-if="globalImages" :src="globalImages + 'images/credit/sijihaoping.png'"
  168. style="width: 25rpx;height: 25rpx;margin-left: 30rpx;" mode=""></image>
  169. </view>
  170. <view style="margin-left: 30rpx; line-height: 40rpx;">
  171. <view>司机好评</view>
  172. </view>
  173. <view style="color: #00c18a;position: absolute; right: 130rpx;">
  174. +1分
  175. </view>
  176. </view>
  177. <view class="flex align-center "
  178. style="background: #e8fbf6; border-radius: 14rpx; padding: 30rpx 0; margin: 20rpx 0;">
  179. <view>
  180. <image v-if="globalImages" :src="globalImages + 'images/credit/anshi.png'"
  181. style="width: 25rpx;height: 25rpx;margin-left: 30rpx;" mode=""></image>
  182. </view>
  183. <view style="margin-left: 30rpx; line-height: 40rpx;">
  184. <view>按时支付车费</view>
  185. </view>
  186. <view style="color: #00c18a;position: absolute; right: 130rpx;">
  187. +2分
  188. </view>
  189. </view>
  190. </view>
  191. </view>
  192. <view class="list-box-item">
  193. <view class="title">
  194. 匹配优先级
  195. </view>
  196. <view class="flex align-center justify-between" style="margin-top: 20rpx;">
  197. <view>
  198. 当前优先级: {{ jinduz }}
  199. </view>
  200. <view>
  201. {{ jinduvlue.score }}分
  202. </view>
  203. </view>
  204. <view style="width: 100%; height: 70rpx;">
  205. <uni-ec-canvas class="uni-ec-canvas" id="line-chart3" canvas-id="multi-charts-line3" :ec="ec3" ref="canvas3"></uni-ec-canvas>
  206. </view>
  207. <view class="flex align-center add_name" style="line-height: 60rpx;">
  208. <view class="orgin"></view>80 — 100分:高优先级,优先匹配优质订单
  209. </view>
  210. <view class="flex align-center add_name" style="line-height: 60rpx;">
  211. <view class="orgin"></view>60 — 80分:中优先级,正常匹配订单
  212. </view>
  213. <view class="flex align-center add_name" style="line-height: 60rpx;">
  214. <view class="orgin"></view>0 — 60分:低优先级,订单匹配受限
  215. </view>
  216. <view class="flex "
  217. style="background: #fcf6ec; border-radius: 14rpx; padding: 20rpx 0; margin: 20rpx 0;">
  218. <view style="margin-top: 10rpx;">
  219. <image v-if="globalImages" :src="globalImages + 'images/credit/jianyi.png'"
  220. style="width: 25rpx;height: 35rpx;margin-left: 30rpx;" mode=""></image>
  221. </view>
  222. <view style="margin-left: 20rpx; line-height: 40rpx;">
  223. <view>提升建议</view>
  224. <view style="color: #999; font-size: 24rpx;">
  225. 准时接单、保持良好服务态度可提高信用分
  226. </view>
  227. </view>
  228. </view>
  229. </view>
  230. <view class="list-box-item">
  231. <view class="title">
  232. 申诉通道
  233. </view>
  234. <textarea placeholder="如对扣分有异议,可在扣分后7天内提交申诉,平台将在3个工作日内处理。申诉结果将通过信息中心通知您。" v-model="content"
  235. class="feedback-textare" />
  236. <view class="pay_btns" @tap="yesappeal()">确认申诉</view>
  237. <view class="list_box" @click="bindTo('/my/appeal/record')">
  238. <view class="box_left">查看历史申诉记录</view>
  239. <u-icon name="arrow-right"></u-icon>
  240. </view>
  241. </view>
  242. </view>
  243. </view>
  244. <empty v-if="list.length==0 && scores.length==0 && scores.length==0" />
  245. </view>
  246. </template>
  247. <script>
  248. import empty from '../../components/empty.vue'
  249. import uniEcCanvas from '@/components/uni-ec-canvas/uni-ec-canvas';
  250. import * as echarts from '@/components/uni-ec-canvas/echarts.js';
  251. import { waitForGlobalImages } from '@/utils/globalImageLoader'
  252. export default {
  253. components: {
  254. empty,
  255. uniEcCanvas
  256. },
  257. data() {
  258. return {
  259. list: [],
  260. page: 1,
  261. limit: 10,
  262. pages: 1,
  263. ec: {
  264. option: {}
  265. },
  266. ec2: {
  267. option: {}
  268. },
  269. ec3: {
  270. option: {}
  271. },
  272. globalImages: '',
  273. content: '',
  274. yvefen: 6,
  275. jinduvlue: {},
  276. jinduz: '',
  277. months: [],
  278. scores: [],
  279. };
  280. },
  281. onLoad() {
  282. waitForGlobalImages().then((path) => {
  283. console.log('✅ 全局图片路径:', path)
  284. this.globalImages = path
  285. })
  286. uni.showLoading({
  287. title: '加载中...'
  288. })
  289. this.getList()
  290. this.getScore()
  291. this.getFilledScore()
  292. },
  293. //下拉刷新
  294. onPullDownRefresh() {
  295. this.page = 1
  296. this.getList()
  297. },
  298. //上拉加载更多
  299. onReachBottom() {
  300. if (this.page < this.pages) {
  301. this.page += 1
  302. this.getList()
  303. }
  304. },
  305. methods: {
  306. // 进度条环形图数据
  307. getScore() {
  308. let data = {
  309. isDriver: 1,
  310. }
  311. this.$Request.getT('/app/creditRecord/getScore', data).then(res => {
  312. if (res.code == 0) {
  313. this.jinduvlue = res.data
  314. if (res.data.score >= 80) {
  315. this.jinduz = '高'
  316. } else if (score >= 60) {
  317. this.jinduz = '中'
  318. } else {
  319. this.jinduz = '低'
  320. }
  321. this.$nextTick(() => {
  322. this.$refs.canvas.init(this.initChart);
  323. this.$refs.canvas3.init(this.initChart3);
  324. })
  325. } else {
  326. uni.showToast({
  327. title: res.msg,
  328. icon: 'none'
  329. })
  330. }
  331. })
  332. },
  333. // 折线图 数据
  334. getFilledScore() {
  335. let data2 = {
  336. isDriver: 1,
  337. several: this.yvefen
  338. }
  339. this.$Request.getT('/app/creditRecord/getFilledScore', data2).then(res => {
  340. if (res.code == 0) {
  341. this.months = Object.keys(res.data); // 获取所有月份
  342. this.scores = Object.values(res.data); // 获取所有分数
  343. this.$nextTick(() => {
  344. this.$refs.canvas2.init(this.initChart2);
  345. })
  346. } else {
  347. uni.showToast({
  348. title: res.msg,
  349. icon: 'none'
  350. })
  351. }
  352. })
  353. },
  354. dianji(value) {
  355. this.yvefen = value
  356. this.getFilledScore()
  357. },
  358. // 确认申诉
  359. yesappeal() {
  360. const data = {
  361. reason: this.content,
  362. // recordId: ''
  363. }
  364. this.$Request.postT("/app/appeal/insertAppeal", data).then(res => {
  365. if (res.code == 0) {
  366. this.content = ''
  367. uni.showToast({
  368. title: '申诉成功',
  369. icon: 'success',
  370. duration: 2000
  371. })
  372. } else {
  373. uni.showToast({
  374. title: res.message || '申诉失败',
  375. icon: 'none',
  376. duration: 2000
  377. })
  378. }
  379. });
  380. },
  381. bindTo(name) {
  382. let token = this.$queue.getData("token");
  383. if (token) {
  384. uni.navigateTo({
  385. url: name
  386. })
  387. }
  388. },
  389. //获取信用列表
  390. getList() {
  391. let data = {
  392. page: this.page,
  393. limit: this.limit,
  394. isDriver: 0,
  395. }
  396. this.$Request.getT('/app/creditRecord/getCreditRecordList', data).then(res => {
  397. uni.stopPullDownRefresh()
  398. uni.hideLoading()
  399. if (res.code == 0) {
  400. this.pages = res.data.pages
  401. if (this.page == 1) {
  402. this.list = res.data.records
  403. } else {
  404. this.list = [...this.list, ...res.data.records]
  405. }
  406. } else {
  407. uni.showToast({
  408. title: res.msg,
  409. icon: 'none'
  410. })
  411. }
  412. })
  413. },
  414. initChart(canvas, width, height, canvasDpr) {
  415. let chart = echarts.init(canvas, null, {
  416. width: width,
  417. height: height,
  418. devicePixelRatio: canvasDpr
  419. });
  420. let max = 100;
  421. let value = this.jinduvlue.score;
  422. let rate = Math.round((value * 100) / max);
  423. canvas.setChart(chart);
  424. let option = {
  425. title: [
  426. {
  427. text: '{b|' + rate + '}\n'+'{a|良好}',
  428. show: true,
  429. x: 'center',
  430. y: 'center',
  431. textStyle: {
  432. rich: {
  433. a: {
  434. fontSize: 17,
  435. color: '#999',
  436. padding: [0, 0,5, 0],
  437. },
  438. b: {
  439. fontSize: 35,
  440. color: '#333333',
  441. fontFamily: 'alibabaPuhuiM',
  442. fontWeight: 'bold'
  443. },
  444. },
  445. },
  446. },
  447. ],
  448. polar: {
  449. center: ['50%', '50%'],
  450. radius: ['60%', '75%'],
  451. },
  452. angleAxis: {
  453. max: max,
  454. show: false,
  455. },
  456. radiusAxis: {
  457. type: 'category',
  458. show: true,
  459. axisLabel: {
  460. show: false,
  461. },
  462. axisLine: {
  463. show: false,
  464. },
  465. axisTick: {
  466. show: false,
  467. },
  468. },
  469. series: [
  470. {
  471. name: '',
  472. type: 'bar',
  473. roundCap: true,
  474. showBackground: true,
  475. backgroundStyle: {
  476. color: '#e8fbf6',
  477. },
  478. data: [value],
  479. coordinateSystem: 'polar',
  480. itemStyle: {
  481. normal: {
  482. color: '#00c18a'
  483. },
  484. },
  485. },
  486. ],
  487. };
  488. chart.setOption(option);
  489. return chart;
  490. },
  491. initChart2(canvas, width, height, canvasDpr) {
  492. let chart = echarts.init(canvas, null, {
  493. width: width,
  494. height: height,
  495. devicePixelRatio: canvasDpr
  496. });
  497. canvas.setChart(chart);
  498. let option = {
  499. grid: {
  500. top: '15%',
  501. left: '2%',
  502. right: '5%',
  503. bottom: '3%',
  504. containLabel: true,
  505. },
  506. tooltip: {
  507. trigger: "axis",
  508. axisPointer: {
  509. type: "line",
  510. },
  511. backgroundColor: "rgba(254, 107, 1, 0.1)",
  512. borderColor: "#fe6b01",
  513. textStyle: {
  514. color: "#333",
  515. },
  516. },
  517. xAxis: {
  518. type: "category",
  519. data: this.months,
  520. axisLine: {
  521. lineStyle: {
  522. color: "rgba(60,132,163,0.4)", // x轴线颜色
  523. },
  524. },
  525. axisTick: {
  526. show: false, // 是否显示x轴的刻度
  527. },
  528. axisLabel: {
  529. interval: 0,
  530. color: "#333",
  531. fontSize: 12,
  532. rotate: 45,
  533. },
  534. boundaryGap: false, // true折线图以x轴刻度为中心点 false折线图折线从头开始
  535. },
  536. yAxis: {
  537. type: "value",
  538. max: 100,
  539. min: 1,
  540. axisTick: {
  541. show: false,
  542. },
  543. axisLine: {
  544. show: false,
  545. },
  546. axisLabel: {
  547. color: "#333",
  548. fontSize: 12,
  549. formatter: function (value) {
  550. return value + "";
  551. }
  552. },
  553. splitLine: {
  554. show: true,
  555. lineStyle: {
  556. // type: "dashed",
  557. color: "#999",
  558. },
  559. },
  560. },
  561. series: [
  562. {
  563. name: "信用分",
  564. type: "line",
  565. smooth: true,
  566. areaStyle: {
  567. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  568. {
  569. offset: 0,
  570. color: "#00c18a",
  571. },
  572. {
  573. offset: 1,
  574. color: "rgba(199, 255, 239,0.4)",
  575. },
  576. ]),
  577. },
  578. lineStyle: {
  579. width: 2,
  580. color: "#00c18a",
  581. },
  582. // 设置节点样式
  583. showSymbol: true,
  584. symbol: 'circle', // 可以选择 circle, diamond, pin 等
  585. symbolSize: 13, // 节点大小
  586. itemStyle: {
  587. color: "#00c18a", // 节点颜色
  588. },
  589. data: this.scores
  590. },
  591. ]
  592. };
  593. chart.setOption(option);
  594. return chart;
  595. },
  596. initChart3(canvas, width, height, canvasDpr) {
  597. let chart = echarts.init(canvas, null, {
  598. width: width,
  599. height: height,
  600. devicePixelRatio: canvasDpr
  601. });
  602. canvas.setChart(chart);
  603. let option = {
  604. grid: {
  605. top: '3%',
  606. bottom: '3%',
  607. left: '0%',
  608. right: '0%',
  609. },
  610. xAxis: {
  611. show: false,
  612. type: 'value',
  613. boundaryGap: [0, 0],
  614. },
  615. yAxis: [
  616. {
  617. type: 'category',
  618. data: [''],
  619. axisLine: { show: false },
  620. axisTick: [
  621. {
  622. show: false,
  623. },
  624. ],
  625. },
  626. ],
  627. series: [
  628. {
  629. name: '背景',
  630. type: 'bar',
  631. barWidth: 10,
  632. barGap: '-100%',
  633. data: [100],
  634. itemStyle: {
  635. normal: {
  636. color: '#e8fbf6',
  637. borderWidth: 1,
  638. borderColor: '#e8fbf6',
  639. barBorderRadius: 10,
  640. },
  641. },
  642. label: {
  643. show: false,
  644. },
  645. },
  646. {
  647. name: '匹配度',
  648. type: 'bar',
  649. itemStyle: {
  650. normal: {
  651. barBorderRadius: 10,
  652. color: '#00c18a',
  653. },
  654. },
  655. barWidth: 10,
  656. data: [this.jinduvlue.score],
  657. },
  658. ],
  659. };
  660. chart.setOption(option);
  661. return chart;
  662. },
  663. },
  664. }
  665. </script>
  666. <style lang="scss">
  667. .time-boxs {
  668. border: 1rpx #00c18a solid;
  669. background: #e8fbf6;
  670. color: #00c18a;
  671. }
  672. .time-box {
  673. border: 1rpx #999 solid;
  674. background: #fff;
  675. color: #999;
  676. }
  677. page {
  678. background: #F5F5F5;
  679. }
  680. .title {
  681. font-size: 32rpx;
  682. font-family: PingFang SC;
  683. color: #333333;
  684. }
  685. .list {
  686. width: 100%;
  687. .list-box {
  688. width: 686rpx;
  689. .list-box-item {
  690. width: 100%;
  691. // height: 200rpx;
  692. border-radius: 16rpx;
  693. background-color: #ffffff;
  694. margin-top: 20rpx;
  695. padding: 30rpx 30rpx;
  696. }
  697. .list-box-item-h {
  698. color: red;
  699. font-weight: bold;
  700. }
  701. .list-box-item-hs {
  702. color: green;
  703. font-weight: bold;
  704. }
  705. .list-box-item-title {
  706. margin-top: 10rpx;
  707. color: #999999;
  708. }
  709. }
  710. }
  711. .add_name {
  712. font-family: PingFang SC;
  713. font-weight: 500;
  714. font-size: 28rpx;
  715. color: #1F1F1F;
  716. }
  717. .orgin {
  718. width: 16rpx;
  719. height: 16rpx;
  720. background: #fe6b01;
  721. border-radius: 50%;
  722. margin-right: 20rpx;
  723. }
  724. .feedback-textare {
  725. height: 200upx;
  726. font-size: 24upx;
  727. line-height: 50upx;
  728. width: 100%;
  729. box-sizing: border-box;
  730. padding: 20upx 20upx 0;
  731. border: #e4e7ed 1rpx solid;
  732. background: #f5f5f5;
  733. border-radius: 15rpx;
  734. margin-top: 20rpx;
  735. }
  736. .pay_btns {
  737. width: 90%;
  738. margin: 0 auto 40rpx;
  739. text-align: center;
  740. background: #00c18a;
  741. height: 80rpx;
  742. border-radius: 16rpx;
  743. color: #ffffff;
  744. line-height: 80rpx;
  745. margin-top: 20rpx;
  746. }
  747. .list_box {
  748. display: flex;
  749. height: 110rpx;
  750. margin: 0 30rpx;
  751. }
  752. .box_left {
  753. flex: 1;
  754. display: flex;
  755. justify-content: left;
  756. align-items: center;
  757. }
  758. </style>