<import-sjs from="@anyui/alipay/utils/helper.sjs" name="anyui" />
  <view class="{{className || ''}}">
    <view
      class="anyui-tabbar-box"
      a:if="{{tabbarShow}}"
      style="{{anyui.processStyle(wrapStyle)}}"
    >
      <view
        class="anyui-tabbar-btnBox"
        a:for="{{showData}}"
        a:for-item="item"
        a:for-index="index"
        onTap="tabUrl1"
        data-onTapparams0="{{index}}"
        key="{{index}}"
      >
        <view class="anyui-tabbar-iconBox">
          <view class="anyui-tabbar-imgBox">
            <view class="anyui-tabbar-image">
              <image
                class="anyui-tabbar-image"
                mode="widthFix"
                src="{{item.iconUrl}}"
              />
              <view class="anyui-tabbar-deg" a:if="{{item.deg}}">
                {{ item.deg.text }}
              </view>
              <view class="anyui-tabbar-dot" a:if="{{item.dot}}"></view>
            </view>
          </view>
        </view>
        <view
          class="anyui-tabbar-name"
          style="{{anyui.processStyle(item.pageName)}}"
        >
          {{ item.name }}
        </view>
      </view>
    </view>
  </view>
