forked from lsl/xzjl-ui
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.
40 lines
1.1 KiB
40 lines
1.1 KiB
<!--pages/home/xx/hy/xz/zt.wxml-->
|
|
<!--返回图标-->
|
|
<view class="reback" bindtap="go2Reback"></view>
|
|
<view class="title">画像</view>
|
|
|
|
<view class="body">
|
|
<view class="block" wx:for="{{list}}" wx:key="index">
|
|
<view class="block-text">
|
|
{{ item.createdAt }}
|
|
</view>
|
|
<view class="block-item">
|
|
<view class="item" wx:for="{{item.list}}" wx:key="index">
|
|
<image src="{{item}}" bindtap="blockClick" data-url="{{item}}"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 图片预览 -->
|
|
<!-- <view class="viewer" wx:if="{{visible}}" bindtap="closeViewer">
|
|
<image src="{{image}}" scaleToFill/>
|
|
<view class="viewer-btn">
|
|
<view class="btn" bindtap="delBtn">删除</view>
|
|
<view class="btn">保存</view>
|
|
</view>
|
|
</view> -->
|
|
<t-image-viewer
|
|
visible="{{visible}}"
|
|
images="{{image}}"
|
|
bind:close="onClose"
|
|
/>
|
|
|
|
<!--星讯聊天下方菜单栏-->
|
|
<view class="xfgjl" >
|
|
<view class="xxqlcd" bindtap="go2Xz">信札</view>
|
|
<view class="xxqlcd" bindtap="go2Yx">音讯</view>
|
|
<view class="xxqlcd" bindtap="go2Hx">画像</view>
|
|
<view class="xxqlcd" bindtap="go2Zt">纸条</view>
|
|
</view>
|