Files
warOfCoins/components/HistoryModal/HistoryModal.wxml
2025-12-07 22:53:46 +08:00

17 lines
664 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--components/HistoryModal/HistoryModal.wxml-->
<view class="modal-mask" wx:if="{{show}}" bindtap="closeModal">
<view class="modal-content" catchtap="preventBubble">
<view class="modal-header">
<text class="modal-title">历史案例参考</text>
<view class="modal-close" bindtap="closeModal">×</view>
</view>
<view class="modal-body">
<view class="case-title">{{historyCase.title}}</view>
<view class="case-image"></view>
<view class="case-desc">{{historyCase.description}}</view>
</view>
<view class="modal-footer">
<view class="btn" bindtap="closeModal">了解了</view>
</view>
</view>
</view>