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.
27 lines
1.1 KiB
27 lines
1.1 KiB
<!--pages/pbService/museum/info/index.wxml-->
|
|
<wxs src="../../../../utils/filter.wxs" module="tool" />
|
|
<title title="详情"></title>
|
|
<view class="content" wx:if="{{info}}">
|
|
<swiper class="swiper">
|
|
<block wx:for="{{info.listimg}}" wx:key="*this">
|
|
<swiper-item>
|
|
<image src="{{item || '/images/place1.png'}}" mode="aspectFill" class="mainimg"></image>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
<view class="title">{{info.name}}</view>
|
|
<view class="tips">
|
|
<view class="iconfont icon-dianhua"></view>
|
|
<view class="textOver">{{info.phone}}</view>
|
|
</view>
|
|
<view class="tips">
|
|
<view class="iconfont icon-location"></view>
|
|
<view class="textOver">{{info.address}}</view>
|
|
</view>
|
|
<view class="subtitle">场馆详情</view>
|
|
<rich-text nodes="{{tool.formateRichText(info.detail)}}"></rich-text>
|
|
<view class="subtitle">接待时间</view>
|
|
<rich-text nodes="{{tool.formateRichText(info.open_time)}}"></rich-text>
|
|
<view class="subtitle">交通路线</view>
|
|
<rich-text nodes="{{tool.formateRichText(info.route)}}"></rich-text>
|
|
</view>
|