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.
16 lines
972 B
16 lines
972 B
<!--pages/component/notice/notice.wxml-->
|
|
<wxs src="../../../utils/filter.wxs" module="tool" />
|
|
<view class="mask notice-mask">
|
|
<view class="mask-bg" bindtap="hide"></view>
|
|
<view class="notice-box" style="padding-bottom:{{60+safeBottom}}rpx">
|
|
<view class="iconfont icon-close" bindtap="hide"></view>
|
|
<view class="notice-box-in" style="max-height:{{maxHeight}}px">
|
|
<view style="margin-bottom:10rpx" wx:if="{{bookingInfo.skuName}}">{{bookingInfo.skuName}}</view>
|
|
<rich-text nodes="{{tool.formateRichText(bookingInfo.specialDescription)}}"></rich-text>
|
|
<rich-text nodes="{{tool.formateRichText(bookingInfo.feeDescription)}}"></rich-text>
|
|
<rich-text nodes="{{tool.formateRichText(bookingInfo.bookingInfo)}}"></rich-text>
|
|
<rich-text nodes="{{tool.formateRichText(bookingInfo.trafficDescription)}}"></rich-text>
|
|
<rich-text nodes="{{tool.formateRichText(bookingInfo.refundDescription)}}"></rich-text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|