51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
<!--subpackage/teacher/room-detail/room-datial.wxml-->
|
|
<view class="page-content" style="padding: 0 30rpx; padding-bottom: 300rpx; box-sizing: border-box;">
|
|
<mp-bar background="linear-gradient(190deg, #49a5fc 0%, #f7f7f7 800rpx, #f7f7f7 100%)" title="场馆" color="#fff"></mp-bar>
|
|
|
|
<swiper class="swip" indicator-dots interval="2000" autoplay>
|
|
<swiper-item class="swip-item" wx:for="{{detail.stadiumResourceList}}" wx:key="id">
|
|
<image src="{{item.url}}" class="sp" mode=""/>
|
|
</swiper-item>
|
|
</swiper>
|
|
|
|
<view class="card">
|
|
<view class="bottom">
|
|
<view>
|
|
<view class="title">
|
|
<view class="title-before" />场馆名称:{{detail.stadiumName}}
|
|
</view>
|
|
<view class="address">地址: {{detail.address}}</view>
|
|
<view class="address">电话: {{detail.phoneNo}}</view>
|
|
</view>
|
|
<view class="right" catch:tap="goMap" data-longitude="{{detail.longitude}}" data-name="{{detail.stadiumName}}" data-latitude="{{detail.latitude}}">
|
|
<mp-icon icon="discover" size="{{30}}" color="#FFC20E"></mp-icon>
|
|
查看位置
|
|
</view>
|
|
</view>
|
|
|
|
<rich-text type="text" nodes="{{detail.intro}}"/>
|
|
|
|
<view class="btn-box">
|
|
<view class="btn" bind:tap="goPre">
|
|
预约
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<mp-half-screen-dialog
|
|
bindbuttontap="buttontap"
|
|
show="{{show}}"
|
|
maskClosable="{{false}}"
|
|
buttons="{{buttons}}"
|
|
closabled="{{false}}"
|
|
>
|
|
<view slot="title" class="title">
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/room/loggoo.png" mode=""/>
|
|
跃动体育 预约
|
|
</view>
|
|
<view slot="desc" class="body">
|
|
为了更快响应您的需求,我们将安全地获取您微信绑定的手机号码。随后,我们的专业客服团队将尽快与您取得联系,为您提供优质服务。
|
|
</view>
|
|
|
|
</mp-half-screen-dialog>
|
|
</view> |