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.
xzjl-ui/pages/home/xx/hy/hx/hx.wxml

43 lines
1.3 KiB

<!--pages/home/xx/hy/xz/zt.wxml-->
<!--返回图标-->
<view class="header">
<view class="reback" bindtap="go2Reback"></view>
<view class="title">画像</view>
</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" bindlongpress="delBtn" data-item="{{item}}">
<view class="item-del" wx:if="{{delKey === item}}" bindtap="delBtnHx">删除</view>
<image src="{{item}}" bindtap="blockClick" data-url="{{item}}"/>
</view>
</view>
</view>
</view>
<!-- 图片预览 -->
<view class="viewer" wx:if="{{visible}}" bindtap="closeViewer">
<image src="{{image}}" mode="widthFix"/>
<view class="viewer-btn">
<view class="btn" bindtap="delBtnHx">删除</view>
<view class="btn" catchtap="downloadBtn">保存</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>