球星卡微信小程序
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.

434 lines
9.3 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. previewImage(){
  92. uni.previewImage({
  93. urls: ['https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768927244914.png'],
  94. current: 0
  95. })
  96. }
  97. }
  98. };
  99. </script>
  100. <style scoped lang="scss">
  101. .section_2 {
  102. padding: 40rpx 32rpx;
  103. background-color: rgb(255, 255, 255);
  104. }
  105. .equal-division-item {
  106. flex: 1 1 210rpx;
  107. border-radius: 10rpx;
  108. width: 210rpx;
  109. height: 130rpx;
  110. }
  111. .page {
  112. background-color: #f6f6f6;
  113. width: 100%;
  114. overflow-y: auto;
  115. height: 100%;
  116. }
  117. .group_4 {
  118. padding-top: 2rpx;
  119. flex: 1 1 auto;
  120. overflow-y: auto;
  121. }
  122. .view_2 {
  123. color: rgb(51, 51, 51);
  124. font-size: 32rpx;
  125. font-weight: 500;
  126. line-height: 44rpx;
  127. white-space: nowrap;
  128. }
  129. .view_3 {
  130. margin-top: 30rpx;
  131. }
  132. .section_3 {
  133. margin-top: 30rpx;
  134. padding: 44rpx 32rpx 40rpx;
  135. background-color: rgb(255, 255, 255);
  136. }
  137. .section_4 {
  138. margin-top: 30rpx;
  139. padding: 40rpx 32rpx;
  140. background-color: rgb(255, 255, 255);
  141. margin-bottom: 30rpx;
  142. }
  143. .equal-division {
  144. margin-top: 30rpx;
  145. }
  146. .group_6 {
  147. margin-top: 50rpx;
  148. }
  149. .group_7 {
  150. margin-top: 50rpx;
  151. }
  152. .group_8 {
  153. margin-top: 50rpx;
  154. }
  155. .group_10 {
  156. margin-top: 40rpx;
  157. }
  158. .group_11 {
  159. margin-top: 40rpx;
  160. }
  161. .group_12 {
  162. margin-top: 40rpx;
  163. }
  164. .group_13 {
  165. margin-top: 40rpx;
  166. }
  167. .group_14 {
  168. margin-top: 40rpx;
  169. }
  170. .group_15 {
  171. margin-top: 40rpx;
  172. }
  173. .group_16 {
  174. margin-top: 40rpx;
  175. }
  176. .group_17 {
  177. margin-top: 40rpx;
  178. }
  179. .group_18 {
  180. margin-top: 40rpx;
  181. }
  182. .group_20 {
  183. margin-top: 40rpx;
  184. }
  185. .image_7 {
  186. margin-left: 28rpx;
  187. }
  188. .image_8 {
  189. margin-left: 28rpx;
  190. }
  191. .text_3 {
  192. color: rgb(119, 119, 119);
  193. font-size: 32rpx;
  194. font-weight: 500;
  195. line-height: 44rpx;
  196. white-space: nowrap;
  197. }
  198. .text_4 {
  199. margin-left: 10rpx;
  200. color: rgb(51, 51, 51);
  201. font-size: 32rpx;
  202. font-weight: 500;
  203. line-height: 44rpx;
  204. white-space: nowrap;
  205. }
  206. .text_5 {
  207. color: rgb(119, 119, 119);
  208. font-size: 32rpx;
  209. font-weight: 500;
  210. line-height: 44rpx;
  211. white-space: nowrap;
  212. }
  213. .text_6 {
  214. margin-left: 10rpx;
  215. color: rgb(51, 51, 51);
  216. font-size: 32rpx;
  217. font-weight: 500;
  218. line-height: 44rpx;
  219. white-space: nowrap;
  220. }
  221. .text_7 {
  222. color: rgb(119, 119, 119);
  223. font-size: 32rpx;
  224. font-weight: 500;
  225. line-height: 44rpx;
  226. white-space: nowrap;
  227. }
  228. .text_8 {
  229. margin-left: 74rpx;
  230. color: rgb(51, 51, 51);
  231. font-size: 32rpx;
  232. font-weight: 500;
  233. line-height: 44rpx;
  234. white-space: nowrap;
  235. }
  236. .text_9 {
  237. color: rgb(119, 119, 119);
  238. font-size: 32rpx;
  239. font-weight: 500;
  240. line-height: 44rpx;
  241. white-space: nowrap;
  242. }
  243. .text_10 {
  244. margin-left: 74rpx;
  245. color: rgb(51, 51, 51);
  246. font-size: 32rpx;
  247. font-weight: 500;
  248. line-height: 44rpx;
  249. white-space: nowrap;
  250. }
  251. .text_11 {
  252. color: rgb(119, 119, 119);
  253. font-size: 28rpx;
  254. font-weight: 500;
  255. line-height: 40rpx;
  256. white-space: nowrap;
  257. }
  258. .text_12 {
  259. margin-left: 132rpx;
  260. color: rgb(51, 51, 51);
  261. font-size: 28rpx;
  262. font-weight: 500;
  263. line-height: 40rpx;
  264. white-space: nowrap;
  265. }
  266. .text_13 {
  267. color: rgb(119, 119, 119);
  268. font-size: 28rpx;
  269. font-weight: 500;
  270. line-height: 40rpx;
  271. white-space: nowrap;
  272. }
  273. .text_14 {
  274. margin-left: 104rpx;
  275. color: rgb(51, 51, 51);
  276. font-size: 28rpx;
  277. font-weight: 500;
  278. line-height: 40rpx;
  279. white-space: nowrap;
  280. }
  281. .text_15 {
  282. color: rgb(119, 119, 119);
  283. font-size: 28rpx;
  284. font-weight: 500;
  285. line-height: 40rpx;
  286. white-space: nowrap;
  287. }
  288. .text_16 {
  289. margin-left: 20rpx;
  290. color: rgb(51, 51, 51);
  291. font-size: 28rpx;
  292. font-weight: 500;
  293. line-height: 40rpx;
  294. white-space: nowrap;
  295. }
  296. .text_17 {
  297. color: rgb(119, 119, 119);
  298. font-size: 28rpx;
  299. font-weight: 500;
  300. line-height: 40rpx;
  301. white-space: nowrap;
  302. }
  303. .text_18 {
  304. margin-left: 20rpx;
  305. color: rgb(51, 51, 51);
  306. font-size: 28rpx;
  307. font-weight: 500;
  308. line-height: 40rpx;
  309. white-space: nowrap;
  310. }
  311. .text_19 {
  312. color: rgb(119, 119, 119);
  313. font-size: 28rpx;
  314. font-weight: 500;
  315. line-height: 40rpx;
  316. white-space: nowrap;
  317. }
  318. .text_20 {
  319. margin-left: 76rpx;
  320. color: rgb(51, 51, 51);
  321. font-size: 28rpx;
  322. font-weight: 500;
  323. line-height: 40rpx;
  324. white-space: nowrap;
  325. }
  326. .text_21 {
  327. color: rgb(119, 119, 119);
  328. font-size: 28rpx;
  329. font-weight: 500;
  330. line-height: 40rpx;
  331. white-space: nowrap;
  332. }
  333. .text_22 {
  334. margin-left: 76rpx;
  335. color: rgb(51, 51, 51);
  336. font-size: 28rpx;
  337. font-weight: 500;
  338. line-height: 40rpx;
  339. white-space: nowrap;
  340. }
  341. .text_23 {
  342. color: rgb(119, 119, 119);
  343. font-size: 28rpx;
  344. font-weight: 500;
  345. line-height: 40rpx;
  346. white-space: nowrap;
  347. }
  348. .text_24 {
  349. margin-left: 76rpx;
  350. color: rgb(51, 51, 51);
  351. font-size: 28rpx;
  352. font-weight: 500;
  353. line-height: 40rpx;
  354. white-space: nowrap;
  355. }
  356. .text_25 {
  357. color: rgb(119, 119, 119);
  358. font-size: 28rpx;
  359. font-weight: 500;
  360. line-height: 40rpx;
  361. white-space: nowrap;
  362. }
  363. .text_26 {
  364. margin-left: 76rpx;
  365. color: rgb(51, 51, 51);
  366. font-size: 28rpx;
  367. font-weight: 500;
  368. line-height: 40rpx;
  369. white-space: nowrap;
  370. }
  371. .text_27 {
  372. color: rgb(119, 119, 119);
  373. font-size: 28rpx;
  374. font-weight: 500;
  375. line-height: 40rpx;
  376. white-space: nowrap;
  377. }
  378. .text_28 {
  379. margin-left: 76rpx;
  380. color: rgb(51, 51, 51);
  381. font-size: 28rpx;
  382. font-weight: 500;
  383. line-height: 40rpx;
  384. white-space: nowrap;
  385. }
  386. .text_29 {
  387. color: rgb(119, 119, 119);
  388. font-size: 28rpx;
  389. font-weight: 500;
  390. line-height: 40rpx;
  391. white-space: nowrap;
  392. }
  393. .text_30 {
  394. margin-left: 76rpx;
  395. color: rgb(51, 51, 51);
  396. font-size: 28rpx;
  397. font-weight: 500;
  398. line-height: 40rpx;
  399. white-space: nowrap;
  400. }
  401. .text_31 {
  402. color: rgb(119, 119, 119);
  403. font-size: 32rpx;
  404. font-weight: 500;
  405. line-height: 44rpx;
  406. white-space: nowrap;
  407. }
  408. .text_32 {
  409. margin-left: 10rpx;
  410. color: rgb(51, 51, 51);
  411. font-size: 32rpx;
  412. font-weight: 500;
  413. line-height: 44rpx;
  414. white-space: nowrap;
  415. }
  416. .section_5 {
  417. margin-top: 40rpx;
  418. align-self: center;
  419. border-radius: 4rpx;
  420. width: 196rpx;
  421. height: 8rpx;
  422. }
  423. .image_10 {
  424. margin-left: 28rpx;
  425. }
  426. .image_11 {
  427. margin-left: 28rpx;
  428. }
  429. </style>