| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | <!--pages/shopInfo/shopInfo.wxml--><!-- 店铺信息 & 收藏 --><view class="container">	<view class="shopInfo">		<view class="shopLogo">			<image src="{{shopInfo.shopLogo}}"></image>		</view>		<view class="shopTitle">			<view class="shopName">{{shopInfo.shopName}}</view>			<view class="shopTel">联系电话:{{shopInfo.tel}}</view>		</view>		<!-- <view class="collection" bindtap='addOrCannelCollection'>      <image wx-if="{{!isCollection}}" src="../../images/icon/prod-col.png"></image>      <image wx-if="{{isCollection}}" src="../../images/icon/prod-col-red.png"></image>      收藏    </view> -->	</view>	<!-- 评分栏 -->	<!-- <view class="grade">    <view class="gradeItem">      评价      <text class="fraction">87.7</text>    </view>    <view class="gradeItem">      评价      <text class="fraction">87.7</text>    </view>    <view class="gradeItem">      评价      <text class="fraction">87.7</text>    </view>  </view> -->	<!-- 其他信息 -->	<!-- <view class="other">    <view class="otherItem">      <text class="itemContent">联系客服</text>      <image class="otherIcon" src=""></image>    </view>    <view class="otherItem">      <text class="itemContent">证件信息</text>      <image class="otherIcon" src=""></image>    </view>  </view> -->	<!-- <view class="shopDetails">		<view class="otherItem">			<text class="itemContent">店铺简介</text>			<view>星闪豹~~</view>		</view>		<view class="otherItem">			<text class="itemContent">开店时间</text>			<view>2019年09月18日</view>		</view>	</view> -->  <!-- 店铺简介 -->  <view class="shop-intro">    <view class="intro-tit">店铺简介</view>    <view class="intro-content">{{shopInfo.intro}}</view>  </view></view>
 |