| 
						 | 
						<template>  <view class="flex-col page">    <view class="flex-col group_4">      <view class="section_2 flex-col view_2">        <text>共3件</text>        <view class="flex-row equal-division">          <image            src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768828992333.png"            class="equal-division-item"			@click="previewImage"          />          <image            src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768927244914.png"            class="equal-division-item image_7"			@click="previewImage"          />          <image            src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768986098398.png"            class="equal-division-item image_8"			@click="previewImage"          />        </view>      </view>      <view class="section_2 flex-col view_3">        <view class="flex-row">          <text class="text_3">鉴定结果:</text>          <text class="text_4">共3件</text>        </view>        <view class="flex-row group_6">          <text class="text_5">评级编号:</text>          <text class="text_6">81193920347</text>        </view>        <view class="flex-row group_7">          <text class="text_7">名称:</text>          <text class="text_8">FUIWE UEIF</text>        </view>        <view class="flex-row group_8">          <text class="text_9">分数:</text>          <text class="text_10">NM-MT+8.5</text>        </view>      </view>      <view class="flex-col section_3">        <view class="flex-row">          <text class="text_11">年份:</text>          <text class="text_12">2014</text>        </view>        <view class="flex-row group_10">          <text class="text_13">发行商:</text>          <text class="text_14">PANINI</text>        </view>        <view class="flex-row group_11">          <text class="text_15">卡片系列名称:</text>          <text class="text_16">CONRT KINGS</text>        </view>        <view class="flex-row group_12">          <text class="text_17">边子系列名称:</text>          <text class="text_18">HEIR APPARENT</text>        </view>        <view class="flex-row group_13">          <text class="text_19">卡片编码:</text>          <text class="text_20">#HA-AW</text>        </view>        <view class="flex-row group_14">          <text class="text_21">居中分数:</text>          <text class="text_22">9.5</text>        </view>        <view class="flex-row group_15">          <text class="text_23">边框分数:</text>          <text class="text_24">8.5</text>        </view>        <view class="flex-row group_16">          <text class="text_25">卡角分数:</text>          <text class="text_26">8.5</text>        </view>        <view class="flex-row group_17">          <text class="text_27">表面分数:</text>          <text class="text_28">9.5</text>        </view>        <view class="flex-row group_18">          <text class="text_29">签字分数:</text>          <text class="text_30">10</text>        </view>      </view>      <view class="flex-col section_4">        <view class="flex-row">          <text class="text_31">鉴定结果:</text>          <text class="text_32">正常</text>        </view>        <view class="flex-col group_20">          <view class="flex-row">            <image              src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768828992333.png"              class="equal-division-item"			  @click="previewImage"            />            <image              src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768927244914.png"              class="equal-division-item image_10"			  @click="previewImage"            />            <image              src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768986098398.png"              class="equal-division-item image_11"			  @click="previewImage"            />          </view>          <view class="section_5"> </view>        </view>      </view>    </view>  </view></template>
<script>	import { gradingDetail } from '@/service/grading.js'	  export default {    data() {      return {		  id: ''	  };    },	onLoad(options){		this.id = options.id;	},	methods: {		async getViewGradingDetail(){			// todo 更换接口?
			let res = await gradingDetail(this.id);			console.log("res", res)		},		previewImage(){			uni.previewImage({				urls: ['https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497768927244914.png'],				current: 0			})		}	}  };</script>
<style scoped lang="css">  .section_2 {    padding: 40rpx 32rpx;    background-color: rgb(255, 255, 255);  }  .equal-division-item {    flex: 1 1 210rpx;    border-radius: 10rpx;    width: 210rpx;    height: 130rpx;  }  .page {    background-color: #f6f6f6;    width: 100%;    overflow-y: auto;    height: 100%;  }  .group_4 {    padding-top: 2rpx;    flex: 1 1 auto;    overflow-y: auto;  }  .view_2 {    color: rgb(51, 51, 51);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .view_3 {    margin-top: 30rpx;  }  .section_3 {    margin-top: 30rpx;    padding: 44rpx 32rpx 40rpx;    background-color: rgb(255, 255, 255);  }  .section_4 {    margin-top: 30rpx;    padding: 40rpx 32rpx 16rpx;    background-color: rgb(255, 255, 255);  }  .equal-division {    margin-top: 30rpx;  }  .group_6 {    margin-top: 50rpx;  }  .group_7 {    margin-top: 50rpx;  }  .group_8 {    margin-top: 50rpx;  }  .group_10 {    margin-top: 40rpx;  }  .group_11 {    margin-top: 40rpx;  }  .group_12 {    margin-top: 40rpx;  }  .group_13 {    margin-top: 40rpx;  }  .group_14 {    margin-top: 40rpx;  }  .group_15 {    margin-top: 40rpx;  }  .group_16 {    margin-top: 40rpx;  }  .group_17 {    margin-top: 40rpx;  }  .group_18 {    margin-top: 40rpx;  }  .group_20 {    margin-top: 40rpx;  }  .image_7 {    margin-left: 28rpx;  }  .image_8 {    margin-left: 28rpx;  }  .text_3 {    color: rgb(119, 119, 119);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_4 {    margin-left: 10rpx;    color: rgb(51, 51, 51);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_5 {    color: rgb(119, 119, 119);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_6 {    margin-left: 10rpx;    color: rgb(51, 51, 51);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_7 {    color: rgb(119, 119, 119);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_8 {    margin-left: 74rpx;    color: rgb(51, 51, 51);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_9 {    color: rgb(119, 119, 119);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_10 {    margin-left: 74rpx;    color: rgb(51, 51, 51);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_11 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_12 {    margin-left: 132rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_13 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_14 {    margin-left: 104rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_15 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_16 {    margin-left: 20rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_17 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_18 {    margin-left: 20rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_19 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_20 {    margin-left: 76rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_21 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_22 {    margin-left: 76rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_23 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_24 {    margin-left: 76rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_25 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_26 {    margin-left: 76rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_27 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_28 {    margin-left: 76rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_29 {    color: rgb(119, 119, 119);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_30 {    margin-left: 76rpx;    color: rgb(51, 51, 51);    font-size: 28rpx;    font-weight: 500;    line-height: 40rpx;    white-space: nowrap;  }  .text_31 {    color: rgb(119, 119, 119);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .text_32 {    margin-left: 10rpx;    color: rgb(51, 51, 51);    font-size: 32rpx;    font-weight: 500;    line-height: 44rpx;    white-space: nowrap;  }  .section_5 {    margin-top: 40rpx;    align-self: center;    border-radius: 4rpx;    width: 196rpx;    height: 8rpx;  }  .image_10 {    margin-left: 28rpx;  }  .image_11 {    margin-left: 28rpx;  }</style>
  |