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.
85 lines
1.7 KiB
85 lines
1.7 KiB
2 years ago
|
<template>
|
||
|
<view>
|
||
|
<view class="header">
|
||
|
<cu-custom :isBack="true" :isCenter="true" :hasShadow="true">
|
||
|
<block slot="backText">
|
||
|
<view class="backImg">
|
||
|
<image src="@/static/images/back-btn.png" mode=""></image>
|
||
|
</view>
|
||
|
</block>
|
||
|
<block slot="content">
|
||
|
<view class="tab-title">甄选测评</view>
|
||
|
</block>
|
||
|
</cu-custom>
|
||
|
</view>
|
||
|
|
||
|
<!-- <view class="synopsis-box">
|
||
|
<view class="">
|
||
|
<text></text>
|
||
|
</view>
|
||
|
</view> -->
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { getEvaluationDetail } from '@/api/store'
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
id: 0,
|
||
|
};
|
||
|
},
|
||
|
onLoad() {
|
||
|
this.id = this._route.query.id
|
||
|
this.getInfo(this.id);
|
||
|
},
|
||
|
methods: {
|
||
|
getInfo(id) {
|
||
|
uni.showLoading({
|
||
|
title: ''
|
||
|
})
|
||
|
getEvaluationDetail(id).then(res => {
|
||
|
uni.hideLoading();
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
.header {
|
||
|
.tab-title {
|
||
|
font-size: 32rpx;
|
||
|
font-family: PingFang SC;
|
||
|
font-weight: 600;
|
||
|
color: #2DB5AE;
|
||
|
line-height: 42rpx;
|
||
|
}
|
||
|
.backImg {
|
||
|
width: 88rpx;
|
||
|
height: 62rpx;
|
||
|
padding-left: 26rpx;
|
||
|
image {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.synopsis-box {
|
||
|
margin: 20rpx 32rpx 20rpx 90rpx;
|
||
|
padding: 20rpx 20rpx 20rpx 70rpx;
|
||
|
width: 626rpx;
|
||
|
min-height: 146rpx;
|
||
|
background: radial-gradient(circle at 24rpx 54rpx, transparent 98rpx, #F5F6F8) top left;
|
||
|
// background: #F5F6F8;
|
||
|
box-shadow: 0rpx 10rpx 16rpx 0rpx rgba(0,0,0,0.15);
|
||
|
border-radius: 16rpx;
|
||
|
// background-size: 17px 100px, 116px 100px, 17px 100px;
|
||
|
// background-repeat: no-repeat;
|
||
|
// background-position: 10px 0px,26px 0px,142px 0px;
|
||
|
}
|
||
|
|
||
|
</style>
|