testResult.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. <template>
  2. <view class="bg">
  3. <view style="overflow: hidden;"></view>
  4. <view class="scale_name">测测你的智力有多高?</view>
  5. <view class="test_time">测试时间:{{ time }}</view>
  6. <view class="role_medal">测试结果</view>
  7. <view class="chart_wrap">
  8. <view class="situation">
  9. <view class="situation_title">测评得分</view>
  10. <view class="situation_score">分数:<text>{{ totalScore.totalScore }}</text>(满分60)</view>
  11. <view class="situation_conclusion">结论:</view>
  12. <image class="situation_role"
  13. :src="`https://test.jue-ming.com:8849/api/show?filePath=./webo/RuiWen/${roleInfo[totalScore.totalScoreDesc]}.png`"
  14. mode="widthFix">
  15. </image>
  16. </view>
  17. <view class="radar_wrap">
  18. <leiDa2 :options="options" />
  19. </view>
  20. <view class="my_table">
  21. <view class="t-head">
  22. <view width="50%">维度</view>
  23. <view>得分</view>
  24. <view>满分</view>
  25. </view>
  26. <view class="t-body" v-for="(item, index) in scoreList">
  27. <view>{{ indicator[index].name }}</view>
  28. <view>{{ item }}</view>
  29. <view style="border-right: 0;">45</view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="rgtd_box">
  34. <view class="rgtd_box_title"><text>总评</text></view>
  35. <view class="rgtd_box_wrap">
  36. <view style="overflow: hidden;"></view>
  37. <!-- <view v-for="(item, index) in resultObj">
  38. <template v-if="index > 0"> -->
  39. <!-- <view class="dimension_name"><text>{{item.name}}</text></view> -->
  40. <view class="dimension_title">
  41. 得分
  42. </view>
  43. <view class="dimension_content dc1">
  44. <text>{{ totalScore.totalScore }}</text>
  45. </view>
  46. <view class="dimension_title">
  47. 总评结论
  48. </view>
  49. <view class="dimension_content dc1">
  50. <text>{{ totalScore.totalScoreDesc }}</text>
  51. </view>
  52. <view class="dimension_title">
  53. 总评说明
  54. </view>
  55. <view class="dimension_content">
  56. <text>{{ totalScore.totalScoreUnscramble }}</text>
  57. </view>
  58. </view>
  59. </view>
  60. <view class="rgtd_box" v-for="item in dimensions">
  61. <view class="rgtd_box_title"><text>{{ item.name }}</text></view>
  62. <view class="rgtd_box_wrap">
  63. <view style="overflow: hidden;"></view>
  64. <!-- <view v-for="(item, index) in resultObj">
  65. <template v-if="index > 0"> -->
  66. <!-- <view class="dimension_name"><text>{{item.name}}</text></view> -->
  67. <view class="dimension_title">
  68. 得分
  69. </view>
  70. <view class="dimension_content dc1">
  71. <text>{{ item.score }}</text>
  72. </view>
  73. <view class="dimension_title">
  74. 维度结论
  75. </view>
  76. <view class="dimension_content dc1">
  77. <text>{{ item.conclusion }}</text>
  78. </view>
  79. <view class="dimension_title">
  80. 维度说明
  81. </view>
  82. <view class="dimension_content">
  83. {{ item.Describe }}
  84. </view>
  85. <view class="dimension_title">
  86. 维度解释
  87. </view>
  88. <view class="dimension_content">
  89. {{ item.unscramble }}
  90. </view>
  91. </view>
  92. </view>
  93. <view class="report_desc">
  94. <view class="desc_title">报告阅读说明</view>
  95. <view class="desc_txt">谢谢您的参与,阅读本报告时,请注意以下内容:</view>
  96. <view style="display: flex;">
  97. <view class="list_mark">·</view>
  98. <view class="desc_txt">本结果仅供参考,不可作为临床诊断的依据;</view>
  99. </view>
  100. <view style="display: flex;">
  101. <view class="list_mark">·</view>
  102. <view class="desc_txt">如对报告有不理解的地方,建议咨询专业人员;</view>
  103. </view>
  104. <view style="display: flex;">
  105. <view class="list_mark">·</view>
  106. <view class="desc_txt">如结果与你自己或他人的感受有出入,可回忆在测试时是否有事情影响到你,或自己回答时是否有所顾虑。</view>
  107. </view>
  108. </view>
  109. </view>
  110. </template>
  111. <script>
  112. import {
  113. getRecordById
  114. } from "@/api/index.js";
  115. import {
  116. photoUrl
  117. } from "@/common/config.js"
  118. const photoUrls = `${photoUrl}api/show?filePath=./webo`
  119. import {
  120. getTestTime
  121. } from "@/utils/util.js"
  122. import leiDa2 from "@/components/mpvueEcharts/leiDa2.vue"
  123. import options from "./echartsData.js";
  124. export default {
  125. components: {
  126. leiDa2
  127. },
  128. data() {
  129. return {
  130. photoUrl: photoUrl,
  131. isChecked: true,
  132. isShake: false,
  133. scaleDetail: {},
  134. questionList: [],
  135. currentQuestion: {},
  136. currentAnswerList: [],
  137. currentIndex: 0,
  138. userAnswerList: [],
  139. resultId: '',
  140. isLoading: false,
  141. isDisbale: false,
  142. resultObj: [],
  143. resultId: '',
  144. scoreNum: 0,
  145. maxScore: 450,
  146. minScore: 0,
  147. keywords: '',
  148. characteristic: '', // 特点
  149. time: '',
  150. indicator: [],
  151. scoreList: [],
  152. totalScore: {},
  153. dimensions: [],
  154. roleInfo: {
  155. '智力水平低下': 'role1',
  156. '智力水平中下': 'role2',
  157. '智力水平低下': 'role3',
  158. '智力水平中等': 'role4',
  159. '智力水平优秀': 'role5'
  160. },
  161. options: options
  162. }
  163. },
  164. onLoad(options) {
  165. if (options && options.resultId) {
  166. this.resultId = options.resultId
  167. this.getScaleTestResults(this.resultId);
  168. }
  169. },
  170. computed: {
  171. percentage() {
  172. return ((this.scoreNum / this.maxScore) * 627) + 'rpx'
  173. }
  174. },
  175. methods: {
  176. getScaleTestResults(id) {
  177. let _this = this;
  178. _this.$request
  179. .get({
  180. url: `${getRecordById}?id=${id}`,
  181. loadingTip: "加载中...",
  182. data: {},
  183. })
  184. .then(
  185. (res) => {
  186. if (res.code == 200) {
  187. let testResult = JSON.parse(res.data?.userRecordEntity?.testResult);
  188. console.log(testResult)
  189. this.time = getTestTime(res.data.userRecordEntity.testDate);
  190. this.indicator = testResult.chartModule.chartBody.indicator;
  191. this.scoreList = testResult.chartModule.chartBody.groupData[0].value;
  192. this.totalScore = testResult.totalScore[0];
  193. this.dimensions = testResult.dimensions;
  194. this.options.radar.indicator = this.indicator;
  195. this.options.series[0].data[1].value = this.scoreList;
  196. } else if (res.code == 401) {} else {
  197. (res) => {
  198. console.log("世界上绝对绝对绝对绝对绝对的", res);
  199. }
  200. }
  201. })
  202. },
  203. getAdvantage(str) {
  204. let tempArr = str.split("——");
  205. let title = tempArr[0].split(".")
  206. let advant = {
  207. title: title[1],
  208. content: tempArr[1]
  209. }
  210. return advant
  211. },
  212. getTips(str) {
  213. let temp = str.split(':');
  214. return `${temp[0]}是指${temp[1]}`
  215. }
  216. }
  217. }
  218. </script>
  219. <style lang="less" scoped>
  220. .bg {
  221. width: 100%;
  222. background: #5F7CFF;
  223. position: relative;
  224. padding-bottom: 100rpx;
  225. }
  226. .scale_name {
  227. font-family: 'Alibaba PuHuiTi 2.0';
  228. font-weight: bold;
  229. font-size: 42rpx;
  230. color: #FFFFFF;
  231. margin: 20rpx 0 0 32rpx;
  232. }
  233. .test_time {
  234. font-family: 'Alibaba PuHuiTi 2.0';
  235. font-weight: normal;
  236. font-size: 28rpx;
  237. color: #ffffff;
  238. margin-left: 32rpx;
  239. }
  240. .role_medal {
  241. width: 205rpx;
  242. line-height: 53rpx;
  243. background: #FFFFFF;
  244. border-radius: 27rpx;
  245. font-family: 'Alibaba PuHuiTi 2.0';
  246. font-weight: normal;
  247. font-size: 32rpx;
  248. color: #333333;
  249. text-align: center;
  250. position: absolute;
  251. top: 36rpx;
  252. right: 25rpx;
  253. }
  254. .role_wrap {
  255. position: relative;
  256. }
  257. .role_char {
  258. width: 714rpx;
  259. height: 156rpx;
  260. display: flex;
  261. justify-content: space-around;
  262. align-items: center;
  263. position: absolute;
  264. left: 18rpx;
  265. bottom: 0;
  266. }
  267. .char_item {
  268. width: 30%;
  269. font-family: 'ZhankuKuaiLeTi';
  270. font-weight: 800;
  271. font-size: 36rpx;
  272. color: #333333;
  273. line-height: 52rpx;
  274. text-align: center;
  275. }
  276. .shadow_img {
  277. display: block;
  278. width: 170rpx;
  279. position: absolute;
  280. left: 50%;
  281. bottom: -6rpx;
  282. transform: translateX(-50%);
  283. }
  284. .role_name {
  285. text-align: center;
  286. margin: 202rpx 0 0 0;
  287. }
  288. .role_name image {
  289. width: 550rpx;
  290. }
  291. .temp_type {
  292. width: 714rpx;
  293. margin: 0 auto;
  294. }
  295. .carton {
  296. width: 718rpx;
  297. margin: 0 16rpx;
  298. }
  299. .score_percentage {
  300. display: flex;
  301. align-items: center;
  302. justify-content: space-between;
  303. width: 627rpx;
  304. height: 20rpx;
  305. background: #FFFFFF;
  306. border-radius: 10rpx;
  307. border-radius: 14rpx;
  308. margin: 14rpx 0 8rpx 20rpx;
  309. position: relative;
  310. z-index: 3;
  311. overflow-x: hidden;
  312. }
  313. .process_bar {
  314. width: 0rpx;
  315. height: 16rpx;
  316. background: #FF1E00;
  317. border-radius: 8rpx;
  318. box-shadow: 0rpx 0rpx 4rpx 2rpx #FFC600;
  319. position: absolute;
  320. top: 3rpx;
  321. left: 4rpx;
  322. }
  323. .rgtd_box {
  324. box-sizing: border-box;
  325. width: 712rpx;
  326. min-height: 700rpx;
  327. padding: 24rpx;
  328. margin: 0 auto 124rpx;
  329. position: relative;
  330. z-index: 0;
  331. background: rgba(100, 177, 249, 0.8);
  332. border-radius: 58rpx;
  333. }
  334. .rgtd_box_title {
  335. width: 701rpx;
  336. height: 97rpx;
  337. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/RuiWen/title_bg.png) no-repeat center;
  338. background-size: 400rpx 88rpx;
  339. position: absolute;
  340. left: 0;
  341. top: -20rpx;
  342. z-index: 2;
  343. text-align: center;
  344. }
  345. .rgtd_box_title text {
  346. font-family: 'Alibaba PuHuiTi 2.0';
  347. font-weight: normal;
  348. font-size: 44rpx;
  349. color: #FFFEFE;
  350. margin-top: 20rpx;
  351. line-height: 97rpx;
  352. }
  353. .dimension_name {
  354. width: 465rpx;
  355. height: 79rpx;
  356. padding-top: 2rpx;
  357. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/dimension_name.png) no-repeat;
  358. background-size: cover;
  359. margin: 60rpx auto 0;
  360. text-align: center;
  361. }
  362. .dimension_name text {
  363. font-family: 'Alibaba PuHuiTi 2.0';
  364. font-weight: bold;
  365. font-size: 44rpx;
  366. color: #FFFEFE;
  367. }
  368. .dimension_title {
  369. box-sizing: border-box;
  370. width: 100%;
  371. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/list_style_bg.png) no-repeat 16rpx center;
  372. background-size: 19rpx auto;
  373. padding: 26rpx 0 0 44rpx;
  374. font-family: Alibaba PuHuiTi 2.0;
  375. font-weight: normal;
  376. font-size: 32rpx;
  377. color: #333333;
  378. }
  379. .dt1 {
  380. margin-top: 78rpx;
  381. }
  382. .dimension_content {
  383. box-sizing: border-box;
  384. width: 598rpx;
  385. min-height: 91rpx;
  386. padding: 30rpx 32rpx;
  387. background: #FFFFFF;
  388. border-radius: 18rpx;
  389. margin: 20rpx auto;
  390. font-family: 'Alibaba PuHuiTi 2.0';
  391. font-weight: normal;
  392. font-size: 28rpx;
  393. color: #333333;
  394. line-height: 50rpx;
  395. text-align: justify;
  396. }
  397. .dimension_explain {
  398. font-family: 'Alibaba PuHuiTi 2.0';
  399. font-weight: normal;
  400. font-size: 20rpx;
  401. color: #D3987E;
  402. line-height: 24rpx;
  403. margin-top: 10rpx;
  404. }
  405. .dc1 {
  406. width: 598rpx;
  407. line-height: 1;
  408. background: #FFFFFF;
  409. box-shadow: 0rpx 7rpx 8rpx 0rpx rgba(4, 129, 200, 0.13);
  410. border-radius: 35rpx;
  411. font-family: 'Alibaba PuHuiTi 2.0';
  412. font-weight: normal;
  413. font-size: 32rpx;
  414. color: #007FFF;
  415. text-align: center;
  416. }
  417. .rgtd_box_wrap {
  418. box-sizing: border-box;
  419. width: 668rpx;
  420. min-height: 700rpx;
  421. background: #E4F8FD;
  422. border-radius: 45rpx;
  423. margin: 0 auto;
  424. position: relative;
  425. z-index: 1;
  426. padding-top: 46rpx;
  427. }
  428. .rgtd_box_content {
  429. box-sizing: border-box;
  430. width: 674rpx;
  431. min-height: 390rpx;
  432. padding: 28rpx 47rpx;
  433. background: #FFF9FA;
  434. border-radius: 18rpx;
  435. margin: 0 auto;
  436. font-family: 'Alibaba PuHuiTi 2.0';
  437. font-weight: normal;
  438. font-size: 32rpx;
  439. color: #333333;
  440. line-height: 50rpx;
  441. letter-spacing: 2rpx;
  442. }
  443. .rgtd_text {
  444. width: 181rpx;
  445. margin: 6rpx 0 0 39rpx;
  446. }
  447. .emo_img {
  448. width: 112rpx;
  449. margin-right: 7rpx;
  450. }
  451. .rgtg_content {
  452. box-sizing: border-box;
  453. width: 714rpx;
  454. padding: 40rpx;
  455. background: #FFFFFF;
  456. border-radius: 35rpx;
  457. margin: 0 auto;
  458. font-family: 'Alibaba PuHuiTi 2.0';
  459. font-weight: normal;
  460. font-size: 28rpx;
  461. color: #333333;
  462. line-height: 1.8;
  463. letter-spacing: 2rpx;
  464. }
  465. .mrmj_content {
  466. display: flex;
  467. flex-wrap: wrap;
  468. min-height: 255rpx;
  469. }
  470. .star_img {
  471. width: 92rpx;
  472. margin-right: 43rpx;
  473. }
  474. .mrmj_content .mr_name {
  475. height: 44rpx;
  476. padding: 0 34rpx;
  477. margin: 4rpx 10rpx;
  478. background: #E4FFD3;
  479. border-radius: 22rpx;
  480. border: 1px solid #66C666;
  481. font-family: 'Alibaba PuHuiTi 2.0';
  482. font-weight: normal;
  483. font-size: 28rpx;
  484. color: #0B7000;
  485. line-height: 44rpx;
  486. text-align: center;
  487. }
  488. .mr_pic_box {
  489. width: 100%;
  490. }
  491. .mr_pic {
  492. width: 316rpx;
  493. margin: 5rpx 8rpx;
  494. }
  495. .advantage_title {
  496. font-family: 'Alibaba PuHuiTi 2.0';
  497. font-weight: bold;
  498. font-size: 32rpx;
  499. color: #333333;
  500. margin: 25rpx 5rpx 8rpx;
  501. }
  502. .advantage_content {
  503. box-sizing: border-box;
  504. width: 632rpx;
  505. background: #E4FFD3;
  506. border-radius: 22rpx;
  507. border: 1px solid #66C666;
  508. padding: 28rpx;
  509. margin: 0 auto;
  510. }
  511. .ad_item_title {
  512. display: flex;
  513. align-items: center;
  514. font-family: 'Alibaba PuHuiTi 2.0';
  515. font-weight: bold;
  516. font-size: 32rpx;
  517. color: #156300;
  518. }
  519. .love_role {
  520. width: 571rpx;
  521. margin: 0 auto;
  522. }
  523. .single_star {
  524. width: 32rpx;
  525. margin: 0 8rpx 4rpx 0;
  526. }
  527. .heart_img {
  528. width: 93rpx;
  529. margin-right: 16rpx;
  530. }
  531. .lover_type_title {
  532. font-family: 'Alibaba PuHuiTi 2.0';
  533. font-weight: bold;
  534. font-size: 32rpx;
  535. color: #333333;
  536. line-height: 43rpx;
  537. }
  538. .love_decode {
  539. box-sizing: border-box;
  540. width: 632rpx;
  541. padding: 39rpx 30rpx;
  542. background: #FFE8FD;
  543. border-radius: 22rpx;
  544. border: 1px solid #FF59F1;
  545. margin: 0 auto;
  546. font-family: 'Alibaba PuHuiTi 2.0';
  547. font-weight: normal;
  548. font-size: 28rpx;
  549. color: #333333;
  550. }
  551. .result_box {
  552. width: 702rpx;
  553. min-height: 807rpx;
  554. background: #ffffff;
  555. box-shadow: 0rpx 3rpx 24rpx 0rpx rgba(126, 77, 0, 0.13);
  556. border-radius: 26rpx;
  557. margin: 168rpx auto 0;
  558. position: relative;
  559. }
  560. .pad_box {
  561. width: 100%;
  562. height: 200rpx;
  563. border-radius: 26rpx;
  564. overflow: hidden;
  565. }
  566. .title_img {
  567. height: 60rpx;
  568. margin: 37rpx 0 0 96rpx;
  569. }
  570. .result_box_r {
  571. box-sizing: border-box;
  572. width: 702rpx;
  573. min-height: 453rpx;
  574. margin: -188rpx auto 0;
  575. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/result_bg_r.png) no-repeat top;
  576. background-size: 100% auto;
  577. border-radius: 33rpx;
  578. font-family: 'Alibaba PuHuiTi 2.0';
  579. font-weight: normal;
  580. font-size: 32rpx;
  581. color: #555555;
  582. line-height: 50rpx;
  583. position: relative;
  584. z-index: 2;
  585. }
  586. .r_content {
  587. width: 600rpx;
  588. min-height: 307rpx;
  589. background: #FFE1E1;
  590. border-radius: 20rpx;
  591. border: 1px solid #FF6666;
  592. margin: 20rpx auto 0;
  593. padding: 30rpx;
  594. font-family: 'Alibaba PuHuiTi 2.0';
  595. font-weight: normal;
  596. font-size: 32rpx;
  597. color: #333333;
  598. line-height: 50rpx;
  599. display: flex;
  600. align-items: flex-start;
  601. }
  602. .report_desc {
  603. padding: 0 38rpx;
  604. letter-spacing: 1px;
  605. }
  606. .desc_title {
  607. font-family: 'Alibaba PuHuiTi 2.0';
  608. font-weight: normal;
  609. font-size: 28rpx;
  610. color: #333333;
  611. line-height: 46rpx;
  612. }
  613. .stext {
  614. font-family: 'Alibaba PuHuiTi 2.0';
  615. font-weight: normal;
  616. font-size: 20rpx;
  617. color: #333333;
  618. line-height: 30rpx;
  619. }
  620. .desc_txt {
  621. font-family: 'Alibaba PuHuiTi 2.0';
  622. font-weight: normal;
  623. font-size: 20rpx;
  624. color: #333333;
  625. line-height: 30rpx;
  626. }
  627. .list_mark {
  628. line-height: 0.7;
  629. font-size: 36rpx;
  630. color: #333333;
  631. font-weight: 600;
  632. margin-right: 5rpx;
  633. }
  634. .analysis_title {
  635. width: 362rpx;
  636. position: absolute;
  637. top: -30rpx;
  638. left: 50%;
  639. transform: translateX(-50%);
  640. }
  641. .paperclip {
  642. width: 55rpx;
  643. position: absolute;
  644. top: -40rpx;
  645. left: 38rpx;
  646. }
  647. .score_title {
  648. font-family: 'Alibaba PuHuiTi 2.0';
  649. font-weight: normal;
  650. font-size: 32rpx;
  651. color: #333333;
  652. line-height: 24rpx;
  653. margin: 0 0 0 5rpx;
  654. }
  655. .score_num {
  656. font-family: 'Alibaba PuHuiTi 2.0';
  657. font-weight: bold;
  658. font-size: 93rpx;
  659. color: #FF1E00;
  660. text-align: center;
  661. margin-top: 20rpx;
  662. line-height: 1.2;
  663. }
  664. .score_explain {
  665. font-family: 'Alibaba PuHuiTi 2.0';
  666. font-weight: normal;
  667. font-size: 24rpx;
  668. color: #999999;
  669. line-height: 34rpx;
  670. text-align: center;
  671. }
  672. .chart_wrap {
  673. width: 702rpx;
  674. min-height: 1053rpx;
  675. background: #FFFFFF;
  676. border-radius: 16rpx;
  677. margin: 30rpx auto 100rpx;
  678. padding-bottom: 30rpx;
  679. }
  680. .my_table {
  681. width: 634rpx;
  682. line-height: 52rpx;
  683. margin: 0 auto;
  684. text-align: center;
  685. border: 0;
  686. }
  687. .my_table {}
  688. .my_table .t-head {
  689. width: 634rpx;
  690. height: 52rpx;
  691. background: #2394FC;
  692. font-family: 'Alibaba PuHuiTi 2.0';
  693. font-size: 28rpx;
  694. color: #FEFEFE;
  695. }
  696. .my_table .t-head,
  697. .my_table .t-body {
  698. display: flex;
  699. }
  700. .my_table .t-head view,
  701. .my_table .t-body view {
  702. flex: 1;
  703. }
  704. .my_table .t-body view {
  705. font-family: 'Alibaba PuHuiTi 2.0';
  706. font-weight: normal;
  707. font-size: 20rpx;
  708. color: #333333;
  709. line-height: 50rpx;
  710. border-right: 1px solid #E6EFF5;
  711. border-bottom: 1px solid #E6EFF5;
  712. }
  713. .my_table .t-body:nth-child(2n+1) {
  714. background: #EFF7FF;
  715. }
  716. .situation {
  717. width: 100%;
  718. min-height: 111rpx;
  719. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/RuiWen/situation_bg.png) no-repeat;
  720. background-size: 100% auto;
  721. overflow: hidden;
  722. font-family: 'Alibaba PuHuiTi 2.0';
  723. font-weight: normal;
  724. font-size: 32rpx;
  725. color: #333333;
  726. }
  727. .situation_title {
  728. margin: 24rpx 0 0 26rpx;
  729. }
  730. .situation_score {
  731. font-size: 24rpx;
  732. margin: 17rpx 0 30rpx 52rpx;
  733. text {
  734. font-size: 32rpx;
  735. color: #FF1E00;
  736. font-weight: 600;
  737. }
  738. }
  739. .situation_conclusion {
  740. font-size: 24rpx;
  741. margin-left: 52rpx;
  742. }
  743. .situation_role {
  744. width: 628rpx;
  745. height: auto;
  746. margin-left: 52rpx;
  747. }
  748. .radar_wrap {
  749. width: 100%;
  750. margin: 26rpx 0;
  751. }
  752. .container {
  753. width: 630rpx !important;
  754. height: 576rpx !important;
  755. /* padding: 0 !important; */
  756. background: #F7F9FA;
  757. border-radius: 27rpx;
  758. margin: 0 auto;
  759. }
  760. </style>