家政小程序
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.

index.wxml 1.3KB

12345678910111213141516171819202122232425
  1. <view class="page">
  2. <scroll-view scroll-y scroll-with-animation scroll-into-view="{{toView}}">
  3. <view class="page-bd">
  4. <view class="classify {{item.color}}" wx:for="{{list}}" id="jiazheng">
  5. <view class="hd">
  6. <text class="dot">●</text>{{item.name}}</view>
  7. <view class="bd">
  8. <view class="item" wx:for="{{item.array}}" wx:for-item="l" data-name="{{l.name}}" data-id="{{l.id}}"
  9. bindtap="toIntroduce">
  10. <!-- <button class="inner" hover-class="none" open-type="contact" session-from="" wx:if="{{l.isConsult}}">
  11. <view class="text">{{l.name}}</view>
  12. <view class="sub-text">{{l.info}}</view>
  13. <image class="icon-arr" src="/img/arr1.png"></image>
  14. </button> -->
  15. <view class="inner">
  16. <view class="text">{{l.name}}</view>
  17. <view class="sub-text">{{l.info}}</view>
  18. <image class="icon-arr" src="/img/arr1.png"></image>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </scroll-view>
  25. </view>