Files
AGuestSaas/components/cardEnterprise/cardEnterprise.wxml
2020-12-27 09:54:49 +08:00

24 lines
1.3 KiB
Plaintext

<view class="enterprise">
<view class="enterprise-header">
<image class="enterprise-logo" src="{{enterpriseInfo.logo || '/static/images/logo_null.png'}}" mode="aspectFill"></image>
<view class="enterprise-info">
<view class="enterprise-info-name nowrap">{{enterpriseInfo.name || '企业名称'}}</view>
<view class="enterprise-info-btn" wx:if="{{enterpriseInfo.web}}">进入官网</view>
</view>
</view>
<view class="enterprise-img" wx:if="{{enterpriseInfo.pictures.length > 0}}">
<swiper class="enterprise-swiper" indicator-dots="{{enterpriseInfo.pictures.length > 1}}" indicator-active-color="#0b0041">
<swiper-item wx:for="{{enterpriseInfo.pictures}}" wx:key="pictures">
<image class="enterprise-cover" src="{{item}}" mode="aspectFill"></image>
</swiper-item>
</swiper>
</view>
<view class="enterprise-intr {{enterpriseIntrShow ? '': 'hide'}}">
<text>{{enterpriseInfo.description}}</text>
</view>
<view class="enterprise-intr-more {{enterpriseIntrShow ? 'show': ''}}" bindtap="enterpriseIntrShow">
{{enterpriseIntrShow ? '收起': '展开'}}<image class="enterprise-intr-more-icon" src="/static/icons/arrow_dow.png" mode="widthFix"></image>
</view>
</view>