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.
|
|
<template> <view class="pageBgImg"> <topNavbar title="评价"></topNavbar> <evaluateItem :info="info"/> <evaluateItem :info="{tit: '您对教练满意吗'}"/> <view class="btnBox"> <view class="btnBg">提交</view> </view> </view> </template>
<script> import evaluateItem from './comp/evaluateItem' export default { components: { evaluateItem }, data() { return { checked: false, info: { tit: '您对驾校满意吗?', } } } } </script>
<style lang="scss" scoped> @import '../../../common/css/textareaBg.scss'; .btnBox { padding-bottom: 76rpx; } .btnBg { margin: 124rpx auto 0 auto; width: 396rpx; } .textareaBg { margin-top: 22rpx; } .card { padding: 28rpx; .top_row { display: flex; align-items: center; padding-bottom: 24rpx; border-bottom: 2rpx solid #E8E9EC; justify-content: space-between; .tit { font-weight: 600; color: #333333; font-size: 32rpx; } } .user_row { width: 100%; height: 100rpx; display: flex; align-items: center; .avatar { width: 60rpx; height: 60rpx; border-radius: 50%; overflow: hidden; } .name { font-size: 28rpx; font-weight: 500; padding-left: 26rpx; } } .star_row { padding: 14rpx 0; display: flex; align-items: center; .lab { font-size: 28rpx; font-weight: 500; padding-right: 32rpx; } .star { } } } </style>
|