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

1234567891011121314151617181920
  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. <view class="inner">
  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. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </scroll-view>
  20. </view>