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.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | <!--pages/mallInfo.wxml-->
<!-- <button class='goback' bindtap='goback'><image src='{{wmhome}}' mode="widthFix"></image></button> -->
<navbar back home text="关于我们" background='#FD832D' color="#fff"></navbar>
<view style="height:{{navigationBarHeight}} "></view>
<view  class='codeBox'>
  <view class='code' >
    <image class='icons' src="{{img}}" mode='widthFix'></image>
  </view>
  <view class='info'>
    <view class='title'>{{name}}</view>
    <text class='introduction'>{{introduction}}</text>
    <view class='time'>
      <text>营业时间 :</text>
      <view class='timesBox'>
        <view class='times' wx:for="{{businessHoursH}}" wx:key="index" >
          <text>{{item.time}}</text><text style='margin-left:10rpx;'>({{item.weekName}})</text>
        </view>
      </view>
    </view>
    <view class='park' wx:if="{{parkPlaceNumber>0}}">
      <text>停车位 :</text>
      <text>{{parkPlaceNumber}}</text>
    </view>
    <view class='phone'>
      <text>热线电话 :</text>
      <image  bindtap='phone'  data-merchantLinkPhone='{{servicePhone}}'  class="tel" src="{{teljpgUrl}}" mode="widthFix" />
      <text class='phoneNum' bindtap='phone'  data-merchantLinkPhone='{{servicePhone}}'>{{servicePhone}}</text>
    </view>
  </view>
</view>
 |