|
- <template>
- <view class="box">
- <!-- 顾问选择 -->
- <view class="nextcon">
- 下一位接待顾问:毛丫丫
- </view>
- <view class="content">
- <radio-group v-model="value" @change="radioChange">
- <view class="content-tips">
- <view class="left">
- <view class="img">
- 宋
- </view>
- <view class="text">
- <view class="name">
- 宋幸运
- </view>
- <view class="num">
- 今日接待: 5
- </view>
- </view>
- </view>
- <view class="right">
- <radio value="2" style="transform:scale(0.7)" color="#2671E2"></radio>
- </view>
- </view>
-
- <view class="content-tips">
- <view class="left">
- <view class="img">
- 宋
- </view>
- <view class="text">
- <view class="name">
- 宋幸运
- </view>
- <view class="num">
- 今日接待: 5
- </view>
- </view>
- </view>
- <view class="right">
- <radio value="2" style="transform:scale(0.8)" color="#2671E2"></radio>
- </view>
- </view>
-
- <view class="content-tips">
- <view class="left">
- <view class="img">
- 宋
- </view>
- <view class="text">
- <view class="name">
- 宋幸运
- </view>
- <view class="num">
- 今日接待: 5
- </view>
- </view>
- </view>
- <view class="right">
- <radio value="2" style="transform:scale(0.7)" color="#2671E2"></radio>
- </view>
- </view>
-
- </radio-group>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data(){
- return{
- value:"",
-
- }
- },
- methods:{
- radioChange(e){
- console.log(e)
- }
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .box{
- background: #F8F8F8;
- width: 100%;
- height: 100%;
- font-size: 30rpx;
- font-weight: 400;
- // line-height: 30px;
- .nextcon{
- height: 78rpx;
- background: #F4F8FD;
- color: #2671E2;
- text-align: center;
- line-height: 78rpx;
- }
- .content-tips{
- display: flex;
- justify-content: space-between;
- background: #fff;
- padding: 0 30rpx;
- height: 148rpx;
- margin-bottom: 20rpx;
- .left{
- display: flex;
- margin-top: 30rpx;
- .img{
- width: 72rpx;
- height: 72rpx;
- background: #FFFFFF;
- border: 1px solid #C9C9C9;
- line-height: 64rpx;
- text-align: center;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .text{
- .name{
- margin-top: 4rpx;
- font-weight: 600;
- color: #333333;
- line-height: 30rpx;
- margin-bottom: 24rpx;
- }
-
- }
- }
- .right{
- margin: 54rpx 0;
- }
- }
- }
- </style>
|