roomItem.wxml 627 B

12345678910111213
  1. <!--components/roomItem/roomItem.wxml-->
  2. <view class="room-cell">
  3. <view class="rent-time">
  4. <text class="long">{{data.rentNumText}}</text>
  5. <text class="time">{{data.rentTimeIn}}</text>
  6. </view>
  7. <view class="intro-money">
  8. <text class="{{data.status == '1' ? 'money-unit' : 'money-unit not-rent'}}">{{data.moneyUnit}}</text>
  9. <text class="{{data.status == '1' ? 'money' : 'money not-rent'}}">{{data.price}}</text>
  10. <text
  11. class="{{data.status == '1' ? 'money-cycle' : 'money-cycle not-rent'}}">{{data.priceSuffix}}/{{data.rentTimeUnitText}}</text>
  12. </view>
  13. </view>