companyintro.wxml 2.2 KB
<import src="../../../wxParse/wxParse.wxml" />

<view class="brandbottom">
  <view class="brandboleft">
    <text class="brandtitle">{{companyinfo.name}}</text>
    <view class="duigou">
      <image src="{{url}}aicon_20x.png"></image>
    </view>
  </view>

  <view class="atten" wx:if="{{companyinfo.is_concern==0}}" bindtap="attention" data-id="{{companyinfo.id}}">关注</view>
  <view class="atten" wx:else bindtap="attention" data-id="{{companyinfo.id}}">取消关注</view>

</view>
<view class="swiper_image">
  <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" class="swiper_item_img" bindchange="swiperChange">
    <block wx:for="{{imgUrls}}" wx:key="doct">
      <swiper-item style="border-radius:10px;">
        <image src="{{item.url}}" data-index='{{index}}' class="slide-image" bindtap='viewImg' width="355" height="150" />
      </swiper-item>
    </block>
  </swiper>

  <view class="dots">
    <block wx:for="{{imgUrls}}" wx:key="">
      <view class="dot{{index == currentSwiper ? ' active' : ''}}"></view>
    </block>
  </view>

</view>

<view class="brandbox">
  <view class="brandboxitem" wx:for="{{attr}}" wx:key='' wx:for-index="idxs">
    <view class="boxtop">
      <view class="boxtopleft">
        {{item.name}}
      </view>
      <view class="boxright" bindtap="showinfo" data-idx="{{idxs}}">
        <image src="{{url}}aicon_53x.png" wx:if="{{item.show}}"></image>
        <image src="{{url}}aicon_52x.png" wx:else></image>
      </view>
    </view>

    <view class="brandtext" wx:if="{{item.show}}">
      <block wx:for="{{artileList}}" wx:for-item="item" wx:for-index="idx" wx:key=''>
        <block wx:if="{{idxs==idx}}">
          <template is="wxParse" data="{{wxParseData:item}}" />
        </block>
      </block>
    </view>



  </view>

  <!-- <view class="brandboxitem">
        <view class="boxtop">
          <view class="boxtopleft">
            品牌文化
          </view>
          <view class="boxright">
              <image src="{{url}}aicon_24x.png"></image>
          </view>
        </view>

      
        <view class="brandimg">
            <image src="{{url}}aicon_23@2x.png"></image>
        </view>
    
    </view> -->

</view>