index.wxml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <van-popup show="{{ show }}" position="bottom" round custom-style="height: 100%;" bind:close="onClose">
  2. <view class="editor_toolbox">
  3. <block wx:if="{{editable}}">
  4. <image class="image" mode="heightFix" src="../../static/image/richfile/icon-save.png" bindtap="save" />
  5. <image class="image" mode="heightFix" src="../../static/image/richfile/icon-undo.png" data-method="undo" bindtap="edit" />
  6. <image class="image" mode="heightFix" src="../../static/image/richfile/icon-redo.png" data-method="redo" bindtap="edit" />
  7. <My_upload accept='image' binduploadCallback="insertImgEdit">
  8. <image class="image up" mode="heightFix" src="../../static/image/richfile/icon-img.png" />
  9. </My_upload>
  10. <My_upload accept='video' binduploadCallback="insertVideoEdit">
  11. <image class="image up" mode="heightFix" src="../../static/image/richfile/icon-video.png" />
  12. </My_upload>
  13. <image class="image" mode="heightFix" src="../../static/image/richfile/icon-text.png" data-method="insertText" bindtap="edit" />
  14. <image class="image" mode="heightFix" src="../../static/image/richfile/icon-clear.png" bindtap="clear" />
  15. <image class="image" mode="heightFix" src="../../static/image/richfile/close.png" bindtap="closeShow" />
  16. </block>
  17. <view class="back" wx:else bindtap="closeShow">
  18. <van-icon name="arrow-left" /> 返回
  19. </view>
  20. </view>
  21. <view style="padding-top: 50px;">
  22. <mp-html id="article" container-style="padding:20px" content="{{content}}" editable="{{editable}}" bindremove="remove" />
  23. </view>
  24. <block wx:if="{{modal}}">
  25. <view class="mask" />
  26. <view class="modal">
  27. <view class="modal_title">{{modal.title}}</view>
  28. <input class="modal_input" value="{{modal.value}}" maxlength="-1" auto-focus bindinput="modalInput" />
  29. <view class="modal_foot">
  30. <view class="modal_button" bindtap="modalCancel">取消</view>
  31. <view class="modal_button" style="color:#576b95;border-left:1px solid rgba(0,0,0,.1)" bindtap="modalConfirm">确定</view>
  32. </view>
  33. </view>
  34. </block>
  35. </van-popup>