departmentIntroduction.axml 796 B

1234567891011121314151617181920212223
  1. <import-sjs
  2. name="utils"
  3. from="./index.sjs"
  4. />
  5. <wrapper>
  6. <view class="department-introduction-container">
  7. <button-auth
  8. item="{{ item }}"
  9. a:for="{{ dataSource }}"
  10. formClass="department-introduction"
  11. class="department-introduction-content"
  12. >
  13. <view class="department-introduction-left" onTap="onTap">
  14. <image src="{{ utils.getImage(item.icon, imgSrcPrefix) }}" class="department-introduction-img" />
  15. </view>
  16. <view class="department-introduction-right" onTap="onTap">
  17. <view class="department-introduction-title">{{ item.name }}</view>
  18. <view class="department-introduction-desc">{{ item.serviceDesc }}</view>
  19. </view>
  20. </button-auth>
  21. </view>
  22. <view class="no-more-departments">没有更多了</view>
  23. </wrapper>