index.axml 758 B

12345678910111213141516171819202122232425262728
  1. <view
  2. style="height:{{viewHeight}}"
  3. class="healthy-card-component-entry"
  4. >
  5. <block>
  6. <healthy-card-auth
  7. a:if="{{step === 0}}"
  8. onAuthTap="onAuthTap"
  9. componentData="{{componentData}}"
  10. />
  11. <healthy-card-info
  12. a:if="{{step === 1}}"
  13. cardInfo="{{cardInfo}}"
  14. onNextPage="toNextPage"
  15. onRefreshCard="onRefreshCard"
  16. componentData="{{componentData}}"
  17. />
  18. <healthy-card-qrcode
  19. a:if="{{step >= 2}}"
  20. cardInfo="{{cardInfo}}"
  21. onRefresh="onRefreshCard"
  22. onBackCard="onBackCard"
  23. />
  24. </block>
  25. <view class="footer" a:if="{{step > 0 && componentData.componentExtInfo.companyName}}">
  26. <text>技术支持:{{componentData.componentExtInfo.companyName}}</text>
  27. </view>
  28. </view>