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.
116 lines
2.9 KiB
116 lines
2.9 KiB
<template>
|
|
<view class="content">
|
|
<view class="orderBox">
|
|
<view class="title">时光印记摄影套餐评价</view>
|
|
<view class="discuss">
|
|
<view class="dis_l">评分</view>
|
|
<view class="starBox">
|
|
<image mode="heightFix" src="../../static/icon_detail_star_pre@2x.png"></image>
|
|
<image mode="heightFix" src="../../static/icon_detail_star_pre@2x.png"></image>
|
|
<image mode="heightFix" src="../../static/icon_detail_star_pre@2x.png"></image>
|
|
<image mode="heightFix" src="../../static/icon_detail_star_nor@2x.png"></image>
|
|
<image mode="heightFix" src="../../static/icon_detail_star_nor@2x.png"></image>
|
|
</view>
|
|
<text class="starNum">3颗星</text>
|
|
</view>
|
|
<view class="areaBox">
|
|
<view class="areaTit">评价</view>
|
|
<view class="areaOuter">
|
|
<textarea placeholder-style="color:#CCCCCC" placeholder="文字评价不少于20字"/>
|
|
</view>
|
|
<view class="tips">0/200</view>
|
|
</view>
|
|
<view class="subBtn">提交</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
page{background: #FFFFFF;}
|
|
</style>
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.orderBox{
|
|
width:710rpx;
|
|
margin:0 auto 20rpx auto;
|
|
padding:30rpx;
|
|
box-sizing: border-box;
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
position: relative;
|
|
.title{
|
|
font-size: 36rpx;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
}
|
|
.subBtn{
|
|
width: 650rpx;
|
|
height: 88rpx;
|
|
background: linear-gradient(90deg, #FF7E95 0%, #FF447B 100%);
|
|
border-radius: 44rpx;
|
|
opacity: 0.6015;
|
|
font-size: 36rpx;
|
|
font-weight: 500;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
line-height:88rpx;
|
|
margin-top:120rpx;
|
|
}
|
|
.areaBox{
|
|
.areaTit{
|
|
font-size: 36rpx;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
margin-bottom:32rpx;
|
|
}
|
|
.areaOuter{
|
|
box-sizing: border-box;
|
|
border-radius: 7rpx;
|
|
border: 1rpx solid #DEDEDE;
|
|
width:100%;
|
|
textarea{height:300rpx;font-size: 28rpx;padding:20rpx;box-sizing: border-box;width:100%;box-sizing:border-box;}
|
|
}
|
|
.tips{
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
color: #666666;
|
|
text-align: right;
|
|
margin-top:10rpx;
|
|
}
|
|
|
|
}
|
|
.discuss{
|
|
display: flex;justify-content: flex-start;margin:32rpx 0;position: relative;
|
|
.dis_l{font-size:36rpx;color:#333;font-weight: 500;padding-top:5rpx;}
|
|
.starBox{
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin-left: 32rpx;
|
|
image{display: block;width:48rpx;height:48rpx;margin-right:32rpx;}
|
|
}
|
|
.starNum{font-size: 28rpx;font-weight: 400;color: #666666;position: absolute;right:0;top:50%;transform: translateY(-50%);}
|
|
}
|
|
}
|
|
</style>
|