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="consultItem"> <view class="top_row"> <view class="flex"> <view class="schoolName">张三三 18265468753</view> </view> <view class="status"> <!-- <view class="text">待上课</view> --> <view class="icon"> <u-icon name="arrow-right" size="14" color="#686B73" style="margin-left: 12rpx;" ></u-icon> </view> </view> </view> <view class="target"> <view class="row"> <view class="iconImg"> <image src="@/static/images/index/radio_nor.png" mode=""></image> </view> <view class="name">报名时间:2023/08/08</view> </view> <view class="row"> <view class="iconImg"> <image src="@/static/images/index/radio_nor.png" mode=""></image> </view> <view class="name">学驾车型:C1小型汽车手动挡</view> </view> <view class="row"> <view class="iconImg"> <image src="@/static/images/index/radio_nor.png" mode=""></image> </view> <view class="name">报名班型:C1一对一VIP班</view> </view> <view class="row"> <view class="iconImg"> <image src="@/static/images/index/radio_nor.png" mode=""></image> </view> <view class="name">最新状态:<text>科目三理论考试已预约</text> </view> </view> </view> </view> </template>
<script> </script>
<style lang="scss" scoped> .consultItem { width: 100%; .top_row { display: flex; width: 100%; height: 116rpx; border-bottom: 2rpx dashed #E8E9EC; justify-content: space-between; align-items: center; .tag { // width: 176rpx;
height: 60rpx; background: rgba(250, 149, 25, 0.1); border-radius: 8rpx; text-align: center; font-size: 28rpx; color: #FA7919; margin-right: 24rpx; padding: 10rpx 18rpx; } .schoolName { font-size: 28rpx; color: #333; margin-left: 20rpx; font-weight: 550; } .status { display: flex; align-items: center; .text { font-size: 28rpx; color: $themC; } } } .target { padding: 20rpx 0; } .row { padding: 16rpx 0; display: flex; align-items: center; .iconImg { width: 25rpx; height: 25rpx; } .name { font-size: 28rpx; color: #333; padding-left: 20rpx; text { color: $themC; } } } } </style>
|