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

12345678910111213141516171819
  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-id="{{l.id}}" bindtap="toIntroduce">
  9. <view class="inner">
  10. <view class="text">{{l.name}}</view>
  11. <view class="sub-text">{{l.info}}</view>
  12. <image class="icon-arr" src="/img/arr1.png"></image>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </scroll-view>
  19. </view>