file.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container page" data-weui-theme="{{theme}}">
  4. <template is="head" data="{{title: 'saveFile'}}"/>
  5. <view class="page-body">
  6. <view class="page-section">
  7. <view class="page-body-info">
  8. <block wx:if="{{tempFilePath != ''}}">
  9. <image src="{{tempFilePath}}" class="image" mode="aspectFit"></image>
  10. </block>
  11. <block wx:if="{{tempFilePath === '' && savedFilePath != ''}}">
  12. <image src="{{savedFilePath}}" class="image" mode="aspectFit"></image>
  13. </block>
  14. <block wx:if="{{tempFilePath === '' && savedFilePath === ''}}">
  15. <view class="image-plus image-plus-nb" bindtap="chooseImage">
  16. <view class="image-plus-horizontal"></view>
  17. <view class="image-plus-vertical"></view>
  18. </view>
  19. <view class="image-plus-text">请选择文件</view>
  20. </block>
  21. </view>
  22. <view class="btn-area">
  23. <button type="primary" bindtap="saveFile">保存文件</button>
  24. <button bindtap="clear">删除文件</button>
  25. </view>
  26. </view>
  27. </view>
  28. <template is="foot" />
  29. </view>