publicLeaderDetail.wxml 1.7 KB

12345678910111213141516171819202122
  1. <view style="padding-bottom: 32rpx;" wx:if="{{ !isZFLDLoading }}">
  2. <!-- item -->
  3. <view bindtap="gotoInfo" data-item="{{item}}" wx:for="{{ leaderList }}" wx:for-item="item" wx:for-index="index" wx:key="index" style="margin-left: 32rpx;margin-top: 31rpx;height: 225rpx;width: 688rpx;display: flex;background-color: #ffffff;border-radius: 12rpx;">
  4. <view style="width: 187rpx;height: 100%;display: flex;align-items: center;justify-content: center;">
  5. <image style="width: 147rpx;height: 184rpx" src="{{item.DOCPUBURL}}{{item.LDTX[0].APPFILE}}" mode="" />
  6. </view>
  7. <view>
  8. <view style="padding-left: 10rpx;display: flex;flex-direction: column;justify-content: center;">
  9. <view style="font-size: 33rpx;font-weight: 600;padding: 19rpx 0;">{{item.CHNLIDNAME}}</view>
  10. <view class="limit-text-2" style="width: 461rpx;font-size: 27rpx;color: #999999;line-height: 29rpx;">{{item.DRZW}}</view>
  11. </view>
  12. <view style="height: 103rpx;display: flex;padding-left: 10rpx;align-items: center;">
  13. <view style="border-radius: 5rpx;display: flex;align-items: center;justify-content: center;width: 151rpx;height:50rpx;border: 2rpx solid #C5C5C5;font-size: 27rpx;letter-spacing: 2rpx;">个人简介</view>
  14. <view style="width: 20rpx;"></view>
  15. <view style="border-radius: 5rpx;display: flex;align-items: center;justify-content: center;width: 151rpx;height:50rpx;border: 2rpx solid #C5C5C5;font-size: 27rpx;letter-spacing: 2rpx;">主管工作</view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <view style="display: flex;justify-content: center;align-items: center;height: 100vh;" wx:if="{{ isZFLDLoading }}">
  21. <t-loading theme="spinner" size="64rpx" text="加载中..." inheritColor></t-loading>
  22. </view>