index.wxml 797 B

1234567891011
  1. <van-tabbar active="{{ active }}" placeholder>
  2. <van-tabbar-item bindtap="onChange" info="{{item.fcount}}" data-index="{{index}}" wx:for="{{tabbarList}}" wx:key="index">
  3. {{item.text}}
  4. <image slot="icon" src="{{ item.icon }}" data-index="{{index}}" mode="aspectFit" style="width: 30px; height: 18px;" />
  5. <image slot="icon-active" src="{{item.iconA }}" data-index="{{index}}" mode="aspectFit" style="width: 30px; height: 18px;" />
  6. </van-tabbar-item>
  7. </van-tabbar>
  8. <van-dialog use-slot title="在线客服" show="{{ show }}" confirmButtonText='呼叫' show-cancel-button bind:close="onClose" bind:confirm="CallOut" confirm-button-color="#4BBECF">
  9. <view style="text-align: center; height: 150rpx; line-height: 150rpx;">请联系:{{phoneNumber}}</view>
  10. </van-dialog>