testResult.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  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. <leiDa :reference="reference" :scoreList="scoreList" :indicator="indicator" />
  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 leiDa from "@/components/mpvueEcharts/leiDa.vue"
  123. import test from "uview-ui/libs/function/test";
  124. // import unTable from "@/components/unTable.vue"
  125. export default {
  126. components: {
  127. leiDa
  128. },
  129. data() {
  130. return {
  131. photoUrl: photoUrl,
  132. isChecked: true,
  133. isShake: false,
  134. scaleDetail: {},
  135. questionList: [],
  136. currentQuestion: {},
  137. currentAnswerList: [],
  138. currentIndex: 0,
  139. userAnswerList: [],
  140. resultId: '',
  141. isLoading: false,
  142. isDisbale: false,
  143. resultObj: [],
  144. resultId: '',
  145. scoreNum: 0,
  146. maxScore: 450,
  147. minScore: 0,
  148. keywords: '',
  149. characteristic: '', // 特点
  150. time: '',
  151. indicator: [],
  152. scoreList: [],
  153. totalScore: {},
  154. dimensions: [],
  155. roleInfo: {
  156. '智力水平低下': 'role1',
  157. '智力水平中下': 'role2',
  158. '智力水平低下': 'role3',
  159. '智力水平中等': 'role4',
  160. '智力水平优秀': 'role5'
  161. }
  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. } else if (res.code == 401) {} else {
  195. (res) => {
  196. console.log("世界上绝对绝对绝对绝对绝对的", res);
  197. }
  198. }
  199. })
  200. },
  201. getAdvantage(str) {
  202. let tempArr = str.split("——");
  203. let title = tempArr[0].split(".")
  204. let advant = {
  205. title: title[1],
  206. content: tempArr[1]
  207. }
  208. return advant
  209. },
  210. getTips(str) {
  211. let temp = str.split(':');
  212. return `${temp[0]}是指${temp[1]}`
  213. }
  214. }
  215. }
  216. </script>
  217. <style scoped>
  218. .bg {
  219. width: 100%;
  220. background: #5F7CFF;
  221. position: relative;
  222. padding-bottom: 100rpx;
  223. }
  224. .scale_name {
  225. font-family: 'Alibaba PuHuiTi 2.0';
  226. font-weight: bold;
  227. font-size: 42rpx;
  228. color: #FFFFFF;
  229. margin: 20rpx 0 0 32rpx;
  230. }
  231. .test_time {
  232. font-family: 'Alibaba PuHuiTi 2.0';
  233. font-weight: normal;
  234. font-size: 28rpx;
  235. color: #ffffff;
  236. margin-left: 32rpx;
  237. }
  238. .role_medal {
  239. width: 205rpx;
  240. line-height: 53rpx;
  241. background: #FFFFFF;
  242. border-radius: 27rpx;
  243. font-family: 'Alibaba PuHuiTi 2.0';
  244. font-weight: normal;
  245. font-size: 32rpx;
  246. color: #333333;
  247. text-align: center;
  248. position: absolute;
  249. top: 36rpx;
  250. right: 25rpx;
  251. }
  252. .role_wrap {
  253. position: relative;
  254. }
  255. .role_char {
  256. width: 714rpx;
  257. height: 156rpx;
  258. display: flex;
  259. justify-content: space-around;
  260. align-items: center;
  261. position: absolute;
  262. left: 18rpx;
  263. bottom: 0;
  264. }
  265. .char_item {
  266. width: 30%;
  267. font-family: 'ZhankuKuaiLeTi';
  268. font-weight: 800;
  269. font-size: 36rpx;
  270. color: #333333;
  271. line-height: 52rpx;
  272. text-align: center;
  273. }
  274. .shadow_img {
  275. display: block;
  276. width: 170rpx;
  277. position: absolute;
  278. left: 50%;
  279. bottom: -6rpx;
  280. transform: translateX(-50%);
  281. }
  282. .role_name {
  283. text-align: center;
  284. margin: 202rpx 0 0 0;
  285. }
  286. .role_name image {
  287. width: 550rpx;
  288. }
  289. .temp_type {
  290. width: 714rpx;
  291. margin: 0 auto;
  292. }
  293. .carton {
  294. width: 718rpx;
  295. margin: 0 16rpx;
  296. }
  297. .score_percentage {
  298. display: flex;
  299. align-items: center;
  300. justify-content: space-between;
  301. width: 627rpx;
  302. height: 20rpx;
  303. background: #FFFFFF;
  304. border-radius: 10rpx;
  305. border-radius: 14rpx;
  306. margin: 14rpx 0 8rpx 20rpx;
  307. position: relative;
  308. z-index: 3;
  309. overflow-x: hidden;
  310. }
  311. .process_bar {
  312. width: 0rpx;
  313. height: 16rpx;
  314. background: #FF1E00;
  315. border-radius: 8rpx;
  316. box-shadow: 0rpx 0rpx 4rpx 2rpx #FFC600;
  317. position: absolute;
  318. top: 3rpx;
  319. left: 4rpx;
  320. }
  321. .rgtd_box {
  322. box-sizing: border-box;
  323. width: 712rpx;
  324. min-height: 700rpx;
  325. padding: 24rpx;
  326. margin: 0 auto 124rpx;
  327. position: relative;
  328. z-index: 0;
  329. background: rgba(100, 177, 249, 0.8);
  330. border-radius: 58rpx;
  331. }
  332. .rgtd_box_title {
  333. width: 701rpx;
  334. height: 97rpx;
  335. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/RuiWen/title_bg.png) no-repeat center;
  336. background-size: 400rpx 88rpx;
  337. position: absolute;
  338. left: 0;
  339. top: -20rpx;
  340. z-index: 2;
  341. text-align: center;
  342. }
  343. .rgtd_box_title text {
  344. font-family: 'Alibaba PuHuiTi 2.0';
  345. font-weight: normal;
  346. font-size: 44rpx;
  347. color: #FFFEFE;
  348. margin-top: 20rpx;
  349. line-height: 97rpx;
  350. }
  351. .dimension_name {
  352. width: 465rpx;
  353. height: 79rpx;
  354. padding-top: 2rpx;
  355. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/dimension_name.png) no-repeat;
  356. background-size: cover;
  357. margin: 60rpx auto 0;
  358. text-align: center;
  359. }
  360. .dimension_name text {
  361. font-family: 'Alibaba PuHuiTi 2.0';
  362. font-weight: bold;
  363. font-size: 44rpx;
  364. color: #FFFEFE;
  365. }
  366. .dimension_title {
  367. box-sizing: border-box;
  368. width: 100%;
  369. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/list_style_bg.png) no-repeat 16rpx center;
  370. background-size: 19rpx auto;
  371. padding: 26rpx 0 0 44rpx;
  372. font-family: Alibaba PuHuiTi 2.0;
  373. font-weight: normal;
  374. font-size: 32rpx;
  375. color: #333333;
  376. }
  377. .dt1 {
  378. margin-top: 78rpx;
  379. }
  380. .dimension_content {
  381. box-sizing: border-box;
  382. width: 598rpx;
  383. min-height: 91rpx;
  384. padding: 30rpx 32rpx;
  385. background: #FFFFFF;
  386. border-radius: 18rpx;
  387. margin: 20rpx auto;
  388. font-family: 'Alibaba PuHuiTi 2.0';
  389. font-weight: normal;
  390. font-size: 28rpx;
  391. color: #333333;
  392. line-height: 50rpx;
  393. text-align: justify;
  394. }
  395. .dimension_explain {
  396. font-family: 'Alibaba PuHuiTi 2.0';
  397. font-weight: normal;
  398. font-size: 20rpx;
  399. color: #D3987E;
  400. line-height: 24rpx;
  401. margin-top: 10rpx;
  402. }
  403. .dc1 {
  404. width: 598rpx;
  405. line-height: 1;
  406. background: #FFFFFF;
  407. box-shadow: 0rpx 7rpx 8rpx 0rpx rgba(4, 129, 200, 0.13);
  408. border-radius: 35rpx;
  409. font-family: 'Alibaba PuHuiTi 2.0';
  410. font-weight: normal;
  411. font-size: 32rpx;
  412. color: #007FFF;
  413. text-align: center;
  414. }
  415. .rgtd_box_wrap {
  416. box-sizing: border-box;
  417. width: 668rpx;
  418. min-height: 700rpx;
  419. background: #E4F8FD;
  420. border-radius: 45rpx;
  421. margin: 0 auto;
  422. position: relative;
  423. z-index: 1;
  424. padding-top: 46rpx;
  425. }
  426. .rgtd_box_content {
  427. box-sizing: border-box;
  428. width: 674rpx;
  429. min-height: 390rpx;
  430. padding: 28rpx 47rpx;
  431. background: #FFF9FA;
  432. border-radius: 18rpx;
  433. margin: 0 auto;
  434. font-family: 'Alibaba PuHuiTi 2.0';
  435. font-weight: normal;
  436. font-size: 32rpx;
  437. color: #333333;
  438. line-height: 50rpx;
  439. letter-spacing: 2rpx;
  440. }
  441. .rgtd_text {
  442. width: 181rpx;
  443. margin: 6rpx 0 0 39rpx;
  444. }
  445. .emo_img {
  446. width: 112rpx;
  447. margin-right: 7rpx;
  448. }
  449. .rgtg_content {
  450. box-sizing: border-box;
  451. width: 714rpx;
  452. padding: 40rpx;
  453. background: #FFFFFF;
  454. border-radius: 35rpx;
  455. margin: 0 auto;
  456. font-family: 'Alibaba PuHuiTi 2.0';
  457. font-weight: normal;
  458. font-size: 28rpx;
  459. color: #333333;
  460. line-height: 1.8;
  461. letter-spacing: 2rpx;
  462. }
  463. .mrmj_content {
  464. display: flex;
  465. flex-wrap: wrap;
  466. min-height: 255rpx;
  467. }
  468. .star_img {
  469. width: 92rpx;
  470. margin-right: 43rpx;
  471. }
  472. .mrmj_content .mr_name {
  473. height: 44rpx;
  474. padding: 0 34rpx;
  475. margin: 4rpx 10rpx;
  476. background: #E4FFD3;
  477. border-radius: 22rpx;
  478. border: 1px solid #66C666;
  479. font-family: 'Alibaba PuHuiTi 2.0';
  480. font-weight: normal;
  481. font-size: 28rpx;
  482. color: #0B7000;
  483. line-height: 44rpx;
  484. text-align: center;
  485. }
  486. .mr_pic_box {
  487. width: 100%;
  488. }
  489. .mr_pic {
  490. width: 316rpx;
  491. margin: 5rpx 8rpx;
  492. }
  493. .advantage_title {
  494. font-family: 'Alibaba PuHuiTi 2.0';
  495. font-weight: bold;
  496. font-size: 32rpx;
  497. color: #333333;
  498. margin: 25rpx 5rpx 8rpx;
  499. }
  500. .advantage_content {
  501. box-sizing: border-box;
  502. width: 632rpx;
  503. background: #E4FFD3;
  504. border-radius: 22rpx;
  505. border: 1px solid #66C666;
  506. padding: 28rpx;
  507. margin: 0 auto;
  508. }
  509. .ad_item_title {
  510. display: flex;
  511. align-items: center;
  512. font-family: 'Alibaba PuHuiTi 2.0';
  513. font-weight: bold;
  514. font-size: 32rpx;
  515. color: #156300;
  516. }
  517. .love_role {
  518. width: 571rpx;
  519. margin: 0 auto;
  520. }
  521. .single_star {
  522. width: 32rpx;
  523. margin: 0 8rpx 4rpx 0;
  524. }
  525. .heart_img {
  526. width: 93rpx;
  527. margin-right: 16rpx;
  528. }
  529. .lover_type_title {
  530. font-family: 'Alibaba PuHuiTi 2.0';
  531. font-weight: bold;
  532. font-size: 32rpx;
  533. color: #333333;
  534. line-height: 43rpx;
  535. }
  536. .love_decode {
  537. box-sizing: border-box;
  538. width: 632rpx;
  539. padding: 39rpx 30rpx;
  540. background: #FFE8FD;
  541. border-radius: 22rpx;
  542. border: 1px solid #FF59F1;
  543. margin: 0 auto;
  544. font-family: 'Alibaba PuHuiTi 2.0';
  545. font-weight: normal;
  546. font-size: 28rpx;
  547. color: #333333;
  548. }
  549. .result_box {
  550. width: 702rpx;
  551. min-height: 807rpx;
  552. background: #ffffff;
  553. box-shadow: 0rpx 3rpx 24rpx 0rpx rgba(126, 77, 0, 0.13);
  554. border-radius: 26rpx;
  555. margin: 168rpx auto 0;
  556. position: relative;
  557. }
  558. .pad_box {
  559. width: 100%;
  560. height: 200rpx;
  561. border-radius: 26rpx;
  562. overflow: hidden;
  563. }
  564. .title_img {
  565. height: 60rpx;
  566. margin: 37rpx 0 0 96rpx;
  567. }
  568. .result_box_r {
  569. box-sizing: border-box;
  570. width: 702rpx;
  571. min-height: 453rpx;
  572. margin: -188rpx auto 0;
  573. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/MarriageQuality/result_bg_r.png) no-repeat top;
  574. background-size: 100% auto;
  575. border-radius: 33rpx;
  576. font-family: 'Alibaba PuHuiTi 2.0';
  577. font-weight: normal;
  578. font-size: 32rpx;
  579. color: #555555;
  580. line-height: 50rpx;
  581. position: relative;
  582. z-index: 2;
  583. }
  584. .r_content {
  585. width: 600rpx;
  586. min-height: 307rpx;
  587. background: #FFE1E1;
  588. border-radius: 20rpx;
  589. border: 1px solid #FF6666;
  590. margin: 20rpx auto 0;
  591. padding: 30rpx;
  592. font-family: 'Alibaba PuHuiTi 2.0';
  593. font-weight: normal;
  594. font-size: 32rpx;
  595. color: #333333;
  596. line-height: 50rpx;
  597. display: flex;
  598. align-items: flex-start;
  599. }
  600. .report_desc {
  601. padding: 0 38rpx;
  602. letter-spacing: 1px;
  603. }
  604. .desc_title {
  605. font-family: 'Alibaba PuHuiTi 2.0';
  606. font-weight: normal;
  607. font-size: 28rpx;
  608. color: #333333;
  609. line-height: 46rpx;
  610. }
  611. .stext {
  612. font-family: 'Alibaba PuHuiTi 2.0';
  613. font-weight: normal;
  614. font-size: 20rpx;
  615. color: #333333;
  616. line-height: 30rpx;
  617. }
  618. .desc_txt {
  619. font-family: 'Alibaba PuHuiTi 2.0';
  620. font-weight: normal;
  621. font-size: 20rpx;
  622. color: #333333;
  623. line-height: 30rpx;
  624. }
  625. .list_mark {
  626. line-height: 0.7;
  627. font-size: 36rpx;
  628. color: #333333;
  629. font-weight: 600;
  630. margin-right: 5rpx;
  631. }
  632. .analysis_title {
  633. width: 362rpx;
  634. position: absolute;
  635. top: -30rpx;
  636. left: 50%;
  637. transform: translateX(-50%);
  638. }
  639. .paperclip {
  640. width: 55rpx;
  641. position: absolute;
  642. top: -40rpx;
  643. left: 38rpx;
  644. }
  645. .score_title {
  646. font-family: 'Alibaba PuHuiTi 2.0';
  647. font-weight: normal;
  648. font-size: 32rpx;
  649. color: #333333;
  650. line-height: 24rpx;
  651. margin: 0 0 0 5rpx;
  652. }
  653. .score_num {
  654. font-family: 'Alibaba PuHuiTi 2.0';
  655. font-weight: bold;
  656. font-size: 93rpx;
  657. color: #FF1E00;
  658. text-align: center;
  659. margin-top: 20rpx;
  660. line-height: 1.2;
  661. }
  662. .score_explain {
  663. font-family: 'Alibaba PuHuiTi 2.0';
  664. font-weight: normal;
  665. font-size: 24rpx;
  666. color: #999999;
  667. line-height: 34rpx;
  668. text-align: center;
  669. }
  670. .chart_wrap {
  671. width: 702rpx;
  672. min-height: 1053rpx;
  673. background: #FFFFFF;
  674. border-radius: 16rpx;
  675. margin: 30rpx auto 100rpx;
  676. padding-bottom: 30rpx;
  677. }
  678. .my_table {
  679. width: 634rpx;
  680. line-height: 52rpx;
  681. margin: 0 auto;
  682. text-align: center;
  683. border: 0;
  684. }
  685. .my_table {}
  686. .my_table .t-head {
  687. width: 634rpx;
  688. height: 52rpx;
  689. background: #2394FC;
  690. font-family: 'Alibaba PuHuiTi 2.0';
  691. font-size: 28rpx;
  692. color: #FEFEFE;
  693. }
  694. .my_table .t-head,
  695. .my_table .t-body {
  696. display: flex;
  697. }
  698. .my_table .t-head view,
  699. .my_table .t-body view {
  700. flex: 1;
  701. }
  702. .my_table .t-body view {
  703. font-family: 'Alibaba PuHuiTi 2.0';
  704. font-weight: normal;
  705. font-size: 20rpx;
  706. color: #333333;
  707. line-height: 50rpx;
  708. border-right: 1px solid #E6EFF5;
  709. border-bottom: 1px solid #E6EFF5;
  710. }
  711. .situation {
  712. width: 100%;
  713. min-height: 111rpx;
  714. background: url(https://test.jue-ming.com:8849/api/show?filePath=./webo/RuiWen/situation_bg.png) no-repeat;
  715. background-size: 100% auto;
  716. overflow: hidden;
  717. font-family: 'Alibaba PuHuiTi 2.0';
  718. font-weight: normal;
  719. font-size: 32rpx;
  720. color: #333333;
  721. }
  722. .situation_title {
  723. margin: 24rpx 0 0 26rpx;
  724. }
  725. .situation_score {
  726. font-size: 24rpx;
  727. margin: 17rpx 0 30rpx 52rpx;
  728. text {
  729. font-size: 32rpx;
  730. color: #FF1E00;
  731. font-weight: 600;
  732. }
  733. }
  734. .situation_conclusion {
  735. font-size: 24rpx;
  736. margin-left: 52rpx;
  737. }
  738. .situation_role {
  739. width: 628rpx;
  740. height: auto;
  741. margin-left: 52rpx;
  742. }
  743. .radar_wrap {
  744. width: 100%;
  745. }
  746. .container {
  747. width: 630rpx !important;
  748. height: 676rpx !important;
  749. /* padding: 0 !important; */
  750. background: #F7F9FA;
  751. border-radius: 27rpx;
  752. margin: 0 auto;
  753. }
  754. </style>