球星卡微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

428 lines
9.1 KiB

4 years ago
  1. <template>
  2. <view class="flex-col page">
  3. <view class="flex-col group_4">
  4. <view class="section_2 flex-col view_2">
  5. <view class="flex-row">
  6. <text class="text_3">鉴定结果</text>
  7. <text class="text_4">{{ order.num }}</text>
  8. </view>
  9. </view>
  10. <view class="section_2 flex-col view_3" v-for="(item, index) in order.sub_orders" :key="index">
  11. <view class="flex-row">
  12. <text class="text_19">评级编号</text>
  13. <text class="text_20" style="margin-left: 86rpx;">{{ item.series_num }}</text>
  14. </view>
  15. <view class="flex-row group_13">
  16. <text class="text_19">名称</text>
  17. <text class="text_20" style="margin-left: 142rpx;">{{ item.title }}</text>
  18. </view>
  19. <view class="flex-row group_13">
  20. <text class="text_19">分数</text>
  21. <text class="text_20" style="margin-left: 142rpx;">{{ item.score }}</text>
  22. </view>
  23. <view class="flex-row group_13">
  24. <text class="text_11">年份</text>
  25. <text class="text_12">{{ item.years }}</text>
  26. </view>
  27. <view class="flex-row group_10">
  28. <text class="text_13">发行商</text>
  29. <text class="text_14">{{ item.publisher }}</text>
  30. </view>
  31. <view class="flex-row group_11">
  32. <text class="text_15">卡片系列名称</text>
  33. <text class="text_16">{{ item.card_series }}</text>
  34. </view>
  35. <view class="flex-row group_12">
  36. <text class="text_17">边子系列名称</text>
  37. <text class="text_18">{{ item.sub_card_series }}</text>
  38. </view>
  39. <view class="flex-row group_13">
  40. <text class="text_19">卡片编码</text>
  41. <text class="text_20">{{ item.card_code }}</text>
  42. </view>
  43. <view class="flex-row group_13">
  44. <text class="text_19">居中分数</text>
  45. <text class="text_20">{{ item.center_s }}</text>
  46. </view>
  47. <view class="flex-row group_13">
  48. <text class="text_19">边框分数</text>
  49. <text class="text_20">{{ item.border_s }}</text>
  50. </view>
  51. <view class="flex-row group_13">
  52. <text class="text_19">卡角分数</text>
  53. <text class="text_20">{{ item.corner_s }}</text>
  54. </view>
  55. <view class="flex-row group_13">
  56. <text class="text_19">表面分数</text>
  57. <text class="text_20">{{ item.front_s }}</text>
  58. </view>
  59. <view class="flex-row group_13">
  60. <text class="text_19">签字分数</text>
  61. <text class="text_20">{{ item.sign_s }}</text>
  62. </view>
  63. <view class="flex-row group_13">
  64. <text class="text_19">鉴定结果</text>
  65. <!-- <text class="text_20">{{ ['不正常','正常'][item.result_type] }}</text> -->
  66. <text class="text_20">{{ item.result_type_text }}</text>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </template>
  72. <script>
  73. import { gradingDetail } from '@/service/grading.js'
  74. export default {
  75. data() {
  76. return {
  77. id: '',
  78. order: {}
  79. };
  80. },
  81. onLoad(options){
  82. this.id = options.id;
  83. this.getViewGradingDetail();
  84. },
  85. methods: {
  86. async getViewGradingDetail(){
  87. let res = await gradingDetail(this.id);
  88. console.log("res", res)
  89. this.order = res.data.datas.order;
  90. },
  91. }
  92. };
  93. </script>
  94. <style scoped lang="scss">
  95. .section_2 {
  96. padding: 40rpx 32rpx;
  97. background-color: rgb(255, 255, 255);
  98. }
  99. .equal-division-item {
  100. flex: 1 1 210rpx;
  101. border-radius: 10rpx;
  102. width: 210rpx;
  103. height: 130rpx;
  104. }
  105. .page {
  106. background-color: #f6f6f6;
  107. width: 100%;
  108. overflow-y: auto;
  109. height: 100%;
  110. }
  111. .group_4 {
  112. padding-top: 2rpx;
  113. flex: 1 1 auto;
  114. overflow-y: auto;
  115. }
  116. .view_2 {
  117. color: rgb(51, 51, 51);
  118. font-size: 32rpx;
  119. font-weight: 500;
  120. line-height: 44rpx;
  121. white-space: nowrap;
  122. }
  123. .view_3 {
  124. margin-top: 30rpx;
  125. }
  126. .section_3 {
  127. margin-top: 30rpx;
  128. padding: 44rpx 32rpx 40rpx;
  129. background-color: rgb(255, 255, 255);
  130. }
  131. .section_4 {
  132. margin-top: 30rpx;
  133. padding: 40rpx 32rpx;
  134. background-color: rgb(255, 255, 255);
  135. margin-bottom: 30rpx;
  136. }
  137. .equal-division {
  138. margin-top: 30rpx;
  139. }
  140. .group_6 {
  141. margin-top: 50rpx;
  142. }
  143. .group_7 {
  144. margin-top: 50rpx;
  145. }
  146. .group_8 {
  147. margin-top: 50rpx;
  148. }
  149. .group_10 {
  150. margin-top: 40rpx;
  151. }
  152. .group_11 {
  153. margin-top: 40rpx;
  154. }
  155. .group_12 {
  156. margin-top: 40rpx;
  157. }
  158. .group_13 {
  159. margin-top: 40rpx;
  160. }
  161. .group_14 {
  162. margin-top: 40rpx;
  163. }
  164. .group_15 {
  165. margin-top: 40rpx;
  166. }
  167. .group_16 {
  168. margin-top: 40rpx;
  169. }
  170. .group_17 {
  171. margin-top: 40rpx;
  172. }
  173. .group_18 {
  174. margin-top: 40rpx;
  175. }
  176. .group_20 {
  177. margin-top: 40rpx;
  178. }
  179. .image_7 {
  180. margin-left: 28rpx;
  181. }
  182. .image_8 {
  183. margin-left: 28rpx;
  184. }
  185. .text_3 {
  186. color: rgb(119, 119, 119);
  187. font-size: 32rpx;
  188. font-weight: 500;
  189. line-height: 44rpx;
  190. white-space: nowrap;
  191. }
  192. .text_4 {
  193. margin-left: 10rpx;
  194. color: rgb(51, 51, 51);
  195. font-size: 32rpx;
  196. font-weight: 500;
  197. line-height: 44rpx;
  198. white-space: nowrap;
  199. }
  200. .text_5 {
  201. color: rgb(119, 119, 119);
  202. font-size: 32rpx;
  203. font-weight: 500;
  204. line-height: 44rpx;
  205. white-space: nowrap;
  206. }
  207. .text_6 {
  208. margin-left: 10rpx;
  209. color: rgb(51, 51, 51);
  210. font-size: 32rpx;
  211. font-weight: 500;
  212. line-height: 44rpx;
  213. white-space: nowrap;
  214. }
  215. .text_7 {
  216. color: rgb(119, 119, 119);
  217. font-size: 32rpx;
  218. font-weight: 500;
  219. line-height: 44rpx;
  220. white-space: nowrap;
  221. }
  222. .text_8 {
  223. margin-left: 74rpx;
  224. color: rgb(51, 51, 51);
  225. font-size: 32rpx;
  226. font-weight: 500;
  227. line-height: 44rpx;
  228. white-space: nowrap;
  229. }
  230. .text_9 {
  231. color: rgb(119, 119, 119);
  232. font-size: 32rpx;
  233. font-weight: 500;
  234. line-height: 44rpx;
  235. white-space: nowrap;
  236. }
  237. .text_10 {
  238. margin-left: 74rpx;
  239. color: rgb(51, 51, 51);
  240. font-size: 32rpx;
  241. font-weight: 500;
  242. line-height: 44rpx;
  243. white-space: nowrap;
  244. }
  245. .text_11 {
  246. color: rgb(119, 119, 119);
  247. font-size: 28rpx;
  248. font-weight: 500;
  249. line-height: 40rpx;
  250. white-space: nowrap;
  251. }
  252. .text_12 {
  253. margin-left: 132rpx;
  254. color: rgb(51, 51, 51);
  255. font-size: 28rpx;
  256. font-weight: 500;
  257. line-height: 40rpx;
  258. white-space: nowrap;
  259. }
  260. .text_13 {
  261. color: rgb(119, 119, 119);
  262. font-size: 28rpx;
  263. font-weight: 500;
  264. line-height: 40rpx;
  265. white-space: nowrap;
  266. }
  267. .text_14 {
  268. margin-left: 104rpx;
  269. color: rgb(51, 51, 51);
  270. font-size: 28rpx;
  271. font-weight: 500;
  272. line-height: 40rpx;
  273. white-space: nowrap;
  274. }
  275. .text_15 {
  276. color: rgb(119, 119, 119);
  277. font-size: 28rpx;
  278. font-weight: 500;
  279. line-height: 40rpx;
  280. white-space: nowrap;
  281. }
  282. .text_16 {
  283. margin-left: 20rpx;
  284. color: rgb(51, 51, 51);
  285. font-size: 28rpx;
  286. font-weight: 500;
  287. line-height: 40rpx;
  288. white-space: nowrap;
  289. }
  290. .text_17 {
  291. color: rgb(119, 119, 119);
  292. font-size: 28rpx;
  293. font-weight: 500;
  294. line-height: 40rpx;
  295. white-space: nowrap;
  296. }
  297. .text_18 {
  298. margin-left: 20rpx;
  299. color: rgb(51, 51, 51);
  300. font-size: 28rpx;
  301. font-weight: 500;
  302. line-height: 40rpx;
  303. white-space: nowrap;
  304. }
  305. .text_19 {
  306. color: rgb(119, 119, 119);
  307. font-size: 28rpx;
  308. font-weight: 500;
  309. line-height: 40rpx;
  310. white-space: nowrap;
  311. }
  312. .text_20 {
  313. margin-left: 76rpx;
  314. color: rgb(51, 51, 51);
  315. font-size: 28rpx;
  316. font-weight: 500;
  317. line-height: 40rpx;
  318. white-space: nowrap;
  319. }
  320. .text_21 {
  321. color: rgb(119, 119, 119);
  322. font-size: 28rpx;
  323. font-weight: 500;
  324. line-height: 40rpx;
  325. white-space: nowrap;
  326. }
  327. .text_22 {
  328. margin-left: 76rpx;
  329. color: rgb(51, 51, 51);
  330. font-size: 28rpx;
  331. font-weight: 500;
  332. line-height: 40rpx;
  333. white-space: nowrap;
  334. }
  335. .text_23 {
  336. color: rgb(119, 119, 119);
  337. font-size: 28rpx;
  338. font-weight: 500;
  339. line-height: 40rpx;
  340. white-space: nowrap;
  341. }
  342. .text_24 {
  343. margin-left: 76rpx;
  344. color: rgb(51, 51, 51);
  345. font-size: 28rpx;
  346. font-weight: 500;
  347. line-height: 40rpx;
  348. white-space: nowrap;
  349. }
  350. .text_25 {
  351. color: rgb(119, 119, 119);
  352. font-size: 28rpx;
  353. font-weight: 500;
  354. line-height: 40rpx;
  355. white-space: nowrap;
  356. }
  357. .text_26 {
  358. margin-left: 76rpx;
  359. color: rgb(51, 51, 51);
  360. font-size: 28rpx;
  361. font-weight: 500;
  362. line-height: 40rpx;
  363. white-space: nowrap;
  364. }
  365. .text_27 {
  366. color: rgb(119, 119, 119);
  367. font-size: 28rpx;
  368. font-weight: 500;
  369. line-height: 40rpx;
  370. white-space: nowrap;
  371. }
  372. .text_28 {
  373. margin-left: 76rpx;
  374. color: rgb(51, 51, 51);
  375. font-size: 28rpx;
  376. font-weight: 500;
  377. line-height: 40rpx;
  378. white-space: nowrap;
  379. }
  380. .text_29 {
  381. color: rgb(119, 119, 119);
  382. font-size: 28rpx;
  383. font-weight: 500;
  384. line-height: 40rpx;
  385. white-space: nowrap;
  386. }
  387. .text_30 {
  388. margin-left: 76rpx;
  389. color: rgb(51, 51, 51);
  390. font-size: 28rpx;
  391. font-weight: 500;
  392. line-height: 40rpx;
  393. white-space: nowrap;
  394. }
  395. .text_31 {
  396. color: rgb(119, 119, 119);
  397. font-size: 32rpx;
  398. font-weight: 500;
  399. line-height: 44rpx;
  400. white-space: nowrap;
  401. }
  402. .text_32 {
  403. margin-left: 10rpx;
  404. color: rgb(51, 51, 51);
  405. font-size: 32rpx;
  406. font-weight: 500;
  407. line-height: 44rpx;
  408. white-space: nowrap;
  409. }
  410. .section_5 {
  411. margin-top: 40rpx;
  412. align-self: center;
  413. border-radius: 4rpx;
  414. width: 196rpx;
  415. height: 8rpx;
  416. }
  417. .image_10 {
  418. margin-left: 28rpx;
  419. }
  420. .image_11 {
  421. margin-left: 28rpx;
  422. }
  423. </style>