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

469 lines
11 KiB

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