You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
816 B
21 lines
816 B
|
5 years ago
|
<!--pages/info/culturalUnitInfo/index.wxml-->
|
||
|
|
<wxs src="../../../utils/filter.wxs" module="tool" />
|
||
|
|
<view wx:if="{{info}}">
|
||
|
|
<title title="{{info.company_name}}"></title>
|
||
|
|
<swiper class="swiper" indicator-dots="{{true}}"
|
||
|
|
autoplay="{{true}}" interval="{{2000}}" duration="{{300}}">
|
||
|
|
<block wx:for="{{info.list_img}}" wx:key="*this">
|
||
|
|
<swiper-item>
|
||
|
|
<image src="{{item}}" mode="aspectFill"></image>
|
||
|
|
</swiper-item>
|
||
|
|
</block>
|
||
|
|
</swiper>
|
||
|
|
<view class="top-box">
|
||
|
|
<view class="info-address" wx:if="{{info.address}}">地址:{{info.address}}</view>
|
||
|
|
<view class="info-address" wx:if="{{info.mobile}}">电话:{{info.mobile}}</view>
|
||
|
|
</view>
|
||
|
|
<view class="content" wx:if="{{info.content}}">
|
||
|
|
<rich-text nodes="{{tool.formateRichText(info.content)}}"></rich-text>
|
||
|
|
</view>
|
||
|
|
</view>
|