2023-04-17 16:14:18 +08:00

55 lines
1.8 KiB
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.

<!--pages/circularize/circularize.wxml-->
<!-- <text>pages/circularize/circularize.wxml</text> -->
<header-nav inner-text="Some text">发系统通知</header-nav>
<view class="container">
<view class="title">
<view class="yellow-dot"></view><text>被通知的房源及发布者</text>
</view>
<view class="details-box">
<view class="details">
<view class="details-top">
<text>{{ info.subject }}</text>
<image src="/img/pics.jpg"></image>
</view>
<view class="house-id">房源ID{{ info.id }}</view>
<view class="info">
<image src="{{ info.avatar }}" mode="widthFix">
</image>
<text>{{ info.username }}</text>
</view>
</view>
</view>
<view class="title">
<view class="yellow-dot"></view><text>通知内容</text>
</view>
<view class="content">
<view class="content-Btn" bindtap="triggerRulesClose">
<image src="/img/u1411.png" mode="widthFix"></image>
<view>快速选择</view>
</view>
<textarea class="content-textarea" maxlength="-1" placeholder="快速选择或输入..." model:value="{{ content }}" cursor-spacing="40"></textarea>
<image class="textarea-bottom" src='/img/u1472.png'></image>
</view>
</view>
<!-- 底部 -->
<view class="footer-btn">
<view class="send" bindtap="send">发送</view>
</view>
<!-- pop-up -->
<view class="pop-up-speediness" wx:if="{{ speedinessState }}">
<view class="speediness-box">
<image catchtap="triggerRulesClose" class="trigger-rules-close-icon" mode="widthFix" src="/img/u929.svg">
</image>
<view class="speediness-title">快速选择</view>
<view class="speediness-content">
<view class="speediness-iten" wx:for="{{ quickcontent }}" wx:key="index" bindtap="speediness" data-content="{{ item }}">
<view class="yellow-dot"></view>
<view hover-class="blue">{{ item }}</view>
</view>
</view>
</view>
</view>