1234567891011121314151617181920212223 |
- <import-sjs
- name="utils"
- from="./index.sjs"
- />
- <wrapper>
- <view class="department-introduction-container">
- <button-auth
- item="{{ item }}"
- a:for="{{ dataSource }}"
- formClass="department-introduction"
- class="department-introduction-content"
- >
- <view class="department-introduction-left" onTap="onTap">
- <image src="{{ utils.getImage(item.icon, imgSrcPrefix) }}" class="department-introduction-img" />
- </view>
- <view class="department-introduction-right" onTap="onTap">
- <view class="department-introduction-title">{{ item.name }}</view>
- <view class="department-introduction-desc">{{ item.serviceDesc }}</view>
- </view>
- </button-auth>
- </view>
- <view class="no-more-departments">没有更多了</view>
- </wrapper>
|