| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!--pages/buyer/talkToBuyer/talkToBuyer.wxml-->
- <import src="/pages/stars/stars.wxml" />
- <import src="../postItem/postItem.wxml" />
- <view class='viewBox'>
- <view class='buyerBox'>
- <view class='top-imageBox'>
- <view class='top-image'>
- <image mode="aspectFill" src="{{HeadIcon}}" />
- </view>
- </view>
- <view class='top-buyerinfobox'>
-
- <text>{{nick}}</text>
- <view class='starsBox'>
- <template is="starsTemplate" data="{{stars:stars, score: score}}" />
- </view>
-
- <!-- <view>
- <image class='foucsbutton' src='../../../images/foucs.png'></image>
- </view> -->
- </view>
- </view>
- <view class='talkBox'>
- <scroll-view class="post-list" scroll-y>
- <block wx:for="{{postList}}" wx:for-item="post" wx:key="id">
- <template is="postItemTemplate" data="{{...post}}" />
- </block>
- </scroll-view>
- </view>
- <view class="reportBox">
- <view class='inputBox'>
- <input class='input' placeholder='说点什么吗' type='text'></input>
- </view>
- <view class='reportButton'>
- <image class='reportIcon' bindtap='reportMyLocation' src="../../../images/launch.png" mode="widthFix" />
- </view>
- </view>
- <modal hidden="{{hiddenmodalput}}" title="回复" confirm-text="确定" cancel-text="取消" bindcancel="replyCancelHandle" bindconfirm="replyConfirmHandle">
- <input type='text' placeholder="输入内容" auto-focus bindinput="bindReplyInputHandle" value='{{replyTex}}'/>
- </modal>
- </view>
|