1 代码

  <van-row>
    <van-col span="4" >
      <view class="item-name">
        <text  decode="{{true}}"> 地点:</text>
        </view>
    </van-col>
    <van-col span="18" >
      <view class="item-value">
        {{applyDetail.placeOfDeparture}}
        </view>
    </van-col>
  </van-row>

 

.item-value {
  width: 100%;
  line-height: 60rpx;
  font-size: 36prx;
  margin-left: 30rpx; 
  
}

 

2 效果

      地点没有显示完整

  image

 

3 加上样式

word-wrap: break-word; 
overflow: auto; 

完整样式

.item-value {
  width: 100%;
  line-height: 60rpx;
  font-size: 36prx;
  margin-left: 30rpx; 
  word-wrap: break-word; 
  overflow: auto; 
}

 

4 效果

  image