index.wxml 977 B

12345678910111213141516171819202122
  1. <view class="tabbar">
  2. <block wx:for="{{list}}" wx:key="index">
  3. <view class="tabbar-item" bindtap="switchTab" data-path="{{item.pagePath}}" data-index="{{index}}">
  4. <image class="icon" src="{{selected === index ? item.selectedIconPath : item.iconPath}}" mode="aspectFit" />
  5. <view class="{{selected === index ? 'active' : ''}}">{{item.text}}</view>
  6. </view>
  7. </block>
  8. </view>
  9. <!-- 客服弹窗 -->
  10. <van-dialog
  11. confirm-button-class="confirm-btn"
  12. use-slot
  13. title="联系客服"
  14. show="{{showAgreementModal}}"
  15. show-cancel-button="{{false}}"
  16. >
  17. <view class="dialog-box">
  18. <image class="box-code" src="{{programConfig.customer_qrcode}}" mode="aspectFill"></image>
  19. <view class="box-text" bindtap="onPhone" wx:if="{{programConfig.customer_phone}}">客服电话:{{programConfig.customer_phone}}</view>
  20. <view class="box-text" wx:if="{{programConfig.customer_email}}">客服邮箱:{{programConfig.customer_email}}</view>
  21. </view>
  22. </van-dialog>