123456789101112131415161718192021222324 |
- <!--pages/detail/guests.wxml-->
- <view class="guests">
- <van-cell-group inset>
- <view style="background-color: #fff;padding: 1em;">
- <van-row>
- <van-col span="8">
- <image class="m_phone" style="{{'width: ' + (detail.width || 0) + 'px;height: ' + (detail.height || 0) + 'px'}}" src="{{detail.photo}}" bindload="imageload" />
- </van-col>
- <van-col span="16">
- <view style="padding: 0 0 0 1em;">
- <view class="title" style="margin-bottom: 1em;">{{detail.userName}}</view>
- <view class="van-multi-ellipsis--l2">{{detail.tags}}</view>
- </view>
- </van-col>
- </van-row>
- </view>
- </van-cell-group>
- <view style="height: 2em;"></view>
- <van-cell-group inset>
- <view style="background-color: #fff;padding: 1em;text-indent: 2em;">
- {{detail.userDesc}}
- </view>
- </van-cell-group>
- </view>
|