人人商城

comment.html 1.1KB

1234567891011121314151617181920212223
  1. {template 'common/header'}
  2. <style>
  3. .message-editor {padding: 10px;}
  4. .message-editor .title {color: #4c4c4c;font-size: 20px;line-height: 1.3;font-weight: 500;}
  5. .message-editor .content {margin: 20px 0;}
  6. .message-editor .content textarea {resize: none;border-color: #e7e7eb;border-radius: 0;border-bottom: 0;padding: 8px;}
  7. .message-editor .content .emoij {border: 1px solid #e7e7eb;border-top: 0;margin-top: -6px;padding: 8px;}
  8. .message-editor .content .emoij img{width: 30px;height: 30px;}
  9. </style>
  10. <div class="message-editor">
  11. <form action="{php echo murl('site/site/comment')}" method="post">
  12. <div class="title">{php echo $article_info['title']}</div>
  13. <input type="hidden" name = "article_id" value="{php echo $article_id}">
  14. <div class="content">
  15. <textarea name="content" id="" cols="20" rows="3" placeholder="我也说两句"></textarea>
  16. <!--<div class="emoij">-->
  17. <!--<a href=""><img src="{$_W['siteroot']}app/resource/images/message-emoij.png" alt=""></a>-->
  18. <!--</div>-->
  19. </div>
  20. <button class="mui-btn mui-btn-success mui-btn-block js-check-mobile" uniacid="{$_W['uniacid']}">提交</button>
  21. </form>
  22. </div>
  23. {template 'common/footer'}