index.axml 684 B

123456789101112131415161718192021222324
  1. <view class="rechargeTag1">
  2. <scroll-fetch
  3. showRange="{{false}}"
  4. onService="getCardLists"
  5. style="padding: 0;"
  6. ref="saveRef"
  7. >
  8. <view slot-scope="props">
  9. <view style="width: 100%; padding: 24rpx 24rpx 0 24rpx; box-sizing: border-box;" class="card_mgr_div_58356592" data-card="{{item}}" a:for="{{props.list}}" a:key="*this">
  10. <hj-hospital-card
  11. cardInfo="{{item}}"
  12. onClick="toRechargeCard"
  13. />
  14. </view>
  15. <view class="button-box">
  16. <text
  17. a:for="{{componentData.serviceList}}"
  18. data-item="{{item}}"
  19. onTap="createCard">
  20. {{item.name}}
  21. </text>
  22. </view>
  23. </scroll-fetch>
  24. </view>