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.

24 lines
1.1 KiB

<wxs src="../../../utils/filter.wxs" module="tool" />
<view class="bg">
<view class="modal-mask" bindtap="hideModal" catchtouchmove="preventTouchMove"></view>
<view class="modal-dialog">
<view class="iconfont icon-close" bindtap="hideModal">
<image src="https://static.ticket.sz-trip.com/uploads/20250929/75f708ed1c580afdefd3aed82d53f94a.png"></image>
</view>
<view class="modal-content">
<rich-text style="width: 100%;word-break: break-all;"
nodes="{{tool.formateRichText(info)}}"></rich-text>
<view class="phone-container" wx:for="{{phones}}" wx:if="{{showPhone}}">
<view bind:tap="phoneCall" data-phone="{{item}}">{{item}}</view>
</view>
</view>
<view class="modal-footer">
<view class="btn-confirms two" style="border-right: 1px solid #D8D8D8;" bindtap="hideModal">取消</view>
<button class="btn-confirms"
open-type="contact" bindcontact="handleContact">确定</button>
</view>
</view>
</view>