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

20 lines
864 B
Plaintext

<view class="caontainer">
<header-nav inner-text="Some text">快速沟通</header-nav>
<view class='header'>
<view class='title'>{{ info.subject }}</view>
<view class='info'>
{{ info.gptype }} {{ info.type}}
<view class='divide'>|</view>
{{ info.rent && info.rent >0 ? info.rent :info.money }} HK$/月
</view>
</view>
<view class='tips'>发布者预设了以下提问,回答后即可与其联系</view>
<view class='question-list'>
<view class='li' wx:for="{{ questions }}" wx:key="index">
<view class='title'>{{ item.questions }}</view>
<textarea value='{{ item.answer }}' cursor-spacing="20" bindinput='input' data-i="{{index }}" show-confirm-bar="{{ false }}"></textarea>
</view>
</view>
<view class="{{can_submit?'button' :'button button-grey' }}" bindtap='submit'>提交 </view>
</view>